mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
75dec0d79c
* sync all third party proto definitions * update cosmos swagger for new imported third party protos
17 lines
459 B
Protocol Buffer
17 lines
459 B
Protocol Buffer
syntax = "proto3";
|
|
package cosmos.genutil.v1beta1;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
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.
|
|
repeated bytes gen_txs = 1 [
|
|
(gogoproto.casttype) = "encoding/json.RawMessage",
|
|
(gogoproto.jsontag) = "gentxs",
|
|
(gogoproto.moretags) = "yaml:\"gentxs\""
|
|
];
|
|
}
|