2022-01-08 01:59:34 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package cosmos.genutil.v1beta1;
|
|
|
|
|
|
|
|
import "gogoproto/gogo.proto";
|
2024-02-06 22:54:10 +00:00
|
|
|
import "amino/amino.proto";
|
2022-01-08 01:59:34 +00:00
|
|
|
|
|
|
|
option go_package = "github.com/cosmos/cosmos-sdk/x/genutil/types";
|
|
|
|
|
|
|
|
// GenesisState defines the raw genesis transaction in JSON.
|
|
|
|
message GenesisState {
|
|
|
|
// gen_txs defines the genesis transactions.
|
2024-02-06 22:54:10 +00:00
|
|
|
repeated bytes gen_txs = 1 [
|
|
|
|
(gogoproto.casttype) = "encoding/json.RawMessage",
|
|
|
|
(gogoproto.jsontag) = "gentxs",
|
|
|
|
(amino.field_name) = "gentxs",
|
|
|
|
(amino.dont_omitempty) = true
|
|
|
|
];
|
2022-01-08 01:59:34 +00:00
|
|
|
}
|