ea18cae9aa
* update swagger * update * clean
13 lines
362 B
Protocol Buffer
13 lines
362 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmos.feegrant.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "cosmos/feegrant/v1beta1/feegrant.proto";
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/feegrant";
|
|
|
|
// GenesisState contains a set of fee allowances, persisted from the store
|
|
message GenesisState {
|
|
repeated Grant allowances = 1 [(gogoproto.nullable) = false];
|
|
}
|