GenesisState defines the ibc connection submodule's genesis state.

interface GenesisState {
    clientConnectionPaths: ConnectionPaths[];
    connections: IdentifiedConnection[];
    nextConnectionSequence: bigint;
    params: undefined | Params;
}

Properties

clientConnectionPaths: ConnectionPaths[]
connections: IdentifiedConnection[]
nextConnectionSequence: bigint

the sequence for the next generated connection identifier

params: undefined | Params