Interface Chain

Chain represents the base chain's chainID.

Remarks

chainId corresponds to a numerical Ethereum ChainID (e.g. 9001) cosmosChainId corresponds to a Cosmos SDK string ChainID (e.g. 'bitbadges_1-1')

interface Chain {
    chain: SupportedChain;
    chainId: number;
    cosmosChainId: string;
}

Properties

chainId: number
cosmosChainId: string