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

     1  syntax = "proto3";
     2  package cosmos.genutil.v1beta1;
     3  
     4  import "gogoproto/gogo.proto";
     5  
     6  option go_package = "github.com/Finschia/finschia-sdk/x/genutil/types";
     7  
     8  // GenesisState defines the raw genesis transaction in JSON.
     9  message GenesisState {
    10    // gen_txs defines the genesis transactions.
    11    repeated bytes gen_txs = 1 [
    12      (gogoproto.casttype) = "encoding/json.RawMessage",
    13      (gogoproto.jsontag)  = "gentxs",
    14      (gogoproto.moretags) = "yaml:\"gentxs\""
    15    ];
    16  }