diff --git a/packages/orchestration/scripts/fetch-chain-info.ts b/packages/orchestration/scripts/fetch-chain-info.ts index 75ee144555e..63649af9897 100755 --- a/packages/orchestration/scripts/fetch-chain-info.ts +++ b/packages/orchestration/scripts/fetch-chain-info.ts @@ -12,7 +12,7 @@ const outputFile = 'src/fetched-chain-info.js'; /** * Names for which to fetch info */ -const chainNames = [ +const icaChainNames = [ 'agoric', 'celestia', 'cosmoshub', @@ -28,14 +28,45 @@ const chainNames = [ 'umee', ]; +const nonIcaChainNames = [ + 'migaloo', + 'terra', + 'planq', + 'coreum', + 'haqq', + 'evmos', + 'pryzm', + 'nibiru', + 'carbon', + 'sei', + 'archway', + 'doravota', + 'persistence', + 'injective', + 'sifchain', + 'quicksilver', + 'provenance', + 'crescent', + 'nolus', + 'empowerchain', + 'kava', + 'kujira', + 'shido', + 'dymension', + 'lava', + 'titan', + 'beezee', +]; + const client = new ChainRegistryClient({ - chainNames, + chainNames: [...icaChainNames, ...nonIcaChainNames], }); // chain info, assets and ibc data will be downloaded dynamically by invoking fetchUrls method await client.fetchUrls(); -const chainInfo = await convertChainInfo(client); +const icaChainSet = new Set(icaChainNames); +const chainInfo = await convertChainInfo(client, name => icaChainSet.has(name)); const record = JSON.stringify(chainInfo, null, 2); const src = `/** @file Generated by fetch-chain-info.ts */\nexport default /** @type {const} } */ (${record});`; diff --git a/packages/orchestration/src/cosmos-api.ts b/packages/orchestration/src/cosmos-api.ts index 8fa9ef07e1f..479c5dfbd5d 100644 --- a/packages/orchestration/src/cosmos-api.ts +++ b/packages/orchestration/src/cosmos-api.ts @@ -109,6 +109,7 @@ export type CosmosChainInfo = Readonly<{ * cf https://github.com/cosmos/chain-registry/blob/master/chain.schema.json#L117 */ stakingTokens?: Readonly>; + icaEnabled?: boolean; }>; // #region Orchestration views on Cosmos response types diff --git a/packages/orchestration/src/exos/chain-hub.js b/packages/orchestration/src/exos/chain-hub.js index 557d25e0585..a671d8e3d3b 100644 --- a/packages/orchestration/src/exos/chain-hub.js +++ b/packages/orchestration/src/exos/chain-hub.js @@ -70,15 +70,24 @@ export const CONNECTIONS_KEY = HubName.ChainConnection; export const ASSETS_KEY = HubName.ChainAssets; /** - * Character used in a connection tuple key to separate the two chain ids. Valid - * because a chainId can contain only alphanumerics and dash. - * - * Vstorage keys can be only alphanumerics, dash or underscore. That leaves - * underscore as the only valid separator. + * Character used in a connection tuple key to separate the two chain ids. + */ +const CHAIN_ID_SEPARATOR = '_'; + +/** + * Vstorage keys can be only alphanumerics, dash, or underscore, which are all + * valid characters in chain IDs. So, double each occurence of + * {@link CHAIN_ID_SEPARATOR} in the chain ID to make it clear that it's part of + * the chain ID rather than a separator. * + * @param {string} chainId * @see {@link https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-2.md} */ -const CHAIN_ID_SEPARATOR = '_'; +export const sanitizeChainId = chainId => + chainId.replaceAll( + CHAIN_ID_SEPARATOR, + `${CHAIN_ID_SEPARATOR}${CHAIN_ID_SEPARATOR}`, + ); /** * The entries of the top-level namehubs in agoricNames are reflected to @@ -89,13 +98,10 @@ const CHAIN_ID_SEPARATOR = '_'; * @param {string} chainId2 */ export const connectionKey = (chainId1, chainId2) => { - if ( - chainId1.includes(CHAIN_ID_SEPARATOR) || - chainId2.includes(CHAIN_ID_SEPARATOR) - ) { - Fail`invalid chain id ${chainId1} or ${chainId2}`; - } - return [chainId1, chainId2].sort().join(CHAIN_ID_SEPARATOR); + const chainId1Sanitized = sanitizeChainId(chainId1); + const chainId2Sanitized = sanitizeChainId(chainId2); + + return [chainId1Sanitized, chainId2Sanitized].sort().join(CHAIN_ID_SEPARATOR); }; /** diff --git a/packages/orchestration/src/fetched-chain-info.js b/packages/orchestration/src/fetched-chain-info.js index 651633fd1ad..934647692ad 100644 --- a/packages/orchestration/src/fetched-chain-info.js +++ b/packages/orchestration/src/fetched-chain-info.js @@ -9,7 +9,26 @@ export default /** @type {const} } */ ({ }, ], icqEnabled: false, + icaEnabled: true, connections: { + 'core-1': { + id: 'connection-91', + client_id: '07-tendermint-93', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-210', + }, + state: 3, + transferChannel: { + channelId: 'channel-72', + portId: 'transfer', + counterPartyChannelId: 'channel-202', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'cosmoshub-4': { id: 'connection-8', client_id: '07-tendermint-6', @@ -28,6 +47,96 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, + 'crescent-1': { + id: 'connection-2', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-66', + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-70', + }, + state: 3, + transferChannel: { + channelId: 'channel-57', + portId: 'transfer', + counterPartyChannelId: 'channel-85', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-20', + client_id: '07-tendermint-20', + counterparty: { + client_id: '07-tendermint-94', + connection_id: 'connection-64', + }, + state: 3, + transferChannel: { + channelId: 'channel-13', + portId: 'transfer', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-73', + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-147', + connection_id: 'connection-182', + }, + state: 3, + transferChannel: { + channelId: 'channel-63', + portId: 'transfer', + counterPartyChannelId: 'channel-133', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-99', + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-108', + }, + state: 3, + transferChannel: { + channelId: 'channel-146', + portId: 'transfer', + counterPartyChannelId: 'channel-5789', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'noble-1': { id: 'connection-72', client_id: '07-tendermint-77', @@ -138,100 +247,101 @@ export default /** @type {const} } */ ({ }, }, }, - celestia: { - bech32Prefix: 'celestia', - chainId: 'celestia', + archway: { + bech32Prefix: 'archway', + chainId: 'archway-1', stakingTokens: [ { - denom: 'utia', + denom: 'aarch', }, ], icqEnabled: false, + icaEnabled: false, connections: { - 'neutron-1': { - id: 'connection-7', - client_id: '07-tendermint-29', + 'dymension_1100-1': { + id: 'connection-89', + client_id: '07-tendermint-91', counterparty: { - client_id: '07-tendermint-48', - connection_id: 'connection-36', + client_id: '07-tendermint-39', + connection_id: 'connection-30', }, state: 3, transferChannel: { - channelId: 'channel-8', + channelId: 'channel-123', portId: 'transfer', - counterPartyChannelId: 'channel-35', + counterPartyChannelId: 'channel-45', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-2', - client_id: '07-tendermint-10', + 'migaloo-1': { + id: 'connection-114', + client_id: '07-tendermint-119', counterparty: { - client_id: '07-tendermint-3012', - connection_id: 'connection-2503', + client_id: '07-tendermint-138', + connection_id: 'connection-108', }, state: 3, transferChannel: { - channelId: 'channel-2', + channelId: 'channel-184', portId: 'transfer', - counterPartyChannelId: 'channel-6994', + counterPartyChannelId: 'channel-141', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-15', - client_id: '07-tendermint-52', + 'neutron-1': { + id: 'connection-58', + client_id: '07-tendermint-51', counterparty: { - client_id: '07-tendermint-174', - connection_id: 'connection-131', + client_id: '07-tendermint-62', + connection_id: 'connection-43', }, state: 3, transferChannel: { - channelId: 'channel-14', + channelId: 'channel-61', portId: 'transfer', - counterPartyChannelId: 'channel-91', + counterPartyChannelId: 'channel-41', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stargaze-1': { - id: 'connection-56', - client_id: '07-tendermint-86', + 'planq_7070-2': { + id: 'connection-83', + client_id: '07-tendermint-82', counterparty: { - client_id: '07-tendermint-359', - connection_id: 'connection-296', + client_id: '07-tendermint-561', + connection_id: 'connection-486', }, state: 3, transferChannel: { - channelId: 'channel-33', + channelId: 'channel-112', portId: 'transfer', - counterPartyChannelId: 'channel-291', + counterPartyChannelId: 'channel-62', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stride-1': { - id: 'connection-4', - client_id: '07-tendermint-0', + 'vota-ash': { + id: 'connection-106', + client_id: '07-tendermint-113', counterparty: { - client_id: '07-tendermint-137', - connection_id: 'connection-125', + client_id: '07-tendermint-22', + connection_id: 'connection-28', }, state: 3, transferChannel: { - channelId: 'channel-4', + channelId: 'channel-146', portId: 'transfer', - counterPartyChannelId: 'channel-162', + counterPartyChannelId: 'channel-13', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -240,136 +350,150 @@ export default /** @type {const} } */ ({ }, }, }, - cosmoshub: { - bech32Prefix: 'cosmos', - chainId: 'cosmoshub-4', + beezee: { + bech32Prefix: 'bze', + chainId: 'beezee-1', stakingTokens: [ { - denom: 'uatom', + denom: 'ubze', }, ], icqEnabled: false, + icaEnabled: false, connections: { - 'agoric-3': { - id: 'connection-649', - client_id: '07-tendermint-927', + 'noble-1': { + id: 'connection-3', + client_id: '07-tendermint-9', counterparty: { - client_id: '07-tendermint-6', - connection_id: 'connection-8', + client_id: '07-tendermint-112', + connection_id: 'connection-107', }, state: 3, transferChannel: { - channelId: 'channel-405', + channelId: 'channel-3', portId: 'transfer', - counterPartyChannelId: 'channel-5', + counterPartyChannelId: 'channel-95', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'juno-1': { - id: 'connection-372', - client_id: '07-tendermint-439', + 'omniflixhub-1': { + id: 'connection-5', + client_id: '07-tendermint-11', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-2', + client_id: '07-tendermint-75', + connection_id: 'connection-55', }, state: 3, transferChannel: { - channelId: 'channel-207', + channelId: 'channel-5', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-50', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'neutron-1': { - id: 'connection-809', - client_id: '07-tendermint-1119', + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-2', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-2154', + connection_id: 'connection-1672', }, state: 3, transferChannel: { - channelId: 'channel-569', + channelId: 'channel-0', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-340', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-790', - client_id: '07-tendermint-1116', + }, + }, + carbon: { + bech32Prefix: 'swth', + chainId: 'carbon-1', + stakingTokens: [ + { + denom: 'swth', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'cosmoshub-4': { + id: 'connection-5', + client_id: '07-tendermint-6', counterparty: { - client_id: '07-tendermint-4', - connection_id: 'connection-12', + client_id: '07-tendermint-765', + connection_id: 'connection-554', }, state: 3, transferChannel: { - channelId: 'channel-536', + channelId: 'channel-3', portId: 'transfer', - counterPartyChannelId: 'channel-4', + counterPartyChannelId: 'channel-342', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'omniflixhub-1': { - id: 'connection-501', - client_id: '07-tendermint-656', + 'evmos_9001-2': { + id: 'connection-10', + client_id: '07-tendermint-11', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-19', + client_id: '07-tendermint-73', + connection_id: 'connection-29', }, state: 3, transferChannel: { - channelId: 'channel-306', + channelId: 'channel-6', portId: 'transfer', - counterPartyChannelId: 'channel-12', + counterPartyChannelId: 'channel-23', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-257', - client_id: '07-tendermint-259', + 'kaiyo-1': { + id: 'connection-13', + client_id: '07-tendermint-16', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-60', + connection_id: 'connection-40', }, state: 3, transferChannel: { - channelId: 'channel-141', + channelId: 'channel-9', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-46', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-401', - client_id: '07-tendermint-492', + 'osmosis-1': { + id: 'connection-1', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-0', + client_id: '07-tendermint-1808', + connection_id: 'connection-1412', }, state: 3, transferChannel: { - channelId: 'channel-235', + channelId: 'channel-0', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-188', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -377,17 +501,17 @@ export default /** @type {const} } */ ({ }, }, 'stargaze-1': { - id: 'connection-918', - client_id: '07-tendermint-1188', + id: 'connection-19', + client_id: '07-tendermint-36', counterparty: { - client_id: '07-tendermint-320', - connection_id: 'connection-256', + client_id: '07-tendermint-224', + connection_id: 'connection-158', }, state: 3, transferChannel: { - channelId: 'channel-730', + channelId: 'channel-15', portId: 'transfer', - counterPartyChannelId: 'channel-239', + counterPartyChannelId: 'channel-123', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -395,17 +519,17 @@ export default /** @type {const} } */ ({ }, }, 'stride-1': { - id: 'connection-635', - client_id: '07-tendermint-913', + id: 'connection-12', + client_id: '07-tendermint-13', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-40', + connection_id: 'connection-27', }, state: 3, transferChannel: { - channelId: 'channel-391', + channelId: 'channel-8', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-47', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -414,164 +538,135 @@ export default /** @type {const} } */ ({ }, }, }, - dydx: { - bech32Prefix: 'dydx', - chainId: 'dydx-mainnet-1', + celestia: { + bech32Prefix: 'celestia', + chainId: 'celestia', stakingTokens: [ { - denom: 'adydx', + denom: 'utia', }, ], icqEnabled: false, + icaEnabled: true, connections: { - 'neutron-1': { - id: 'connection-17', - client_id: '07-tendermint-11', + 'dymension_1100-1': { + id: 'connection-52', + client_id: '07-tendermint-82', counterparty: { - client_id: '07-tendermint-72', - connection_id: 'connection-51', + client_id: '07-tendermint-6', + connection_id: 'connection-5', }, state: 3, transferChannel: { - channelId: 'channel-11', + channelId: 'channel-27', portId: 'transfer', - counterPartyChannelId: 'channel-48', + counterPartyChannelId: 'channel-4', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-0', - client_id: '07-tendermint-0', + 'evmos_9001-2': { + id: 'connection-49', + client_id: '07-tendermint-79', counterparty: { - client_id: '07-tendermint-59', - connection_id: 'connection-57', + client_id: '07-tendermint-134', + connection_id: 'connection-80', }, state: 3, transferChannel: { - channelId: 'channel-0', + channelId: 'channel-26', portId: 'transfer', - counterPartyChannelId: 'channel-33', + counterPartyChannelId: 'channel-106', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-7', - client_id: '07-tendermint-3', + 'injective-1': { + id: 'connection-6', + client_id: '07-tendermint-28', counterparty: { - client_id: '07-tendermint-3009', - connection_id: 'connection-2500', + client_id: '07-tendermint-226', + connection_id: 'connection-210', }, state: 3, transferChannel: { - channelId: 'channel-3', + channelId: 'channel-7', portId: 'transfer', - counterPartyChannelId: 'channel-6787', + counterPartyChannelId: 'channel-152', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stride-1': { - id: 'connection-1', - client_id: '07-tendermint-1', + 'kava_2222-10': { + id: 'connection-12', + client_id: '07-tendermint-49', counterparty: { - client_id: '07-tendermint-133', - connection_id: 'connection-123', + client_id: '07-tendermint-158', + connection_id: 'connection-198', }, state: 3, transferChannel: { - channelId: 'channel-1', + channelId: 'channel-13', portId: 'transfer', - counterPartyChannelId: 'channel-160', + counterPartyChannelId: 'channel-140', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'umee-1': { - id: 'connection-13', - client_id: '07-tendermint-8', + 'neutron-1': { + id: 'connection-7', + client_id: '07-tendermint-29', counterparty: { - client_id: '07-tendermint-244', - connection_id: 'connection-208', + client_id: '07-tendermint-48', + connection_id: 'connection-36', }, state: 3, transferChannel: { channelId: 'channel-8', portId: 'transfer', - counterPartyChannelId: 'channel-118', + counterPartyChannelId: 'channel-35', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - }, - }, - juno: { - bech32Prefix: 'juno', - chainId: 'juno-1', - stakingTokens: [ - { - denom: 'ujuno', - }, - ], - icqEnabled: false, - connections: { - 'cosmoshub-4': { + 'osmosis-1': { id: 'connection-2', - client_id: '07-tendermint-3', - counterparty: { - client_id: '07-tendermint-439', - connection_id: 'connection-372', - }, - state: 3, - transferChannel: { - channelId: 'channel-1', - portId: 'transfer', - counterPartyChannelId: 'channel-207', - counterPartyPortId: 'transfer', - ordering: 0, - state: 3, - version: 'ics20-1', - }, - }, - 'neutron-1': { - id: 'connection-524', - client_id: '07-tendermint-557', + client_id: '07-tendermint-10', counterparty: { - client_id: '07-tendermint-97', - connection_id: 'connection-71', + client_id: '07-tendermint-3012', + connection_id: 'connection-2503', }, state: 3, transferChannel: { - channelId: 'channel-548', + channelId: 'channel-2', portId: 'transfer', - counterPartyChannelId: 'channel-4328', + counterPartyChannelId: 'channel-6994', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-322', - client_id: '07-tendermint-334', + 'pryzm-1': { + id: 'connection-57', + client_id: '07-tendermint-88', counterparty: { client_id: '07-tendermint-3', - connection_id: 'connection-8', + connection_id: 'connection-3', }, state: 3, transferChannel: { - channelId: 'channel-224', + channelId: 'channel-34', portId: 'transfer', counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', @@ -580,36 +675,18 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-0', - client_id: '07-tendermint-0', - counterparty: { - client_id: '07-tendermint-1457', - connection_id: 'connection-1142', - }, - state: 3, - transferChannel: { - channelId: 'channel-0', - portId: 'transfer', - counterPartyChannelId: 'channel-42', - counterPartyPortId: 'transfer', - ordering: 0, - state: 3, - version: 'ics20-1', - }, - }, 'secret-4': { - id: 'connection-68', - client_id: '07-tendermint-108', + id: 'connection-15', + client_id: '07-tendermint-52', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-9', + client_id: '07-tendermint-174', + connection_id: 'connection-131', }, state: 3, transferChannel: { - channelId: 'channel-48', + channelId: 'channel-14', portId: 'transfer', - counterPartyChannelId: 'channel-8', + counterPartyChannelId: 'channel-91', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -617,17 +694,17 @@ export default /** @type {const} } */ ({ }, }, 'stargaze-1': { - id: 'connection-30', - client_id: '07-tendermint-44', + id: 'connection-56', + client_id: '07-tendermint-86', counterparty: { - client_id: '07-tendermint-13', - connection_id: 'connection-11', + client_id: '07-tendermint-359', + connection_id: 'connection-296', }, state: 3, transferChannel: { - channelId: 'channel-20', + channelId: 'channel-33', portId: 'transfer', - counterPartyChannelId: 'channel-5', + counterPartyChannelId: 'channel-291', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -635,17 +712,17 @@ export default /** @type {const} } */ ({ }, }, 'stride-1': { - id: 'connection-205', - client_id: '07-tendermint-263', + id: 'connection-4', + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-31', - connection_id: 'connection-19', + client_id: '07-tendermint-137', + connection_id: 'connection-125', }, state: 3, transferChannel: { - channelId: 'channel-139', + channelId: 'channel-4', portId: 'transfer', - counterPartyChannelId: 'channel-24', + counterPartyChannelId: 'channel-162', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -654,172 +731,173 @@ export default /** @type {const} } */ ({ }, }, }, - neutron: { - bech32Prefix: 'neutron', - chainId: 'neutron-1', + coreum: { + bech32Prefix: 'core', + chainId: 'coreum-mainnet-1', stakingTokens: [ { - denom: 'untrn', + denom: 'ucore', }, ], icqEnabled: false, + icaEnabled: false, connections: { - celestia: { - id: 'connection-36', - client_id: '07-tendermint-48', + 'cosmoshub-4': { + id: 'connection-11', + client_id: '07-tendermint-11', counterparty: { - client_id: '07-tendermint-29', - connection_id: 'connection-7', + client_id: '07-tendermint-1162', + connection_id: 'connection-884', }, state: 3, transferChannel: { - channelId: 'channel-35', + channelId: 'channel-9', portId: 'transfer', - counterPartyChannelId: 'channel-8', + counterPartyChannelId: 'channel-660', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-0', - client_id: '07-tendermint-0', + 'dydx-mainnet-1': { + id: 'connection-26', + client_id: '07-tendermint-38', counterparty: { - client_id: '07-tendermint-1119', - connection_id: 'connection-809', + client_id: '07-tendermint-14', + connection_id: 'connection-20', }, state: 3, transferChannel: { - channelId: 'channel-1', + channelId: 'channel-24', portId: 'transfer', - counterPartyChannelId: 'channel-569', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'dydx-mainnet-1': { - id: 'connection-51', - client_id: '07-tendermint-72', + 'evmos_9001-2': { + id: 'connection-9', + client_id: '07-tendermint-9', counterparty: { - client_id: '07-tendermint-11', - connection_id: 'connection-17', + client_id: '07-tendermint-117', + connection_id: 'connection-71', }, state: 3, transferChannel: { - channelId: 'channel-48', + channelId: 'channel-8', portId: 'transfer', - counterPartyChannelId: 'channel-11', + counterPartyChannelId: 'channel-87', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'juno-1': { - id: 'connection-71', - client_id: '07-tendermint-97', + 'kaiyo-1': { + id: 'connection-19', + client_id: '07-tendermint-28', counterparty: { - client_id: '07-tendermint-557', - connection_id: 'connection-524', + client_id: '07-tendermint-163', + connection_id: 'connection-126', }, state: 3, transferChannel: { - channelId: 'channel-4328', + channelId: 'channel-17', portId: 'transfer', - counterPartyChannelId: 'channel-548', + counterPartyChannelId: 'channel-122', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-31', - client_id: '07-tendermint-40', + 'kava_2222-10': { + id: 'connection-20', + client_id: '07-tendermint-29', counterparty: { - client_id: '07-tendermint-25', - connection_id: 'connection-34', + client_id: '07-tendermint-160', + connection_id: 'connection-200', }, state: 3, transferChannel: { - channelId: 'channel-30', + channelId: 'channel-18', portId: 'transfer', - counterPartyChannelId: 'channel-18', + counterPartyChannelId: 'channel-142', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-18', - client_id: '07-tendermint-19', + 'noble-1': { + id: 'connection-21', + client_id: '07-tendermint-32', counterparty: { - client_id: '07-tendermint-2823', - connection_id: 'connection-2338', + client_id: '07-tendermint-71', + connection_id: 'connection-72', }, state: 3, transferChannel: { - channelId: 'channel-10', + channelId: 'channel-19', portId: 'transfer', - counterPartyChannelId: 'channel-874', + counterPartyChannelId: 'channel-49', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-63', - client_id: '07-tendermint-85', + 'osmosis-1': { + id: 'connection-3', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-199', - connection_id: 'connection-192', + client_id: '07-tendermint-2929', + connection_id: 'connection-2426', }, state: 3, transferChannel: { - channelId: 'channel-1551', + channelId: 'channel-2', portId: 'transfer', - counterPartyChannelId: 'channel-144', + counterPartyChannelId: 'channel-2188', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stargaze-1': { - id: 'connection-23', - client_id: '07-tendermint-31', + 'secret-4': { + id: 'connection-27', + client_id: '07-tendermint-40', counterparty: { - client_id: '07-tendermint-283', - connection_id: 'connection-211', + client_id: '07-tendermint-186', + connection_id: 'connection-138', }, state: 3, transferChannel: { - channelId: 'channel-18', + channelId: 'channel-25', portId: 'transfer', - counterPartyChannelId: 'channel-191', + counterPartyChannelId: 'channel-101', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stride-1': { - id: 'connection-15', - client_id: '07-tendermint-18', + 'vota-ash': { + id: 'connection-12', + client_id: '07-tendermint-12', counterparty: { - client_id: '07-tendermint-125', - connection_id: 'connection-113', + client_id: '07-tendermint-12', + connection_id: 'connection-4', }, state: 3, transferChannel: { - channelId: 'channel-8', + channelId: 'channel-10', portId: 'transfer', - counterPartyChannelId: 'channel-123', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -828,563 +906,564 @@ export default /** @type {const} } */ ({ }, }, }, - noble: { - bech32Prefix: 'noble', - chainId: 'noble-1', + cosmoshub: { + bech32Prefix: 'cosmos', + chainId: 'cosmoshub-4', + stakingTokens: [ + { + denom: 'uatom', + }, + ], icqEnabled: false, + icaEnabled: true, connections: { 'agoric-3': { - id: 'connection-40', - client_id: '07-tendermint-32', + id: 'connection-649', + client_id: '07-tendermint-927', counterparty: { - client_id: '07-tendermint-77', - connection_id: 'connection-72', + client_id: '07-tendermint-6', + connection_id: 'connection-8', }, state: 3, transferChannel: { - channelId: 'channel-21', + channelId: 'channel-405', portId: 'transfer', - counterPartyChannelId: 'channel-62', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-12', - client_id: '07-tendermint-4', + 'carbon-1': { + id: 'connection-554', + client_id: '07-tendermint-765', counterparty: { - client_id: '07-tendermint-1116', - connection_id: 'connection-790', + client_id: '07-tendermint-6', + connection_id: 'connection-5', }, state: 3, transferChannel: { - channelId: 'channel-4', + channelId: 'channel-342', portId: 'transfer', - counterPartyChannelId: 'channel-536', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'dydx-mainnet-1': { - id: 'connection-57', - client_id: '07-tendermint-59', + 'coreum-mainnet-1': { + id: 'connection-884', + client_id: '07-tendermint-1162', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-11', + connection_id: 'connection-11', }, state: 3, transferChannel: { - channelId: 'channel-33', + channelId: 'channel-660', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-9', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'juno-1': { - id: 'connection-8', - client_id: '07-tendermint-3', + 'crescent-1': { + id: 'connection-538', + client_id: '07-tendermint-724', counterparty: { - client_id: '07-tendermint-334', - connection_id: 'connection-322', + client_id: '07-tendermint-3', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-3', + channelId: 'channel-326', portId: 'transfer', - counterPartyChannelId: 'channel-224', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'neutron-1': { - id: 'connection-34', - client_id: '07-tendermint-25', + 'dymension_1100-1': { + id: 'connection-933', + client_id: '07-tendermint-1205', counterparty: { - client_id: '07-tendermint-40', - connection_id: 'connection-31', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-18', + channelId: 'channel-794', portId: 'transfer', - counterPartyChannelId: 'channel-30', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'omniflixhub-1': { - id: 'connection-65', - client_id: '07-tendermint-68', + 'empowerchain-1': { + id: 'connection-872', + client_id: '07-tendermint-1151', counterparty: { - client_id: '07-tendermint-51', - connection_id: 'connection-49', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-44', + channelId: 'channel-621', portId: 'transfer', - counterPartyChannelId: 'channel-38', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-2', - client_id: '07-tendermint-0', + 'evmos_9001-2': { + id: 'connection-480', + client_id: '07-tendermint-620', counterparty: { - client_id: '07-tendermint-2704', - connection_id: 'connection-2241', + client_id: '07-tendermint-3', + connection_id: 'connection-3', }, state: 3, transferChannel: { - channelId: 'channel-1', + channelId: 'channel-292', portId: 'transfer', - counterPartyChannelId: 'channel-750', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-33', - client_id: '07-tendermint-24', + 'haqq_11235-1': { + id: 'connection-874', + client_id: '07-tendermint-1153', counterparty: { - client_id: '07-tendermint-170', - connection_id: 'connection-127', + client_id: '07-tendermint-2', + connection_id: 'connection-3', }, state: 3, transferChannel: { - channelId: 'channel-17', + channelId: 'channel-632', portId: 'transfer', - counterPartyChannelId: 'channel-88', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stargaze-1': { - id: 'connection-25', - client_id: '07-tendermint-16', + 'injective-1': { + id: 'connection-388', + client_id: '07-tendermint-470', counterparty: { - client_id: '07-tendermint-287', - connection_id: 'connection-214', + client_id: '07-tendermint-5', + connection_id: 'connection-2', }, state: 3, transferChannel: { - channelId: 'channel-11', + channelId: 'channel-220', portId: 'transfer', - counterPartyChannelId: 'channel-204', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'umee-1': { - id: 'connection-74', - client_id: '07-tendermint-73', + 'juno-1': { + id: 'connection-372', + client_id: '07-tendermint-439', counterparty: { - client_id: '07-tendermint-248', - connection_id: 'connection-210', + client_id: '07-tendermint-3', + connection_id: 'connection-2', }, state: 3, transferChannel: { - channelId: 'channel-51', + channelId: 'channel-207', portId: 'transfer', - counterPartyChannelId: 'channel-120', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - }, - }, - omniflixhub: { - bech32Prefix: 'omniflix', - chainId: 'omniflixhub-1', - stakingTokens: [ - { - denom: 'uflix', - }, - ], - icqEnabled: false, - connections: { - 'agoric-3': { - id: 'connection-40', - client_id: '07-tendermint-47', + 'kaiyo-1': { + id: 'connection-555', + client_id: '07-tendermint-769', counterparty: { - client_id: '07-tendermint-73', - connection_id: 'connection-67', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-30', + channelId: 'channel-343', portId: 'transfer', - counterPartyChannelId: 'channel-58', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-19', - client_id: '07-tendermint-23', + 'kava_2222-10': { + id: 'connection-460', + client_id: '07-tendermint-557', counterparty: { - client_id: '07-tendermint-656', - connection_id: 'connection-501', + client_id: '07-tendermint-1', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-12', + channelId: 'channel-277', portId: 'transfer', - counterPartyChannelId: 'channel-306', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-49', - client_id: '07-tendermint-51', + 'lava-mainnet-1': { + id: 'connection-1050', + client_id: '07-tendermint-1318', counterparty: { - client_id: '07-tendermint-68', - connection_id: 'connection-65', + client_id: '07-tendermint-7', + connection_id: 'connection-12', }, state: 3, transferChannel: { - channelId: 'channel-38', + channelId: 'channel-969', portId: 'transfer', - counterPartyChannelId: 'channel-44', + counterPartyChannelId: 'channel-6', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'osmosis-1': { - id: 'connection-8', - client_id: '07-tendermint-8', + 'neutron-1': { + id: 'connection-809', + client_id: '07-tendermint-1119', counterparty: { - client_id: '07-tendermint-1829', - connection_id: 'connection-1431', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-1', + channelId: 'channel-569', portId: 'transfer', - counterPartyChannelId: 'channel-199', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - }, - }, - osmosis: { - bech32Prefix: 'osmo', - chainId: 'osmosis-1', - stakingTokens: [ - { - denom: 'uosmo', - }, - ], - icqEnabled: true, - connections: { - 'agoric-3': { - id: 'connection-1649', - client_id: '07-tendermint-2109', + 'noble-1': { + id: 'connection-790', + client_id: '07-tendermint-1116', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-4', + connection_id: 'connection-12', }, state: 3, transferChannel: { - channelId: 'channel-320', + channelId: 'channel-536', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-4', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - celestia: { - id: 'connection-2503', - client_id: '07-tendermint-3012', + 'omniflixhub-1': { + id: 'connection-501', + client_id: '07-tendermint-656', counterparty: { - client_id: '07-tendermint-10', - connection_id: 'connection-2', + client_id: '07-tendermint-23', + connection_id: 'connection-19', }, state: 3, transferChannel: { - channelId: 'channel-6994', + channelId: 'channel-306', portId: 'transfer', - counterPartyChannelId: 'channel-2', + counterPartyChannelId: 'channel-12', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-1', - client_id: '07-tendermint-1', + 'osmosis-1': { + id: 'connection-257', + client_id: '07-tendermint-259', counterparty: { - client_id: '07-tendermint-259', - connection_id: 'connection-257', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-0', + channelId: 'channel-141', portId: 'transfer', - counterPartyChannelId: 'channel-141', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'dydx-mainnet-1': { - id: 'connection-2500', - client_id: '07-tendermint-3009', + 'pacific-1': { + id: 'connection-827', + client_id: '07-tendermint-1140', counterparty: { client_id: '07-tendermint-3', - connection_id: 'connection-7', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-6787', + channelId: 'channel-584', portId: 'transfer', - counterPartyChannelId: 'channel-3', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'juno-1': { - id: 'connection-1142', - client_id: '07-tendermint-1457', + 'planq_7070-2': { + id: 'connection-693', + client_id: '07-tendermint-994', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-5', + connection_id: 'connection-3', }, state: 3, transferChannel: { - channelId: 'channel-42', + channelId: 'channel-446', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'neutron-1': { - id: 'connection-2338', - client_id: '07-tendermint-2823', + 'pryzm-1': { + id: 'connection-1038', + client_id: '07-tendermint-1304', counterparty: { - client_id: '07-tendermint-19', - connection_id: 'connection-18', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-874', + channelId: 'channel-859', portId: 'transfer', - counterPartyChannelId: 'channel-10', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'noble-1': { - id: 'connection-2241', - client_id: '07-tendermint-2704', + 'secret-4': { + id: 'connection-401', + client_id: '07-tendermint-492', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-2', + client_id: '07-tendermint-1', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-750', + channelId: 'channel-235', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'omniflixhub-1': { - id: 'connection-1431', - client_id: '07-tendermint-1829', + 'stargaze-1': { + id: 'connection-918', + client_id: '07-tendermint-1188', counterparty: { - client_id: '07-tendermint-8', - connection_id: 'connection-8', + client_id: '07-tendermint-320', + connection_id: 'connection-256', }, state: 3, transferChannel: { - channelId: 'channel-199', + channelId: 'channel-730', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-239', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-1244', - client_id: '07-tendermint-1588', + 'stride-1': { + id: 'connection-635', + client_id: '07-tendermint-913', counterparty: { - client_id: '07-tendermint-2', - connection_id: 'connection-1', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-88', + channelId: 'channel-391', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stargaze-1': { - id: 'connection-1223', - client_id: '07-tendermint-1562', + 'vota-ash': { + id: 'connection-920', + client_id: '07-tendermint-1191', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-14', + connection_id: 'connection-8', }, state: 3, transferChannel: { - channelId: 'channel-75', + channelId: 'channel-750', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-4', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stride-1': { - id: 'connection-1657', - client_id: '07-tendermint-2119', + }, + }, + crescent: { + bech32Prefix: 'cre', + chainId: 'crescent-1', + stakingTokens: [ + { + denom: 'ucre', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'agoric-3': { + id: 'connection-14', + client_id: '07-tendermint-19', counterparty: { - client_id: '07-tendermint-1', + client_id: '07-tendermint-2', connection_id: 'connection-2', }, state: 3, transferChannel: { - channelId: 'channel-326', + channelId: 'channel-11', portId: 'transfer', - counterPartyChannelId: 'channel-5', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'umee-1': { - id: 'connection-1410', - client_id: '07-tendermint-1805', + 'columbus-5': { + id: 'connection-0', + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-6', - connection_id: 'connection-0', + client_id: '07-tendermint-101', + connection_id: 'connection-70', }, state: 3, transferChannel: { - channelId: 'channel-184', + channelId: 'channel-0', portId: 'transfer', - counterPartyChannelId: 'channel-0', + counterPartyChannelId: 'channel-49', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - }, - }, - secretnetwork: { - bech32Prefix: 'secret', - chainId: 'secret-4', - stakingTokens: [ - { - denom: 'uscrt', + 'core-1': { + id: 'connection-41', + client_id: '07-tendermint-42', + counterparty: { + client_id: '07-tendermint-88', + connection_id: 'connection-72', + }, + state: 3, + transferChannel: { + channelId: 'channel-30', + portId: 'transfer', + counterPartyChannelId: 'channel-68', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, }, - ], - icqEnabled: false, - connections: { - 'agoric-3': { - id: 'connection-80', - client_id: '07-tendermint-111', + 'cosmoshub-4': { + id: 'connection-1', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-17', - connection_id: 'connection-17', + client_id: '07-tendermint-724', + connection_id: 'connection-538', }, state: 3, transferChannel: { - channelId: 'channel-51', + channelId: 'channel-1', portId: 'transfer', - counterPartyChannelId: 'channel-10', + counterPartyChannelId: 'channel-326', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - celestia: { - id: 'connection-131', - client_id: '07-tendermint-174', + 'evmos_9001-2': { + id: 'connection-10', + client_id: '07-tendermint-12', counterparty: { - client_id: '07-tendermint-52', + client_id: '07-tendermint-38', connection_id: 'connection-15', }, state: 3, transferChannel: { - channelId: 'channel-91', + channelId: 'channel-7', portId: 'transfer', - counterPartyChannelId: 'channel-14', + counterPartyChannelId: 'channel-11', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-0', - client_id: '07-tendermint-1', + 'injective-1': { + id: 'connection-29', + client_id: '07-tendermint-26', counterparty: { - client_id: '07-tendermint-492', - connection_id: 'connection-401', + client_id: '07-tendermint-132', + connection_id: 'connection-105', }, state: 3, transferChannel: { - channelId: 'channel-0', + channelId: 'channel-23', portId: 'transfer', - counterPartyChannelId: 'channel-235', + counterPartyChannelId: 'channel-90', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1392,35 +1471,35 @@ export default /** @type {const} } */ ({ }, }, 'juno-1': { - id: 'connection-9', - client_id: '07-tendermint-23', + id: 'connection-3', + client_id: '07-tendermint-5', counterparty: { - client_id: '07-tendermint-108', - connection_id: 'connection-68', + client_id: '07-tendermint-160', + connection_id: 'connection-107', }, state: 3, transferChannel: { - channelId: 'channel-8', + channelId: 'channel-3', portId: 'transfer', - counterPartyChannelId: 'channel-48', + counterPartyChannelId: 'channel-81', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'neutron-1': { - id: 'connection-192', - client_id: '07-tendermint-199', + 'kaiyo-1': { + id: 'connection-68', + client_id: '07-tendermint-78', counterparty: { - client_id: '07-tendermint-85', - connection_id: 'connection-63', + client_id: '07-tendermint-105', + connection_id: 'connection-75', }, state: 3, transferChannel: { - channelId: 'channel-144', + channelId: 'channel-42', portId: 'transfer', - counterPartyChannelId: 'channel-1551', + counterPartyChannelId: 'channel-67', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1428,17 +1507,17 @@ export default /** @type {const} } */ ({ }, }, 'noble-1': { - id: 'connection-127', - client_id: '07-tendermint-170', + id: 'connection-63', + client_id: '07-tendermint-68', counterparty: { - client_id: '07-tendermint-24', - connection_id: 'connection-33', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-88', + channelId: 'channel-38', portId: 'transfer', - counterPartyChannelId: 'channel-17', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1446,17 +1525,35 @@ export default /** @type {const} } */ ({ }, }, 'osmosis-1': { - id: 'connection-1', - client_id: '07-tendermint-2', + id: 'connection-12', + client_id: '07-tendermint-17', counterparty: { - client_id: '07-tendermint-1588', - connection_id: 'connection-1244', + client_id: '07-tendermint-2083', + connection_id: 'connection-1624', }, state: 3, transferChannel: { - channelId: 'channel-1', + channelId: 'channel-9', portId: 'transfer', - counterPartyChannelId: 'channel-88', + counterPartyChannelId: 'channel-297', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-13', + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-53', + connection_id: 'connection-31', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-24', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1464,17 +1561,17 @@ export default /** @type {const} } */ ({ }, }, 'stargaze-1': { - id: 'connection-25', - client_id: '07-tendermint-43', + id: 'connection-27', + client_id: '07-tendermint-24', counterparty: { - client_id: '07-tendermint-177', - connection_id: 'connection-110', + client_id: '07-tendermint-180', + connection_id: 'connection-114', }, state: 3, transferChannel: { - channelId: 'channel-19', + channelId: 'channel-21', portId: 'transfer', - counterPartyChannelId: 'channel-48', + counterPartyChannelId: 'channel-51', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1482,17 +1579,17 @@ export default /** @type {const} } */ ({ }, }, 'stride-1': { - id: 'connection-40', - client_id: '07-tendermint-75', + id: 'connection-39', + client_id: '07-tendermint-38', counterparty: { - client_id: '07-tendermint-37', - connection_id: 'connection-25', + client_id: '07-tendermint-44', + connection_id: 'connection-30', }, state: 3, transferChannel: { - channelId: 'channel-37', + channelId: 'channel-29', portId: 'transfer', - counterPartyChannelId: 'channel-40', + counterPartyChannelId: 'channel-51', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1500,17 +1597,17 @@ export default /** @type {const} } */ ({ }, }, 'umee-1': { - id: 'connection-188', - client_id: '07-tendermint-193', + id: 'connection-53', + client_id: '07-tendermint-56', counterparty: { - client_id: '07-tendermint-249', - connection_id: 'connection-213', + client_id: '07-tendermint-170', + connection_id: 'connection-110', }, state: 3, transferChannel: { - channelId: 'channel-126', + channelId: 'channel-36', portId: 'transfer', - counterPartyChannelId: 'channel-123', + counterPartyChannelId: 'channel-49', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1519,28 +1616,47 @@ export default /** @type {const} } */ ({ }, }, }, - stargaze: { - bech32Prefix: 'stars', - chainId: 'stargaze-1', + doravota: { + bech32Prefix: 'dora', + chainId: 'vota-ash', stakingTokens: [ { - denom: 'ustars', + denom: 'peaka', }, ], icqEnabled: false, + icaEnabled: false, connections: { - celestia: { - id: 'connection-296', - client_id: '07-tendermint-359', + 'archway-1': { + id: 'connection-28', + client_id: '07-tendermint-22', counterparty: { - client_id: '07-tendermint-86', - connection_id: 'connection-56', + client_id: '07-tendermint-113', + connection_id: 'connection-106', }, state: 3, transferChannel: { - channelId: 'channel-291', + channelId: 'channel-13', portId: 'transfer', - counterPartyChannelId: 'channel-33', + counterPartyChannelId: 'channel-146', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-4', + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-10', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1548,53 +1664,53 @@ export default /** @type {const} } */ ({ }, }, 'cosmoshub-4': { - id: 'connection-256', - client_id: '07-tendermint-320', + id: 'connection-8', + client_id: '07-tendermint-14', counterparty: { - client_id: '07-tendermint-1188', - connection_id: 'connection-918', + client_id: '07-tendermint-1191', + connection_id: 'connection-920', }, state: 3, transferChannel: { - channelId: 'channel-239', + channelId: 'channel-4', portId: 'transfer', - counterPartyChannelId: 'channel-730', + counterPartyChannelId: 'channel-750', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'juno-1': { - id: 'connection-11', - client_id: '07-tendermint-13', + 'dydx-mainnet-1': { + id: 'connection-10', + client_id: '07-tendermint-16', counterparty: { - client_id: '07-tendermint-44', - connection_id: 'connection-30', + client_id: '07-tendermint-15', + connection_id: 'connection-21', }, state: 3, transferChannel: { - channelId: 'channel-5', + channelId: 'channel-6', portId: 'transfer', - counterPartyChannelId: 'channel-20', + counterPartyChannelId: 'channel-15', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'neutron-1': { - id: 'connection-211', - client_id: '07-tendermint-283', + 'injective-1': { + id: 'connection-9', + client_id: '07-tendermint-15', counterparty: { - client_id: '07-tendermint-31', - connection_id: 'connection-23', + client_id: '07-tendermint-245', + connection_id: 'connection-239', }, state: 3, transferChannel: { - channelId: 'channel-191', + channelId: 'channel-5', portId: 'transfer', - counterPartyChannelId: 'channel-18', + counterPartyChannelId: 'channel-182', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1602,17 +1718,17 @@ export default /** @type {const} } */ ({ }, }, 'noble-1': { - id: 'connection-214', - client_id: '07-tendermint-287', + id: 'connection-29', + client_id: '07-tendermint-23', counterparty: { - client_id: '07-tendermint-16', - connection_id: 'connection-25', + client_id: '07-tendermint-111', + connection_id: 'connection-106', }, state: 3, transferChannel: { - channelId: 'channel-204', + channelId: 'channel-14', portId: 'transfer', - counterPartyChannelId: 'channel-11', + counterPartyChannelId: 'channel-94', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1620,137 +1736,6028 @@ export default /** @type {const} } */ ({ }, }, 'osmosis-1': { - id: 'connection-0', + id: 'connection-1', client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-1562', - connection_id: 'connection-1223', + client_id: '07-tendermint-2959', + connection_id: 'connection-2454', }, state: 3, transferChannel: { channelId: 'channel-0', portId: 'transfer', - counterPartyChannelId: 'channel-75', + counterPartyChannelId: 'channel-2694', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'secret-4': { - id: 'connection-110', - client_id: '07-tendermint-177', + 'pacific-1': { + id: 'connection-27', + client_id: '07-tendermint-21', counterparty: { - client_id: '07-tendermint-43', - connection_id: 'connection-25', + client_id: '07-tendermint-109', + connection_id: 'connection-153', }, state: 3, transferChannel: { - channelId: 'channel-48', + channelId: 'channel-12', portId: 'transfer', - counterPartyChannelId: 'channel-19', + counterPartyChannelId: 'channel-64', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'stride-1': { - id: 'connection-128', - client_id: '07-tendermint-195', + 'pirin-1': { + id: 'connection-5', + client_id: '07-tendermint-13', counterparty: { - client_id: '07-tendermint-30', - connection_id: 'connection-18', + client_id: '07-tendermint-14', + connection_id: 'connection-12', }, state: 3, transferChannel: { - channelId: 'channel-106', + channelId: 'channel-3', portId: 'transfer', - counterPartyChannelId: 'channel-19', + counterPartyChannelId: 'channel-4092', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - }, - }, - stride: { - bech32Prefix: 'stride', - chainId: 'stride-1', - stakingTokens: [ + 'stargaze-1': { + id: 'connection-30', + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-368', + connection_id: 'connection-318', + }, + state: 3, + transferChannel: { + channelId: 'channel-15', + portId: 'transfer', + counterPartyChannelId: 'channel-394', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + dydx: { + bech32Prefix: 'dydx', + chainId: 'dydx-mainnet-1', + stakingTokens: [ + { + denom: 'adydx', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'core-1': { + id: 'connection-8', + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-159', + connection_id: 'connection-197', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-131', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-20', + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-26', + }, + state: 3, + transferChannel: { + channelId: 'channel-14', + portId: 'transfer', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-23', + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-135', + connection_id: 'connection-81', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-107', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-9', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-122', + }, + state: 3, + transferChannel: { + channelId: 'channel-5', + portId: 'transfer', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-12', + client_id: '07-tendermint-7', + counterparty: { + client_id: '07-tendermint-154', + connection_id: 'connection-195', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-137', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-17', + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-72', + connection_id: 'connection-51', + }, + state: 3, + transferChannel: { + channelId: 'channel-11', + portId: 'transfer', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-59', + connection_id: 'connection-57', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-7', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-3009', + connection_id: 'connection-2500', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-6787', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-34', + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-71', + portId: 'transfer', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-133', + connection_id: 'connection-123', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-13', + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-244', + connection_id: 'connection-208', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-21', + client_id: '07-tendermint-15', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-10', + }, + state: 3, + transferChannel: { + channelId: 'channel-15', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + dymension: { + bech32Prefix: 'dym', + chainId: 'dymension_1100-1', + stakingTokens: [ + { + denom: 'adym', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'archway-1': { + id: 'connection-30', + client_id: '07-tendermint-39', + counterparty: { + client_id: '07-tendermint-91', + connection_id: 'connection-89', + }, + state: 3, + transferChannel: { + channelId: 'channel-45', + portId: 'transfer', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-5', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-52', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-27', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-1205', + connection_id: 'connection-933', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-794', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-22', + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-85', + }, + state: 3, + transferChannel: { + channelId: 'channel-37', + portId: 'transfer', + counterPartyChannelId: 'channel-109', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-10', + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-169', + connection_id: 'connection-132', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-3', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-162', + connection_id: 'connection-203', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-9', + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-61', + }, + state: 3, + transferChannel: { + channelId: 'channel-9', + portId: 'transfer', + counterPartyChannelId: 'channel-675', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-7', + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-79', + connection_id: 'connection-80', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-3086', + connection_id: 'connection-2566', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-19774', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-20', + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-194', + connection_id: 'connection-189', + }, + state: 3, + transferChannel: { + channelId: 'channel-35', + portId: 'transfer', + counterPartyChannelId: 'channel-130', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-140', + connection_id: 'connection-131', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-197', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + empowerchain: { + bech32Prefix: 'empower', + chainId: 'empowerchain-1', + stakingTokens: [ + { + denom: 'umpwr', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1151', + connection_id: 'connection-872', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-621', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2848', + connection_id: 'connection-2360', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-1411', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + evmos: { + bech32Prefix: 'evmos', + chainId: 'evmos_9001-2', + stakingTokens: [ + { + denom: 'aevmos', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'agoric-3': { + id: 'connection-70', + client_id: '07-tendermint-116', + counterparty: { + client_id: '07-tendermint-72', + connection_id: 'connection-66', + }, + state: 3, + transferChannel: { + channelId: 'channel-85', + portId: 'transfer', + counterPartyChannelId: 'channel-57', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1': { + id: 'connection-29', + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-11', + connection_id: 'connection-10', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-80', + client_id: '07-tendermint-134', + counterparty: { + client_id: '07-tendermint-79', + connection_id: 'connection-49', + }, + state: 3, + transferChannel: { + channelId: 'channel-106', + portId: 'transfer', + counterPartyChannelId: 'channel-26', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-71', + client_id: '07-tendermint-117', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-87', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-3', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-620', + connection_id: 'connection-480', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-292', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-15', + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-10', + }, + state: 3, + transferChannel: { + channelId: 'channel-11', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-81', + client_id: '07-tendermint-135', + counterparty: { + client_id: '07-tendermint-17', + connection_id: 'connection-23', + }, + state: 3, + transferChannel: { + channelId: 'channel-107', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-85', + client_id: '07-tendermint-138', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-22', + }, + state: 3, + transferChannel: { + channelId: 'channel-109', + portId: 'transfer', + counterPartyChannelId: 'channel-37', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-13', + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-92', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-83', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-21', + client_id: '07-tendermint-53', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-18', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-67', + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-157', + }, + state: 3, + transferChannel: { + channelId: 'channel-83', + portId: 'transfer', + counterPartyChannelId: 'channel-117', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1': { + id: 'connection-89', + client_id: '07-tendermint-142', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-14', + }, + state: 3, + transferChannel: { + channelId: 'channel-117', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-63', + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-64', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1840', + connection_id: 'connection-1440', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-19', + client_id: '07-tendermint-50', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-24', + }, + state: 3, + transferChannel: { + channelId: 'channel-15', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-17', + client_id: '07-tendermint-41', + counterparty: { + client_id: '07-tendermint-173', + connection_id: 'connection-104', + }, + state: 3, + transferChannel: { + channelId: 'channel-13', + portId: 'transfer', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-33', + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-25', + portId: 'transfer', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + haqq: { + bech32Prefix: 'haqq', + chainId: 'haqq_11235-1', + stakingTokens: [ + { + denom: 'aISLM', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'cosmoshub-4': { + id: 'connection-3', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1153', + connection_id: 'connection-874', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-632', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-7', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-149', + connection_id: 'connection-193', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-135', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-4', + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-58', + connection_id: 'connection-56', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-32', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2871', + connection_id: 'connection-2388', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-1575', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-8', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-143', + connection_id: 'connection-143', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-240', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + injective: { + bech32Prefix: 'inj', + chainId: 'injective-1', + stakingTokens: [ + { + denom: 'inj', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + celestia: { + id: 'connection-210', + client_id: '07-tendermint-226', + counterparty: { + client_id: '07-tendermint-28', + connection_id: 'connection-6', + }, + state: 3, + transferChannel: { + channelId: 'channel-152', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-91', + client_id: '07-tendermint-110', + counterparty: { + client_id: '07-tendermint-57', + connection_id: 'connection-53', + }, + state: 3, + transferChannel: { + channelId: 'channel-82', + portId: 'transfer', + counterPartyChannelId: 'channel-41', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-2', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-470', + connection_id: 'connection-388', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-220', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-105', + client_id: '07-tendermint-132', + counterparty: { + client_id: '07-tendermint-26', + connection_id: 'connection-29', + }, + state: 3, + transferChannel: { + channelId: 'channel-90', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-92', + client_id: '07-tendermint-112', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-83', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-116', + client_id: '07-tendermint-144', + counterparty: { + client_id: '07-tendermint-77', + connection_id: 'connection-53', + }, + state: 3, + transferChannel: { + channelId: 'channel-98', + portId: 'transfer', + counterPartyChannelId: 'channel-54', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-189', + client_id: '07-tendermint-205', + counterparty: { + client_id: '07-tendermint-130', + connection_id: 'connection-166', + }, + state: 3, + transferChannel: { + channelId: 'channel-143', + portId: 'transfer', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-123', + client_id: '07-tendermint-154', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-8', + }, + state: 3, + transferChannel: { + channelId: 'channel-102', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-220', + client_id: '07-tendermint-233', + counterparty: { + client_id: '07-tendermint-78', + connection_id: 'connection-58', + }, + state: 3, + transferChannel: { + channelId: 'channel-177', + portId: 'transfer', + counterPartyChannelId: 'channel-60', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-195', + client_id: '07-tendermint-212', + counterparty: { + client_id: '07-tendermint-57', + connection_id: 'connection-55', + }, + state: 3, + transferChannel: { + channelId: 'channel-148', + portId: 'transfer', + counterPartyChannelId: 'channel-31', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-14', + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-1703', + connection_id: 'connection-1298', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-268', + client_id: '07-tendermint-267', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-284', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-101', + client_id: '07-tendermint-126', + counterparty: { + client_id: '07-tendermint-49', + connection_id: 'connection-30', + }, + state: 3, + transferChannel: { + channelId: 'channel-88', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-103', + client_id: '07-tendermint-131', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + state: 3, + transferChannel: { + channelId: 'channel-89', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-217', + client_id: '07-tendermint-229', + counterparty: { + client_id: '07-tendermint-243', + connection_id: 'connection-206', + }, + state: 3, + transferChannel: { + channelId: 'channel-159', + portId: 'transfer', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-239', + client_id: '07-tendermint-245', + counterparty: { + client_id: '07-tendermint-15', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-182', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + juno: { + bech32Prefix: 'juno', + chainId: 'juno-1', + stakingTokens: [ + { + denom: 'ujuno', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'columbus-5': { + id: 'connection-43', + client_id: '07-tendermint-63', + counterparty: { + client_id: '07-tendermint-32', + connection_id: 'connection-34', + }, + state: 3, + transferChannel: { + channelId: 'channel-27', + portId: 'transfer', + counterPartyChannelId: 'channel-20', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-51', + client_id: '07-tendermint-89', + counterparty: { + client_id: '07-tendermint-49', + connection_id: 'connection-48', + }, + state: 3, + transferChannel: { + channelId: 'channel-33', + portId: 'transfer', + counterPartyChannelId: 'channel-37', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-2', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-439', + connection_id: 'connection-372', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-207', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-107', + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-3', + }, + state: 3, + transferChannel: { + channelId: 'channel-81', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-140', + client_id: '07-tendermint-198', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-87', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-282', + client_id: '07-tendermint-310', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-210', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-524', + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-97', + connection_id: 'connection-71', + }, + state: 3, + transferChannel: { + channelId: 'channel-548', + portId: 'transfer', + counterPartyChannelId: 'channel-4328', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-322', + client_id: '07-tendermint-334', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-8', + }, + state: 3, + transferChannel: { + channelId: 'channel-224', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1457', + connection_id: 'connection-1142', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-68', + client_id: '07-tendermint-108', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-48', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-30', + client_id: '07-tendermint-44', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-20', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-205', + client_id: '07-tendermint-263', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-139', + portId: 'transfer', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + kava: { + bech32Prefix: 'kava', + chainId: 'kava_2222-10', + stakingTokens: [ + { + denom: 'ukava', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'agoric-3': { + id: 'connection-182', + client_id: '07-tendermint-147', + counterparty: { + client_id: '07-tendermint-78', + connection_id: 'connection-73', + }, + state: 3, + transferChannel: { + channelId: 'channel-133', + portId: 'transfer', + counterPartyChannelId: 'channel-63', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-198', + client_id: '07-tendermint-158', + counterparty: { + client_id: '07-tendermint-49', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-140', + portId: 'transfer', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-189', + client_id: '07-tendermint-148', + counterparty: { + client_id: '07-tendermint-156', + connection_id: 'connection-195', + }, + state: 3, + transferChannel: { + channelId: 'channel-134', + portId: 'transfer', + counterPartyChannelId: 'channel-129', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-200', + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-29', + connection_id: 'connection-20', + }, + state: 3, + transferChannel: { + channelId: 'channel-142', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-557', + connection_id: 'connection-460', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-277', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-195', + client_id: '07-tendermint-154', + counterparty: { + client_id: '07-tendermint-7', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-137', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-203', + client_id: '07-tendermint-162', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + state: 3, + transferChannel: { + channelId: 'channel-144', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-157', + client_id: '07-tendermint-120', + counterparty: { + client_id: '07-tendermint-113', + connection_id: 'connection-67', + }, + state: 3, + transferChannel: { + channelId: 'channel-117', + portId: 'transfer', + counterPartyChannelId: 'channel-83', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'haqq_11235-1': { + id: 'connection-193', + client_id: '07-tendermint-149', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-135', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-166', + client_id: '07-tendermint-130', + counterparty: { + client_id: '07-tendermint-205', + connection_id: 'connection-189', + }, + state: 3, + transferChannel: { + channelId: 'channel-122', + portId: 'transfer', + counterPartyChannelId: 'channel-143', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-156', + client_id: '07-tendermint-119', + counterparty: { + client_id: '07-tendermint-140', + connection_id: 'connection-106', + }, + state: 3, + transferChannel: { + channelId: 'channel-116', + portId: 'transfer', + counterPartyChannelId: 'channel-95', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-162', + client_id: '07-tendermint-125', + counterparty: { + client_id: '07-tendermint-90', + connection_id: 'connection-73', + }, + state: 3, + transferChannel: { + channelId: 'channel-120', + portId: 'transfer', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-194', + client_id: '07-tendermint-151', + counterparty: { + client_id: '07-tendermint-54', + connection_id: 'connection-37', + }, + state: 3, + transferChannel: { + channelId: 'channel-136', + portId: 'transfer', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-214', + client_id: '07-tendermint-172', + counterparty: { + client_id: '07-tendermint-107', + connection_id: 'connection-102', + }, + state: 3, + transferChannel: { + channelId: 'channel-151', + portId: 'transfer', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-1', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1735', + connection_id: 'connection-1328', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-143', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-181', + client_id: '07-tendermint-146', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-33', + }, + state: 3, + transferChannel: { + channelId: 'channel-132', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + kujira: { + bech32Prefix: 'kujira', + chainId: 'kaiyo-1', + stakingTokens: [ + { + denom: 'ukuji', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'agoric-3': { + id: 'connection-64', + client_id: '07-tendermint-94', + counterparty: { + client_id: '07-tendermint-20', + connection_id: 'connection-20', + }, + state: 3, + transferChannel: { + channelId: 'channel-61', + portId: 'transfer', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1': { + id: 'connection-40', + client_id: '07-tendermint-60', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-46', + portId: 'transfer', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-130', + client_id: '07-tendermint-167', + counterparty: { + client_id: '07-tendermint-162', + connection_id: 'connection-200', + }, + state: 3, + transferChannel: { + channelId: 'channel-158', + portId: 'transfer', + counterPartyChannelId: 'channel-152', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-126', + client_id: '07-tendermint-163', + counterparty: { + client_id: '07-tendermint-28', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-122', + portId: 'transfer', + counterPartyChannelId: 'channel-17', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-769', + connection_id: 'connection-555', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-343', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-75', + client_id: '07-tendermint-105', + counterparty: { + client_id: '07-tendermint-78', + connection_id: 'connection-68', + }, + state: 3, + transferChannel: { + channelId: 'channel-67', + portId: 'transfer', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-122', + client_id: '07-tendermint-158', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-118', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-132', + client_id: '07-tendermint-169', + counterparty: { + client_id: '07-tendermint-17', + connection_id: 'connection-10', + }, + state: 3, + transferChannel: { + channelId: 'channel-160', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-19', + client_id: '07-tendermint-25', + counterparty: { + client_id: '07-tendermint-53', + connection_id: 'connection-21', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-53', + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-144', + connection_id: 'connection-116', + }, + state: 3, + transferChannel: { + channelId: 'channel-54', + portId: 'transfer', + counterPartyChannelId: 'channel-98', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-1', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-198', + connection_id: 'connection-140', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-87', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-106', + client_id: '07-tendermint-140', + counterparty: { + client_id: '07-tendermint-119', + connection_id: 'connection-156', + }, + state: 3, + transferChannel: { + channelId: 'channel-95', + portId: 'transfer', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-59', + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-58', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-82', + client_id: '07-tendermint-112', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-75', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-65', + client_id: '07-tendermint-95', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-4', + }, + state: 3, + transferChannel: { + channelId: 'channel-62', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2017', + connection_id: 'connection-1559', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-259', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'planq_7070-2': { + id: 'connection-46', + client_id: '07-tendermint-70', + counterparty: { + client_id: '07-tendermint-144', + connection_id: 'connection-151', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-7', + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-29', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-22', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-5', + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-178', + connection_id: 'connection-111', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-31', + client_id: '07-tendermint-37', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-32', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + lava: { + bech32Prefix: 'lava@', + chainId: 'lava-mainnet-1', + stakingTokens: [ + { + denom: 'ulava', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'cosmoshub-4': { + id: 'connection-12', + client_id: '07-tendermint-7', + counterparty: { + client_id: '07-tendermint-1318', + connection_id: 'connection-1050', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-969', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-14', + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-142', + connection_id: 'connection-89', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-117', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-15', + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-115', + }, + state: 3, + transferChannel: { + channelId: 'channel-9', + portId: 'transfer', + counterPartyChannelId: 'channel-105', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-3210', + connection_id: 'connection-2668', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-76971', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-13', + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-366', + connection_id: 'connection-307', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-391', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + migaloo: { + bech32Prefix: 'migaloo', + chainId: 'migaloo-1', + stakingTokens: [ + { + denom: 'uwhale', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'archway-1': { + id: 'connection-108', + client_id: '07-tendermint-138', + counterparty: { + client_id: '07-tendermint-119', + connection_id: 'connection-114', + }, + state: 3, + transferChannel: { + channelId: 'channel-141', + portId: 'transfer', + counterPartyChannelId: 'channel-184', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5': { + id: 'connection-92', + client_id: '07-tendermint-122', + counterparty: { + client_id: '07-tendermint-244', + connection_id: 'connection-151', + }, + state: 3, + transferChannel: { + channelId: 'channel-114', + portId: 'transfer', + counterPartyChannelId: 'channel-87', + counterPartyPortId: + 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-8', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-154', + connection_id: 'connection-123', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-102', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-310', + connection_id: 'connection-282', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-210', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-19', + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-59', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-58', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-73', + client_id: '07-tendermint-90', + counterparty: { + client_id: '07-tendermint-125', + connection_id: 'connection-162', + }, + state: 3, + transferChannel: { + channelId: 'channel-48', + portId: 'transfer', + counterPartyChannelId: 'channel-120', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-89', + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-28', + }, + state: 3, + transferChannel: { + channelId: 'channel-60', + portId: 'transfer', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-11', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2669', + connection_id: 'connection-2171', + }, + state: 3, + transferChannel: { + channelId: 'channel-5', + portId: 'transfer', + counterPartyChannelId: 'channel-642', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-84', + client_id: '07-tendermint-108', + counterparty: { + client_id: '07-tendermint-22', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-57', + portId: 'transfer', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-9', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-87', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-57', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-90', + client_id: '07-tendermint-118', + counterparty: { + client_id: '07-tendermint-352', + connection_id: 'connection-287', + }, + state: 3, + transferChannel: { + channelId: 'channel-69', + portId: 'transfer', + counterPartyChannelId: 'channel-269', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-83', + client_id: '07-tendermint-104', + counterparty: { + client_id: '07-tendermint-234', + connection_id: 'connection-195', + }, + state: 3, + transferChannel: { + channelId: 'channel-56', + portId: 'transfer', + counterPartyChannelId: 'channel-104', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + neutron: { + bech32Prefix: 'neutron', + chainId: 'neutron-1', + stakingTokens: [ + { + denom: 'untrn', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-108', + client_id: '07-tendermint-148', + counterparty: { + client_id: '07-tendermint-101', + connection_id: 'connection-99', + }, + state: 3, + transferChannel: { + channelId: 'channel-5789', + portId: 'transfer', + counterPartyChannelId: 'channel-146', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1': { + id: 'connection-43', + client_id: '07-tendermint-62', + counterparty: { + client_id: '07-tendermint-51', + connection_id: 'connection-58', + }, + state: 3, + transferChannel: { + channelId: 'channel-41', + portId: 'transfer', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-36', + client_id: '07-tendermint-48', + counterparty: { + client_id: '07-tendermint-29', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-35', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-52', + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-161', + connection_id: 'connection-199', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-136', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1119', + connection_id: 'connection-809', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-569', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-51', + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-11', + connection_id: 'connection-17', + }, + state: 3, + transferChannel: { + channelId: 'channel-48', + portId: 'transfer', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-61', + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-675', + portId: 'transfer', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-58', + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-233', + connection_id: 'connection-220', + }, + state: 3, + transferChannel: { + channelId: 'channel-60', + portId: 'transfer', + counterPartyChannelId: 'channel-177', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-71', + client_id: '07-tendermint-97', + counterparty: { + client_id: '07-tendermint-557', + connection_id: 'connection-524', + }, + state: 3, + transferChannel: { + channelId: 'channel-4328', + portId: 'transfer', + counterPartyChannelId: 'channel-548', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-2', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-82', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-75', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-37', + client_id: '07-tendermint-54', + counterparty: { + client_id: '07-tendermint-151', + connection_id: 'connection-194', + }, + state: 3, + transferChannel: { + channelId: 'channel-36', + portId: 'transfer', + counterPartyChannelId: 'channel-136', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-31', + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-34', + }, + state: 3, + transferChannel: { + channelId: 'channel-30', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-18', + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-2823', + connection_id: 'connection-2338', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-874', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-65', + client_id: '07-tendermint-89', + counterparty: { + client_id: '07-tendermint-123', + connection_id: 'connection-157', + }, + state: 3, + transferChannel: { + channelId: 'channel-2016', + portId: 'transfer', + counterPartyChannelId: 'channel-66', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pirin-1': { + id: 'connection-50', + client_id: '07-tendermint-71', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-44', + portId: 'transfer', + counterPartyChannelId: 'channel-3839', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-72', + client_id: '07-tendermint-98', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-6', + }, + state: 3, + transferChannel: { + channelId: 'channel-4329', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-63', + client_id: '07-tendermint-85', + counterparty: { + client_id: '07-tendermint-199', + connection_id: 'connection-192', + }, + state: 3, + transferChannel: { + channelId: 'channel-1551', + portId: 'transfer', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-23', + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-283', + connection_id: 'connection-211', + }, + state: 3, + transferChannel: { + channelId: 'channel-18', + portId: 'transfer', + counterPartyChannelId: 'channel-191', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-15', + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-125', + connection_id: 'connection-113', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + nibiru: { + bech32Prefix: 'nibi', + chainId: 'cataclysm-1', + stakingTokens: [ + { + denom: 'unibi', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: {}, + }, + noble: { + bech32Prefix: 'noble', + chainId: 'noble-1', + icqEnabled: false, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-40', + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-77', + connection_id: 'connection-72', + }, + state: 3, + transferChannel: { + channelId: 'channel-21', + portId: 'transfer', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1': { + id: 'connection-107', + client_id: '07-tendermint-112', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-3', + }, + state: 3, + transferChannel: { + channelId: 'channel-95', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-59', + client_id: '07-tendermint-61', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-198', + }, + state: 3, + transferChannel: { + channelId: 'channel-36', + portId: 'transfer', + counterPartyChannelId: 'channel-132', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-72', + client_id: '07-tendermint-71', + counterparty: { + client_id: '07-tendermint-32', + connection_id: 'connection-21', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-19', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-12', + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-1116', + connection_id: 'connection-790', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-536', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-68', + connection_id: 'connection-63', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-38', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-57', + client_id: '07-tendermint-59', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-33', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-80', + client_id: '07-tendermint-79', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-62', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-19', + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-106', + connection_id: 'connection-63', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-64', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'haqq_11235-1': { + id: 'connection-56', + client_id: '07-tendermint-58', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-4', + }, + state: 3, + transferChannel: { + channelId: 'channel-32', + portId: 'transfer', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-55', + client_id: '07-tendermint-57', + counterparty: { + client_id: '07-tendermint-212', + connection_id: 'connection-195', + }, + state: 3, + transferChannel: { + channelId: 'channel-31', + portId: 'transfer', + counterPartyChannelId: 'channel-148', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-8', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-334', + connection_id: 'connection-322', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-224', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-4', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-95', + connection_id: 'connection-65', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-102', + client_id: '07-tendermint-107', + counterparty: { + client_id: '07-tendermint-172', + connection_id: 'connection-214', + }, + state: 3, + transferChannel: { + channelId: 'channel-88', + portId: 'transfer', + counterPartyChannelId: 'channel-151', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1': { + id: 'connection-115', + client_id: '07-tendermint-120', + counterparty: { + client_id: '07-tendermint-11', + connection_id: 'connection-15', + }, + state: 3, + transferChannel: { + channelId: 'channel-105', + portId: 'transfer', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-28', + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-113', + connection_id: 'connection-89', + }, + state: 3, + transferChannel: { + channelId: 'channel-14', + portId: 'transfer', + counterPartyChannelId: 'channel-60', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-34', + client_id: '07-tendermint-25', + counterparty: { + client_id: '07-tendermint-40', + connection_id: 'connection-31', + }, + state: 3, + transferChannel: { + channelId: 'channel-18', + portId: 'transfer', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'omniflixhub-1': { + id: 'connection-65', + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-51', + connection_id: 'connection-49', + }, + state: 3, + transferChannel: { + channelId: 'channel-44', + portId: 'transfer', + counterPartyChannelId: 'channel-38', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-2704', + connection_id: 'connection-2241', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-750', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-61', + client_id: '07-tendermint-64', + counterparty: { + client_id: '07-tendermint-45', + connection_id: 'connection-77', + }, + state: 3, + transferChannel: { + channelId: 'channel-39', + portId: 'transfer', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pio-mainnet-1': { + id: 'connection-37', + client_id: '07-tendermint-30', + counterparty: { + client_id: '07-tendermint-36', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-20', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'planq_7070-2': { + id: 'connection-95', + client_id: '07-tendermint-103', + counterparty: { + client_id: '07-tendermint-567', + connection_id: 'connection-490', + }, + state: 3, + transferChannel: { + channelId: 'channel-82', + portId: 'transfer', + counterPartyChannelId: 'channel-63', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-92', + client_id: '07-tendermint-100', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-79', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-33', + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-127', + }, + state: 3, + transferChannel: { + channelId: 'channel-17', + portId: 'transfer', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'shido_9008-1': { + id: 'connection-99', + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-87', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-25', + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-287', + connection_id: 'connection-214', + }, + state: 3, + transferChannel: { + channelId: 'channel-11', + portId: 'transfer', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'titan_18888-1': { + id: 'connection-109', + client_id: '07-tendermint-114', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-99', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-74', + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-248', + connection_id: 'connection-210', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-120', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-106', + client_id: '07-tendermint-111', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-29', + }, + state: 3, + transferChannel: { + channelId: 'channel-94', + portId: 'transfer', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + nolus: { + bech32Prefix: 'nolus', + chainId: 'pirin-1', + stakingTokens: [ + { + denom: 'unls', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'neutron-1': { + id: 'connection-11', + client_id: '07-tendermint-13', + counterparty: { + client_id: '07-tendermint-71', + connection_id: 'connection-50', + }, + state: 3, + transferChannel: { + channelId: 'channel-3839', + portId: 'transfer', + counterPartyChannelId: 'channel-44', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-2791', + connection_id: 'connection-2289', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-783', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-14', + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-201', + connection_id: 'connection-193', + }, + state: 3, + transferChannel: { + channelId: 'channel-13995', + portId: 'transfer', + counterPartyChannelId: 'channel-146', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-12', + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-4092', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + omniflixhub: { + bech32Prefix: 'omniflix', + chainId: 'omniflixhub-1', + stakingTokens: [ + { + denom: 'uflix', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-40', + client_id: '07-tendermint-47', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-67', + }, + state: 3, + transferChannel: { + channelId: 'channel-30', + portId: 'transfer', + counterPartyChannelId: 'channel-58', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1': { + id: 'connection-55', + client_id: '07-tendermint-75', + counterparty: { + client_id: '07-tendermint-11', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-50', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-19', + client_id: '07-tendermint-23', + counterparty: { + client_id: '07-tendermint-656', + connection_id: 'connection-501', + }, + state: 3, + transferChannel: { + channelId: 'channel-12', + portId: 'transfer', + counterPartyChannelId: 'channel-306', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-49', + client_id: '07-tendermint-51', + counterparty: { + client_id: '07-tendermint-68', + connection_id: 'connection-65', + }, + state: 3, + transferChannel: { + channelId: 'channel-38', + portId: 'transfer', + counterPartyChannelId: 'channel-44', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-8', + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-1829', + connection_id: 'connection-1431', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-199', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-54', + client_id: '07-tendermint-74', + counterparty: { + client_id: '07-tendermint-370', + connection_id: 'connection-328', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-398', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + osmosis: { + bech32Prefix: 'osmo', + chainId: 'osmosis-1', + stakingTokens: [ + { + denom: 'uosmo', + }, + ], + icqEnabled: true, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-1649', + client_id: '07-tendermint-2109', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-320', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1': { + id: 'connection-1672', + client_id: '07-tendermint-2154', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-340', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1': { + id: 'connection-1412', + client_id: '07-tendermint-1808', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-188', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-2503', + client_id: '07-tendermint-3012', + counterparty: { + client_id: '07-tendermint-10', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-6994', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5': { + id: 'connection-1549', + client_id: '07-tendermint-1215', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-72', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-4', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-4', + portId: 'transfer', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-2426', + client_id: '07-tendermint-2929', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + state: 3, + transferChannel: { + channelId: 'channel-2188', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-259', + connection_id: 'connection-257', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-141', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-1624', + client_id: '07-tendermint-2083', + counterparty: { + client_id: '07-tendermint-17', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-297', + portId: 'transfer', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-2500', + client_id: '07-tendermint-3009', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-6787', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-2566', + client_id: '07-tendermint-3086', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-19774', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'empowerchain-1': { + id: 'connection-2360', + client_id: '07-tendermint-2848', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-1411', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-1440', + client_id: '07-tendermint-1840', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-204', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'haqq_11235-1': { + id: 'connection-2388', + client_id: '07-tendermint-2871', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-1575', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-1298', + client_id: '07-tendermint-1703', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + state: 3, + transferChannel: { + channelId: 'channel-122', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-1142', + client_id: '07-tendermint-1457', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-42', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-1559', + client_id: '07-tendermint-2017', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-259', + portId: 'transfer', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-1328', + client_id: '07-tendermint-1735', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-143', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1': { + id: 'connection-2668', + client_id: '07-tendermint-3210', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-76971', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-2171', + client_id: '07-tendermint-2669', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-642', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-2338', + client_id: '07-tendermint-2823', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-18', + }, + state: 3, + transferChannel: { + channelId: 'channel-874', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-2241', + client_id: '07-tendermint-2704', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-750', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'omniflixhub-1': { + id: 'connection-1431', + client_id: '07-tendermint-1829', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-8', + }, + state: 3, + transferChannel: { + channelId: 'channel-199', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-2288', + client_id: '07-tendermint-2790', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-782', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pio-mainnet-1': { + id: 'connection-1472', + client_id: '07-tendermint-1899', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-222', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pirin-1': { + id: 'connection-2289', + client_id: '07-tendermint-2791', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-783', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'planq_7070-2': { + id: 'connection-1815', + client_id: '07-tendermint-2318', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-492', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-2663', + client_id: '07-tendermint-3206', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-75755', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'quicksilver-2': { + id: 'connection-1889', + client_id: '07-tendermint-2400', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-522', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-1244', + client_id: '07-tendermint-1588', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-88', + portId: 'transfer', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'shido_9008-1': { + id: 'connection-2654', + client_id: '07-tendermint-3198', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-73755', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'sifchain-1': { + id: 'connection-1159', + client_id: '07-tendermint-1484', + counterparty: { + client_id: '07-tendermint-41', + connection_id: 'connection-20', + }, + state: 3, + transferChannel: { + channelId: 'channel-47', + portId: 'transfer', + counterPartyChannelId: 'channel-17', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-1223', + client_id: '07-tendermint-1562', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-75', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-1657', + client_id: '07-tendermint-2119', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-326', + portId: 'transfer', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-1410', + client_id: '07-tendermint-1805', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-184', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-2454', + client_id: '07-tendermint-2959', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-1', + }, + state: 3, + transferChannel: { + channelId: 'channel-2694', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + persistence: { + bech32Prefix: 'persistence', + chainId: 'core-1', + stakingTokens: [ + { + denom: 'uxprt', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'agoric-3': { + id: 'connection-210', + client_id: '07-tendermint-167', + counterparty: { + client_id: '07-tendermint-93', + connection_id: 'connection-91', + }, + state: 3, + transferChannel: { + channelId: 'channel-202', + portId: 'transfer', + counterPartyChannelId: 'channel-72', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-72', + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-41', + }, + state: 3, + transferChannel: { + channelId: 'channel-68', + portId: 'transfer', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-197', + client_id: '07-tendermint-159', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-8', + }, + state: 3, + transferChannel: { + channelId: 'channel-131', + portId: 'transfer', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-53', + client_id: '07-tendermint-57', + counterparty: { + client_id: '07-tendermint-110', + connection_id: 'connection-91', + }, + state: 3, + transferChannel: { + channelId: 'channel-41', + portId: 'transfer', + counterPartyChannelId: 'channel-82', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-48', + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-89', + connection_id: 'connection-51', + }, + state: 3, + transferChannel: { + channelId: 'channel-37', + portId: 'transfer', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-200', + client_id: '07-tendermint-162', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-130', + }, + state: 3, + transferChannel: { + channelId: 'channel-152', + portId: 'transfer', + counterPartyChannelId: 'channel-158', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-195', + client_id: '07-tendermint-156', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-189', + }, + state: 3, + transferChannel: { + channelId: 'channel-129', + portId: 'transfer', + counterPartyChannelId: 'channel-134', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-199', + client_id: '07-tendermint-161', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-52', + }, + state: 3, + transferChannel: { + channelId: 'channel-136', + portId: 'transfer', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-198', + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-61', + connection_id: 'connection-59', + }, + state: 3, + transferChannel: { + channelId: 'channel-132', + portId: 'transfer', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-5', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-4', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-207', + client_id: '07-tendermint-166', + counterparty: { + client_id: '07-tendermint-358', + connection_id: 'connection-293', + }, + state: 3, + transferChannel: { + channelId: 'channel-197', + portId: 'transfer', + counterPartyChannelId: 'channel-287', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-144', + client_id: '07-tendermint-105', + counterparty: { + client_id: '07-tendermint-179', + connection_id: 'connection-119', + }, + state: 3, + transferChannel: { + channelId: 'channel-81', + portId: 'transfer', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + planq: { + bech32Prefix: 'plq', + chainId: 'planq_7070-2', + stakingTokens: [ + { + denom: 'aplanq', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'archway-1': { + id: 'connection-486', + client_id: '07-tendermint-561', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-83', + }, + state: 3, + transferChannel: { + channelId: 'channel-62', + portId: 'transfer', + counterPartyChannelId: 'channel-112', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-3', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-994', + connection_id: 'connection-693', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-446', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-151', + client_id: '07-tendermint-144', + counterparty: { + client_id: '07-tendermint-70', + connection_id: 'connection-46', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-490', + client_id: '07-tendermint-567', + counterparty: { + client_id: '07-tendermint-103', + connection_id: 'connection-95', + }, + state: 3, + transferChannel: { + channelId: 'channel-63', + portId: 'transfer', + counterPartyChannelId: 'channel-82', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2318', + connection_id: 'connection-1815', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-492', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pacific-1': { + id: 'connection-477', + client_id: '07-tendermint-545', + counterparty: { + client_id: '07-tendermint-21', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-59', + portId: 'transfer', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + provenance: { + bech32Prefix: 'pb', + chainId: 'pio-mainnet-1', + stakingTokens: [ + { + denom: 'nhash', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'noble-1': { + id: 'connection-13', + client_id: '07-tendermint-36', + counterparty: { + client_id: '07-tendermint-30', + connection_id: 'connection-37', + }, + state: 3, + transferChannel: { + channelId: 'channel-10', + portId: 'transfer', + counterPartyChannelId: 'channel-20', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-9', + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-1899', + connection_id: 'connection-1472', + }, + state: 3, + transferChannel: { + channelId: 'channel-7', + portId: 'transfer', + counterPartyChannelId: 'channel-222', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + pryzm: { + bech32Prefix: 'pryzm', + chainId: 'pryzm-1', + stakingTokens: [ + { + denom: 'upryzm', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + celestia: { + id: 'connection-3', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-88', + connection_id: 'connection-57', + }, + state: 3, + transferChannel: { + channelId: 'channel-3', + portId: 'transfer', + counterPartyChannelId: 'channel-34', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1304', + connection_id: 'connection-1038', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-859', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-9', + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-29', + connection_id: 'connection-34', + }, + state: 3, + transferChannel: { + channelId: 'channel-24', + portId: 'transfer', + counterPartyChannelId: 'channel-71', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-1', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-267', + connection_id: 'connection-268', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-284', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-6', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-98', + connection_id: 'connection-72', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-4329', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-5', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-100', + connection_id: 'connection-92', + }, + state: 3, + transferChannel: { + channelId: 'channel-5', + portId: 'transfer', + counterPartyChannelId: 'channel-79', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-3206', + connection_id: 'connection-2663', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-75755', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-8', + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-145', + connection_id: 'connection-145', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-257', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + quicksilver: { + bech32Prefix: 'quick', + chainId: 'quicksilver-2', + stakingTokens: [ + { + denom: 'uqck', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'osmosis-1': { + id: 'connection-2', + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-2400', + connection_id: 'connection-1889', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-522', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + secretnetwork: { + bech32Prefix: 'secret', + chainId: 'secret-4', + stakingTokens: [ + { + denom: 'uscrt', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-80', + client_id: '07-tendermint-111', + counterparty: { + client_id: '07-tendermint-17', + connection_id: 'connection-17', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-131', + client_id: '07-tendermint-174', + counterparty: { + client_id: '07-tendermint-52', + connection_id: 'connection-15', + }, + state: 3, + transferChannel: { + channelId: 'channel-91', + portId: 'transfer', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5': { + id: 'connection-2', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-28', + connection_id: 'connection-29', + }, + state: 3, + transferChannel: { + channelId: 'channel-2', + portId: 'transfer', + counterPartyChannelId: 'channel-16', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1': { + id: 'connection-138', + client_id: '07-tendermint-186', + counterparty: { + client_id: '07-tendermint-40', + connection_id: 'connection-27', + }, + state: 3, + transferChannel: { + channelId: 'channel-101', + portId: 'transfer', + counterPartyChannelId: 'channel-25', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-492', + connection_id: 'connection-401', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-235', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-31', + client_id: '07-tendermint-53', + counterparty: { + client_id: '07-tendermint-18', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-24', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dymension_1100-1': { + id: 'connection-189', + client_id: '07-tendermint-194', + counterparty: { + client_id: '07-tendermint-29', + connection_id: 'connection-20', + }, + state: 3, + transferChannel: { + channelId: 'channel-130', + portId: 'transfer', + counterPartyChannelId: 'channel-35', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-24', + client_id: '07-tendermint-42', + counterparty: { + client_id: '07-tendermint-50', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-18', + portId: 'transfer', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-30', + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-126', + connection_id: 'connection-101', + }, + state: 3, + transferChannel: { + channelId: 'channel-23', + portId: 'transfer', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-9', + client_id: '07-tendermint-23', + counterparty: { + client_id: '07-tendermint-108', + connection_id: 'connection-68', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-29', + client_id: '07-tendermint-48', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-7', + }, + state: 3, + transferChannel: { + channelId: 'channel-22', + portId: 'transfer', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-87', + client_id: '07-tendermint-116', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-9', + }, + state: 3, + transferChannel: { + channelId: 'channel-57', + portId: 'transfer', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-192', + client_id: '07-tendermint-199', + counterparty: { + client_id: '07-tendermint-85', + connection_id: 'connection-63', + }, + state: 3, + transferChannel: { + channelId: 'channel-144', + portId: 'transfer', + counterPartyChannelId: 'channel-1551', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-127', + client_id: '07-tendermint-170', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-33', + }, + state: 3, + transferChannel: { + channelId: 'channel-88', + portId: 'transfer', + counterPartyChannelId: 'channel-17', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-1', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1588', + connection_id: 'connection-1244', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pirin-1': { + id: 'connection-193', + client_id: '07-tendermint-201', + counterparty: { + client_id: '07-tendermint-18', + connection_id: 'connection-14', + }, + state: 3, + transferChannel: { + channelId: 'channel-146', + portId: 'transfer', + counterPartyChannelId: 'channel-13995', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'sifchain-1': { + id: 'connection-19', + client_id: '07-tendermint-37', + counterparty: { + client_id: '07-tendermint-171', + connection_id: 'connection-98', + }, + state: 3, + transferChannel: { + channelId: 'channel-15', + portId: 'transfer', + counterPartyChannelId: 'channel-65', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stargaze-1': { + id: 'connection-25', + client_id: '07-tendermint-43', + counterparty: { + client_id: '07-tendermint-177', + connection_id: 'connection-110', + }, + state: 3, + transferChannel: { + channelId: 'channel-19', + portId: 'transfer', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-40', + client_id: '07-tendermint-75', + counterparty: { + client_id: '07-tendermint-37', + connection_id: 'connection-25', + }, + state: 3, + transferChannel: { + channelId: 'channel-37', + portId: 'transfer', + counterPartyChannelId: 'channel-40', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'umee-1': { + id: 'connection-188', + client_id: '07-tendermint-193', + counterparty: { + client_id: '07-tendermint-249', + connection_id: 'connection-213', + }, + state: 3, + transferChannel: { + channelId: 'channel-126', + portId: 'transfer', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + sei: { + bech32Prefix: 'sei', + chainId: 'pacific-1', + stakingTokens: [ + { + denom: 'usei', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'cosmoshub-4': { + id: 'connection-1', + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-1140', + connection_id: 'connection-827', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-584', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kava_2222-10': { + id: 'connection-33', + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-146', + connection_id: 'connection-181', + }, + state: 3, + transferChannel: { + channelId: 'channel-18', + portId: 'transfer', + counterPartyChannelId: 'channel-132', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-13', + client_id: '07-tendermint-22', + counterparty: { + client_id: '07-tendermint-108', + connection_id: 'connection-84', + }, + state: 3, + transferChannel: { + channelId: 'channel-14', + portId: 'transfer', + counterPartyChannelId: 'channel-57', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-157', + client_id: '07-tendermint-123', + counterparty: { + client_id: '07-tendermint-89', + connection_id: 'connection-65', + }, + state: 3, + transferChannel: { + channelId: 'channel-66', + portId: 'transfer', + counterPartyChannelId: 'channel-2016', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-77', + client_id: '07-tendermint-45', + counterparty: { + client_id: '07-tendermint-64', + connection_id: 'connection-61', + }, + state: 3, + transferChannel: { + channelId: 'channel-45', + portId: 'transfer', + counterPartyChannelId: 'channel-39', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-2790', + connection_id: 'connection-2288', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-782', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'planq_7070-2': { + id: 'connection-12', + client_id: '07-tendermint-21', + counterparty: { + client_id: '07-tendermint-545', + connection_id: 'connection-477', + }, + state: 3, + transferChannel: { + channelId: 'channel-13', + portId: 'transfer', + counterPartyChannelId: 'channel-59', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-11', + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-130', + connection_id: 'connection-119', + }, + state: 3, + transferChannel: { + channelId: 'channel-11', + portId: 'transfer', + counterPartyChannelId: 'channel-149', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-153', + client_id: '07-tendermint-109', + counterparty: { + client_id: '07-tendermint-21', + connection_id: 'connection-27', + }, + state: 3, + transferChannel: { + channelId: 'channel-64', + portId: 'transfer', + counterPartyChannelId: 'channel-12', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + shido: { + bech32Prefix: 'shido', + chainId: 'shido_9008-1', + stakingTokens: [ + { + denom: 'shido', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'noble-1': { + id: 'connection-11', + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-106', + connection_id: 'connection-99', + }, + state: 3, + transferChannel: { + channelId: 'channel-5', + portId: 'transfer', + counterPartyChannelId: 'channel-87', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-3198', + connection_id: 'connection-2654', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-73755', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + sifchain: { + bech32Prefix: 'sif', + chainId: 'sifchain-1', + stakingTokens: [ + { + denom: 'rowan', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'osmosis-1': { + id: 'connection-20', + client_id: '07-tendermint-41', + counterparty: { + client_id: '07-tendermint-1484', + connection_id: 'connection-1159', + }, + state: 3, + transferChannel: { + channelId: 'channel-17', + portId: 'transfer', + counterPartyChannelId: 'channel-47', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-98', + client_id: '07-tendermint-171', + counterparty: { + client_id: '07-tendermint-37', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-65', + portId: 'transfer', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + stargaze: { + bech32Prefix: 'stars', + chainId: 'stargaze-1', + stakingTokens: [ + { + denom: 'ustars', + }, + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'carbon-1': { + id: 'connection-158', + client_id: '07-tendermint-224', + counterparty: { + client_id: '07-tendermint-36', + connection_id: 'connection-19', + }, + state: 3, + transferChannel: { + channelId: 'channel-123', + portId: 'transfer', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-296', + client_id: '07-tendermint-359', + counterparty: { + client_id: '07-tendermint-86', + connection_id: 'connection-56', + }, + state: 3, + transferChannel: { + channelId: 'channel-291', + portId: 'transfer', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'core-1': { + id: 'connection-293', + client_id: '07-tendermint-358', + counterparty: { + client_id: '07-tendermint-166', + connection_id: 'connection-207', + }, + state: 3, + transferChannel: { + channelId: 'channel-287', + portId: 'transfer', + counterPartyChannelId: 'channel-197', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-256', + client_id: '07-tendermint-320', + counterparty: { + client_id: '07-tendermint-1188', + connection_id: 'connection-918', + }, + state: 3, + transferChannel: { + channelId: 'channel-239', + portId: 'transfer', + counterPartyChannelId: 'channel-730', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-114', + client_id: '07-tendermint-180', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-27', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-21', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'evmos_9001-2': { + id: 'connection-104', + client_id: '07-tendermint-173', + counterparty: { + client_id: '07-tendermint-41', + connection_id: 'connection-17', + }, + state: 3, + transferChannel: { + channelId: 'channel-46', + portId: 'transfer', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-11', + client_id: '07-tendermint-13', + counterparty: { + client_id: '07-tendermint-44', + connection_id: 'connection-30', + }, + state: 3, + transferChannel: { + channelId: 'channel-5', + portId: 'transfer', + counterPartyChannelId: 'channel-20', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1': { + id: 'connection-111', + client_id: '07-tendermint-178', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-5', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1': { + id: 'connection-307', + client_id: '07-tendermint-366', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-13', + }, + state: 3, + transferChannel: { + channelId: 'channel-391', + portId: 'transfer', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-287', + client_id: '07-tendermint-352', + counterparty: { + client_id: '07-tendermint-118', + connection_id: 'connection-90', + }, + state: 3, + transferChannel: { + channelId: 'channel-269', + portId: 'transfer', + counterPartyChannelId: 'channel-69', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1': { + id: 'connection-211', + client_id: '07-tendermint-283', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-23', + }, + state: 3, + transferChannel: { + channelId: 'channel-191', + portId: 'transfer', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1': { + id: 'connection-214', + client_id: '07-tendermint-287', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-25', + }, + state: 3, + transferChannel: { + channelId: 'channel-204', + portId: 'transfer', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'omniflixhub-1': { + id: 'connection-328', + client_id: '07-tendermint-370', + counterparty: { + client_id: '07-tendermint-74', + connection_id: 'connection-54', + }, + state: 3, + transferChannel: { + channelId: 'channel-398', + portId: 'transfer', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1562', + connection_id: 'connection-1223', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-75', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-110', + client_id: '07-tendermint-177', + counterparty: { + client_id: '07-tendermint-43', + connection_id: 'connection-25', + }, + state: 3, + transferChannel: { + channelId: 'channel-48', + portId: 'transfer', + counterPartyChannelId: 'channel-19', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'stride-1': { + id: 'connection-128', + client_id: '07-tendermint-195', + counterparty: { + client_id: '07-tendermint-30', + connection_id: 'connection-18', + }, + state: 3, + transferChannel: { + channelId: 'channel-106', + portId: 'transfer', + counterPartyChannelId: 'channel-19', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'vota-ash': { + id: 'connection-318', + client_id: '07-tendermint-368', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-30', + }, + state: 3, + transferChannel: { + channelId: 'channel-394', + portId: 'transfer', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + stride: { + bech32Prefix: 'stride', + chainId: 'stride-1', + stakingTokens: [ { denom: 'ustrd', }, - ], - icqEnabled: false, - connections: { - 'agoric-3': { - id: 'connection-118', - client_id: '07-tendermint-129', + ], + icqEnabled: false, + icaEnabled: true, + connections: { + 'agoric-3': { + id: 'connection-118', + client_id: '07-tendermint-129', + counterparty: { + client_id: '07-tendermint-74', + connection_id: 'connection-68', + }, + state: 3, + transferChannel: { + channelId: 'channel-148', + portId: 'transfer', + counterPartyChannelId: 'channel-59', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1': { + id: 'connection-27', + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-12', + }, + state: 3, + transferChannel: { + channelId: 'channel-47', + portId: 'transfer', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + celestia: { + id: 'connection-125', + client_id: '07-tendermint-137', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-4', + }, + state: 3, + transferChannel: { + channelId: 'channel-162', + portId: 'transfer', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4': { + id: 'connection-0', + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-913', + connection_id: 'connection-635', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-391', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-30', + client_id: '07-tendermint-44', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-39', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-29', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1': { + id: 'connection-123', + client_id: '07-tendermint-133', counterparty: { - client_id: '07-tendermint-74', - connection_id: 'connection-68', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, state: 3, transferChannel: { - channelId: 'channel-148', + channelId: 'channel-160', portId: 'transfer', - counterPartyChannelId: 'channel-59', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - celestia: { - id: 'connection-125', - client_id: '07-tendermint-137', + 'dymension_1100-1': { + id: 'connection-131', + client_id: '07-tendermint-140', counterparty: { client_id: '07-tendermint-0', - connection_id: 'connection-4', + connection_id: 'connection-0', }, state: 3, transferChannel: { - channelId: 'channel-162', + channelId: 'channel-197', portId: 'transfer', - counterPartyChannelId: 'channel-4', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'cosmoshub-4': { - id: 'connection-0', - client_id: '07-tendermint-0', + 'evmos_9001-2': { + id: 'connection-7', + client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-913', - connection_id: 'connection-635', + client_id: '07-tendermint-77', + connection_id: 'connection-33', }, state: 3, transferChannel: { - channelId: 'channel-0', + channelId: 'channel-9', portId: 'transfer', - counterPartyChannelId: 'channel-391', + counterPartyChannelId: 'channel-25', counterPartyPortId: 'transfer', ordering: 0, state: 3, version: 'ics20-1', }, }, - 'dydx-mainnet-1': { - id: 'connection-123', - client_id: '07-tendermint-133', + 'haqq_11235-1': { + id: 'connection-143', + client_id: '07-tendermint-143', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-6', + connection_id: 'connection-8', }, state: 3, transferChannel: { - channelId: 'channel-160', + channelId: 'channel-240', portId: 'transfer', - counterPartyChannelId: 'channel-1', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1': { + id: 'connection-3', + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-131', + connection_id: 'connection-103', + }, + state: 3, + transferChannel: { + channelId: 'channel-6', + portId: 'transfer', + counterPartyChannelId: 'channel-89', counterPartyPortId: 'transfer', ordering: 0, state: 3, @@ -1775,6 +7782,24 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, + 'kaiyo-1': { + id: 'connection-5', + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-37', + connection_id: 'connection-31', + }, + state: 3, + transferChannel: { + channelId: 'channel-8', + portId: 'transfer', + counterPartyChannelId: 'channel-32', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'neutron-1': { id: 'connection-113', client_id: '07-tendermint-125', @@ -1811,6 +7836,42 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, + 'pacific-1': { + id: 'connection-119', + client_id: '07-tendermint-130', + counterparty: { + client_id: '07-tendermint-18', + connection_id: 'connection-11', + }, + state: 3, + transferChannel: { + channelId: 'channel-149', + portId: 'transfer', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'pryzm-1': { + id: 'connection-145', + client_id: '07-tendermint-145', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-8', + }, + state: 3, + transferChannel: { + channelId: 'channel-257', + portId: 'transfer', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'secret-4': { id: 'connection-25', client_id: '07-tendermint-37', @@ -1867,6 +7928,141 @@ export default /** @type {const} } */ ({ }, }, }, + terra: { + bech32Prefix: 'terra', + chainId: 'columbus-5', + stakingTokens: [ + { + denom: 'uluna', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'crescent-1': { + id: 'connection-70', + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1': { + id: 'connection-34', + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-63', + connection_id: 'connection-43', + }, + state: 3, + transferChannel: { + channelId: 'channel-20', + portId: 'transfer', + counterPartyChannelId: 'channel-27', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-151', + client_id: '07-tendermint-244', + counterparty: { + client_id: '07-tendermint-122', + connection_id: 'connection-92', + }, + state: 3, + transferChannel: { + channelId: 'channel-87', + portId: + 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc', + counterPartyChannelId: 'channel-114', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1': { + id: 'connection-11', + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-1215', + connection_id: 'connection-1549', + }, + state: 3, + transferChannel: { + channelId: 'channel-1', + portId: 'transfer', + counterPartyChannelId: 'channel-72', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'secret-4': { + id: 'connection-29', + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + state: 3, + transferChannel: { + channelId: 'channel-16', + portId: 'transfer', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, + titan: { + bech32Prefix: 'titan', + chainId: 'titan_18888-1', + stakingTokens: [ + { + denom: 'atkx', + }, + ], + icqEnabled: false, + icaEnabled: false, + connections: { + 'noble-1': { + id: 'connection-0', + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-114', + connection_id: 'connection-109', + }, + state: 3, + transferChannel: { + channelId: 'channel-0', + portId: 'transfer', + counterPartyChannelId: 'channel-99', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + }, + }, umee: { bech32Prefix: 'umee', chainId: 'umee-1', @@ -1876,6 +8072,7 @@ export default /** @type {const} } */ ({ }, ], icqEnabled: false, + icaEnabled: true, connections: { 'agoric-3': { id: 'connection-101', @@ -1895,6 +8092,42 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, + 'core-1': { + id: 'connection-119', + client_id: '07-tendermint-179', + counterparty: { + client_id: '07-tendermint-105', + connection_id: 'connection-144', + }, + state: 3, + transferChannel: { + channelId: 'channel-51', + portId: 'transfer', + counterPartyChannelId: 'channel-81', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1': { + id: 'connection-110', + client_id: '07-tendermint-170', + counterparty: { + client_id: '07-tendermint-56', + connection_id: 'connection-53', + }, + state: 3, + transferChannel: { + channelId: 'channel-49', + portId: 'transfer', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'dydx-mainnet-1': { id: 'connection-208', client_id: '07-tendermint-244', @@ -1913,6 +8146,42 @@ export default /** @type {const} } */ ({ version: 'ics20-1', }, }, + 'injective-1': { + id: 'connection-206', + client_id: '07-tendermint-243', + counterparty: { + client_id: '07-tendermint-229', + connection_id: 'connection-217', + }, + state: 3, + transferChannel: { + channelId: 'channel-116', + portId: 'transfer', + counterPartyChannelId: 'channel-159', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1': { + id: 'connection-195', + client_id: '07-tendermint-234', + counterparty: { + client_id: '07-tendermint-104', + connection_id: 'connection-83', + }, + state: 3, + transferChannel: { + channelId: 'channel-104', + portId: 'transfer', + counterPartyChannelId: 'channel-56', + counterPartyPortId: 'transfer', + ordering: 0, + state: 3, + version: 'ics20-1', + }, + }, 'noble-1': { id: 'connection-210', client_id: '07-tendermint-248', diff --git a/packages/orchestration/src/utils/registry.js b/packages/orchestration/src/utils/registry.js index 25789864729..426caff030f 100644 --- a/packages/orchestration/src/utils/registry.js +++ b/packages/orchestration/src/utils/registry.js @@ -82,8 +82,9 @@ function toConnectionEntry(ibcInfo, name, chainInfo) { * Converts the given chain info to our local config format * * @param {Pick} registry + * @param {(chainName: string) => boolean} icaEnabled */ -export const convertChainInfo = async registry => { +export const convertChainInfo = async (registry, icaEnabled) => { /** @type {Record} */ const chainInfo = {}; @@ -95,6 +96,7 @@ export const convertChainInfo = async registry => { stakingTokens: chain.staking?.staking_tokens, // UNTIL https://github.com/Agoric/agoric-sdk/issues/9326 icqEnabled: chain.chain_name === 'osmosis', + icaEnabled: icaEnabled(chain.chain_name), }; }