18 lines
511 B
Protocol Buffer
18 lines
511 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package cosmos.auth.v1beta1;
|
||
|
|
||
|
import "google/protobuf/any.proto";
|
||
|
import "gogoproto/gogo.proto";
|
||
|
import "cosmos/auth/v1beta1/auth.proto";
|
||
|
|
||
|
option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types";
|
||
|
|
||
|
// GenesisState defines the auth module's genesis state.
|
||
|
message GenesisState {
|
||
|
// params defines all the paramaters of the module.
|
||
|
Params params = 1 [ (gogoproto.nullable) = false ];
|
||
|
|
||
|
// accounts are the accounts present at genesis.
|
||
|
repeated google.protobuf.Any accounts = 2;
|
||
|
}
|