mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
d71f406ceb
* add ibc-go third party protos * add missing proofs proto definition
20 lines
618 B
Protocol Buffer
20 lines
618 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ibc.applications.transfer.v1;
|
|
|
|
option go_package = "github.com/cosmos/ibc-go/modules/apps/transfer/types";
|
|
|
|
import "ibc/applications/transfer/v1/transfer.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
// GenesisState defines the ibc-transfer genesis state
|
|
message GenesisState {
|
|
string port_id = 1 [(gogoproto.moretags) = "yaml:\"port_id\""];
|
|
repeated DenomTrace denom_traces = 2 [
|
|
(gogoproto.castrepeated) = "Traces",
|
|
(gogoproto.nullable) = false,
|
|
(gogoproto.moretags) = "yaml:\"denom_traces\""
|
|
];
|
|
Params params = 3 [(gogoproto.nullable) = false];
|
|
}
|