mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
5110fea008
* Update third party protos for tendermint, cosmos updates * fix proto gen scripts for go 1.18 * update ibc go swagger for v3.3.0 * update generated files * update swagger * update grpc and protobuf deps
14 lines
375 B
Protocol Buffer
14 lines
375 B
Protocol Buffer
// Since: cosmos-sdk 0.43
|
|
syntax = "proto3";
|
|
package cosmos.authz.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "cosmos/authz/v1beta1/authz.proto";
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/authz";
|
|
|
|
// GenesisState defines the authz module's genesis state.
|
|
message GenesisState {
|
|
repeated GrantAuthorization authorization = 1 [(gogoproto.nullable) = false];
|
|
}
|