Jürgen Eckel 04e45a7fb2
275 refactor feedenom on e2e test suite (#312)
* 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>
2024-02-14 12:15:40 +01:00

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