planetmint-go/proto/planetmintgo/dao/distribution_order.proto
Jürgen Eckel a982abecf5
Distribute assets (#162)
* 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>
2023-11-15 13:31:20 +01:00

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;
}