2021-04-18 15:54:18 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.feegrant.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
import "cosmos/feegrant/v1beta1/feegrant.proto";
|
|
|
|
|
2021-08-23 13:15:55 +00:00
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/feegrant";
|
2021-04-18 15:54:18 +00:00
|
|
|
|
|
|
|
// GenesisState contains a set of fee allowances, persisted from the store
|
|
|
|
message GenesisState {
|
2021-08-23 13:15:55 +00:00
|
|
|
repeated Grant allowances = 1 [(gogoproto.nullable) = false];
|
2021-04-18 15:54:18 +00:00
|
|
|
}
|