mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-24 23:12:30 +00:00

* extended AttestMachine FundAccount to support a given fee denominator * renamed testutil/network/network.go to testutil/network/loader.go * renamed new to Load * integrated cosmos/testutil/network to planetmint-go/testutil/network * changed to plmnt token tests only! * removed obsolete variables * fixed newest linter issues --------- Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
29 lines
802 B
Protocol Buffer
29 lines
802 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.dao;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/planetmint/planetmint-go/x/dao/types";
|
|
|
|
// Params defines the parameters for the module.
|
|
message Params {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
string mint_address = 1;
|
|
string token_denom = 2;
|
|
string staged_denom = 3;
|
|
string claim_denom = 4;
|
|
string reissuance_asset = 5;
|
|
int64 reissuance_epochs = 6;
|
|
int64 pop_epochs = 7;
|
|
int64 distribution_offset = 8;
|
|
string distribution_address_early_inv = 9;
|
|
string distribution_address_investor = 10;
|
|
string distribution_address_strategic = 11;
|
|
string distribution_address_dao = 12;
|
|
string distribution_address_pop = 13;
|
|
int64 mqtt_response_timeout = 14;
|
|
string claim_address = 15;
|
|
uint64 tx_gas_limit = 16;
|
|
}
|