github.com/Finschia/finschia-sdk@v0.49.1/proto/cosmos/auth/v1beta1/genesis.proto (about)

     1  syntax = "proto3";
     2  package cosmos.auth.v1beta1;
     3  
     4  import "google/protobuf/any.proto";
     5  import "gogoproto/gogo.proto";
     6  import "cosmos/auth/v1beta1/auth.proto";
     7  
     8  option go_package = "github.com/Finschia/finschia-sdk/x/auth/types";
     9  
    10  // GenesisState defines the auth module's genesis state.
    11  message GenesisState {
    12    // params defines all the paramaters of the module.
    13    Params params = 1 [(gogoproto.nullable) = false];
    14  
    15    // accounts are the accounts present at genesis.
    16    repeated google.protobuf.Any accounts = 2;
    17  }