mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-09-13 11:50:11 +00:00

* distributed & result msgs * added DistributionResult * added RDDL token conversion methods * set proper validatoraddress within the testcases for e2e/dao * set proper root dir for test cases * fixed some wordings --------- Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
22 lines
448 B
Protocol Buffer
22 lines
448 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.dao;
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
|
|
|
|
message DistributionOrder {
|
|
|
|
|
|
string daoAddr = 1;
|
|
string daoAmount = 2;
|
|
string daoTxID = 3;
|
|
string investorAddr = 4;
|
|
string investorAmount = 5;
|
|
string investorTxID = 6;
|
|
string popAddr = 7;
|
|
string popAmount = 8;
|
|
string popTxID = 9;
|
|
int64 firstPop = 10;
|
|
int64 lastPop = 11;
|
|
string proposer = 12;
|
|
}
|