2020-07-28 02:20:17 -07:00
|
|
|
syntax = "proto3";
|
2020-08-11 04:49:45 -07:00
|
|
|
package cosmos.mint.v1beta1;
|
2020-07-28 02:20:17 -07:00
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2020-08-11 04:49:45 -07:00
|
|
|
import "cosmos/mint/v1beta1/mint.proto";
|
2020-07-28 02:20:17 -07:00
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/mint/types";
|
|
|
|
|
2020-08-12 08:48:22 -07:00
|
|
|
// GenesisState defines the mint module's genesis state.
|
2020-07-28 02:20:17 -07:00
|
|
|
message GenesisState {
|
2020-08-12 08:48:22 -07:00
|
|
|
// minter is a space for holding current inflation information.
|
2020-09-08 15:06:54 -07:00
|
|
|
Minter minter = 1 [(gogoproto.nullable) = false];
|
2020-07-28 02:20:17 -07:00
|
|
|
|
2020-08-12 08:48:22 -07:00
|
|
|
// params defines all the paramaters of the module.
|
2020-09-08 15:06:54 -07:00
|
|
|
Params params = 2 [(gogoproto.nullable) = false];
|
2020-07-28 02:20:17 -07:00
|
|
|
}
|