github.com/okex/exchain@v1.8.0/libs/ibc-go/proto/ibc/core/connection/v1/genesis.proto (about) 1 syntax = "proto3"; 2 3 package ibc.core.connection.v1; 4 5 option go_package = "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types"; 6 7 import "gogoproto/gogo.proto"; 8 import "ibc/core/connection/v1/connection.proto"; 9 10 // GenesisState defines the ibc connection submodule's genesis state. 11 message GenesisState { 12 repeated IdentifiedConnection connections = 1 [(gogoproto.nullable) = false]; 13 repeated ConnectionPaths client_connection_paths = 2 14 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"client_connection_paths\""]; 15 // the sequence for the next generated connection identifier 16 uint64 next_connection_sequence = 3 [(gogoproto.moretags) = "yaml:\"next_connection_sequence\""]; 17 Params params = 4 [(gogoproto.nullable) = false]; 18 }