2021-04-17 10:00:07 +00:00
|
|
|
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.
|
2021-04-18 15:54:18 +00:00
|
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
2021-04-17 10:00:07 +00:00
|
|
|
|
|
|
|
// accounts are the accounts present at genesis.
|
|
|
|
repeated google.protobuf.Any accounts = 2;
|
|
|
|
}
|