planetmint-go/proto/planetmintgo/dao/distribution_order.proto
Jürgen Eckel bfbe9584a1
296 change distribution (#306)
* updated planetmint-go dependency in lib/tx
* added two additional distribution addresses. splitted up the previous investor pool of 31% into three pools:
* early investors 19%
* investors 10%
* strategic 2%

* adjusted distribution request message
* adjusted distribution result
* adjusted distribution order
* refactored reissuance and distribution msg methods to be more readable

* fixed token distribution test case

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
2024-01-29 14:33:40 +01:00

26 lines
623 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;
string earlyInvAddr = 13;
string earlyInvAmount = 14;
string earlyInvTxID = 15;
string strategicAddr = 16;
string strategicAmount = 17;
string strategicTxID = 18;
}