From 766a6ba0f49229b474c07eb917970763de9a97fb Mon Sep 17 00:00:00 2001 From: Samuel Siegart Date: Mon, 13 Jan 2025 23:36:25 -0800 Subject: [PATCH] feat(orchestration): add more chain infos for fusdc --- .../scripts/fetch-starship-chain-info.ts | 11 +- .../test/bootstrapTests/orchestration.test.ts | 20 +- .../snapshots/orchestration.test.ts.md | 8701 +++++++++++++++-- .../snapshots/orchestration.test.ts.snap | Bin 14961 -> 58351 bytes .../orchestration/contract-upgrade.test.ts | 10 +- .../orchestration/restart-contracts.test.ts | 10 +- .../snapshots/fast-usdc.contract.test.ts.md | 1141 ++- .../snapshots/fast-usdc.contract.test.ts.snap | Bin 5841 -> 11189 bytes .../orchestration/scripts/fetch-chain-info.ts | 37 +- packages/orchestration/src/cosmos-api.ts | 1 + packages/orchestration/src/exos/chain-hub.js | 32 +- .../orchestration/src/fetched-chain-info.js | 7583 ++++++++++++-- packages/orchestration/src/utils/registry.js | 4 +- .../orchestration/test/chain-info.test.js | 29 +- .../snapshots/send-anywhere.test.ts.md | 3976 +++++++- .../snapshots/send-anywhere.test.ts.snap | Bin 9152 -> 29140 bytes .../snapshots/staking-combinations.test.ts.md | 2 + .../staking-combinations.test.ts.snap | Bin 2749 -> 2757 bytes .../snapshots/unbond.contract.test.ts.md | 3 + .../snapshots/unbond.contract.test.ts.snap | Bin 2328 -> 2343 bytes .../test/snapshots/chain-info.test.js.md | 391 + .../test/snapshots/chain-info.test.js.snap | Bin 1425 -> 4003 bytes 22 files changed, 20099 insertions(+), 1852 deletions(-) diff --git a/multichain-testing/scripts/fetch-starship-chain-info.ts b/multichain-testing/scripts/fetch-starship-chain-info.ts index b51da77c566f..a81721ca8fa0 100755 --- a/multichain-testing/scripts/fetch-starship-chain-info.ts +++ b/multichain-testing/scripts/fetch-starship-chain-info.ts @@ -27,10 +27,13 @@ const ibc: { data: IBCInfo[]; } = await fetch(`${BASE_URL}ibc`).then(r => r.json()); -const chainInfo = await convertChainInfo({ - chains, - ibcData: ibc.data, -}); +const chainInfo = await convertChainInfo( + { + chains, + ibcData: ibc.data, + }, + () => true, +); const record = JSON.stringify(chainInfo, null, 2); const src = `/** @file Generated by fetch-starship-chain-info.ts */\nexport default /** @type {const} */ (${record});`; diff --git a/packages/boot/test/bootstrapTests/orchestration.test.ts b/packages/boot/test/bootstrapTests/orchestration.test.ts index e2e491228909..3ea58c2f425d 100644 --- a/packages/boot/test/bootstrapTests/orchestration.test.ts +++ b/packages/boot/test/bootstrapTests/orchestration.test.ts @@ -331,7 +331,15 @@ test.serial('basic-flows', async t => { '@agoric/builders/scripts/orchestration/init-basic-flows.js', [ '--chainInfo', - JSON.stringify(withChainCapabilities(fetchedChainInfo)), + JSON.stringify( + withChainCapabilities({ + agoric: fetchedChainInfo.agoric, + osmosis: fetchedChainInfo.osmosis, + dydx: fetchedChainInfo.dydx, + noble: fetchedChainInfo.noble, + cosmoshub: fetchedChainInfo.cosmoshub, + }), + ), '--assetInfo', JSON.stringify([ [ @@ -556,7 +564,15 @@ test.serial('basic-flows - portfolio holder', async t => { '@agoric/builders/scripts/orchestration/init-basic-flows.js', [ '--chainInfo', - JSON.stringify(withChainCapabilities(fetchedChainInfo)), + JSON.stringify( + withChainCapabilities({ + agoric: fetchedChainInfo.agoric, + osmosis: fetchedChainInfo.osmosis, + dydx: fetchedChainInfo.dydx, + noble: fetchedChainInfo.noble, + cosmoshub: fetchedChainInfo.cosmoshub, + }), + ), '--assetInfo', JSON.stringify([ [ diff --git a/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.md b/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.md index bcc520982e9d..497eca60ce08 100644 --- a/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.md +++ b/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.md @@ -17,6 +17,7 @@ Generated by [AVA](https://avajs.dev). { bech32Prefix: 'agoric', chainId: 'agoric-3', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -25,11 +26,54 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.archway', + { + bech32Prefix: 'archway', + chainId: 'archway-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aarch', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.beezee', + { + bech32Prefix: 'bze', + chainId: 'beezee-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ubze', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.carbon', + { + bech32Prefix: 'swth', + chainId: 'carbon-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'swth', + }, + ], + }, + ], [ 'published.agoricNames.chain.celestia', { bech32Prefix: 'celestia', chainId: 'celestia', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -38,11 +82,26 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.coreum', + { + bech32Prefix: 'core', + chainId: 'coreum-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ucore', + }, + ], + }, + ], [ 'published.agoricNames.chain.cosmoshub', { bech32Prefix: 'cosmos', chainId: 'cosmoshub-4', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -51,11 +110,40 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.crescent', + { + bech32Prefix: 'cre', + chainId: 'crescent-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ucre', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.doravota', + { + bech32Prefix: 'dora', + chainId: 'vota-ash', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'peaka', + }, + ], + }, + ], [ 'published.agoricNames.chain.dydx', { bech32Prefix: 'dydx', chainId: 'dydx-mainnet-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -64,11 +152,82 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.dymension', + { + bech32Prefix: 'dym', + chainId: 'dymension_1100-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'adym', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.empowerchain', + { + bech32Prefix: 'empower', + chainId: 'empowerchain-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'umpwr', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.evmos', + { + bech32Prefix: 'evmos', + chainId: 'evmos_9001-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aevmos', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.haqq', + { + bech32Prefix: 'haqq', + chainId: 'haqq_11235-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aISLM', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.injective', + { + bech32Prefix: 'inj', + chainId: 'injective-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'inj', + }, + ], + }, + ], [ 'published.agoricNames.chain.juno', { bech32Prefix: 'juno', chainId: 'juno-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -77,11 +236,68 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.kava', + { + bech32Prefix: 'kava', + chainId: 'kava_2222-10', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ukava', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.kujira', + { + bech32Prefix: 'kujira', + chainId: 'kaiyo-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ukuji', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.lava', + { + bech32Prefix: 'lava@', + chainId: 'lava-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ulava', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.migaloo', + { + bech32Prefix: 'migaloo', + chainId: 'migaloo-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uwhale', + }, + ], + }, + ], [ 'published.agoricNames.chain.neutron', { bech32Prefix: 'neutron', chainId: 'neutron-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -90,105 +306,7176 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'published.agoricNames.chain.nibiru', + { + bech32Prefix: 'nibi', + chainId: 'cataclysm-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'unibi', + }, + ], + }, + ], [ 'published.agoricNames.chain.noble', { bech32Prefix: 'noble', chainId: 'noble-1', + icaEnabled: true, + icqEnabled: false, + }, + ], + [ + 'published.agoricNames.chain.nolus', + { + bech32Prefix: 'nolus', + chainId: 'pirin-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'unls', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.omniflixhub', + { + bech32Prefix: 'omniflix', + chainId: 'omniflixhub-1', + icaEnabled: true, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uflix', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.osmosis', + { + bech32Prefix: 'osmo', + chainId: 'osmosis-1', + icaEnabled: true, + icqEnabled: true, + stakingTokens: [ + { + denom: 'uosmo', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.persistence', + { + bech32Prefix: 'persistence', + chainId: 'core-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uxprt', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.planq', + { + bech32Prefix: 'plq', + chainId: 'planq_7070-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aplanq', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.provenance', + { + bech32Prefix: 'pb', + chainId: 'pio-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'nhash', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.pryzm', + { + bech32Prefix: 'pryzm', + chainId: 'pryzm-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'upryzm', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.quicksilver', + { + bech32Prefix: 'quick', + chainId: 'quicksilver-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uqck', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.secretnetwork', + { + bech32Prefix: 'secret', + chainId: 'secret-4', + icaEnabled: true, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uscrt', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.sei', + { + bech32Prefix: 'sei', + chainId: 'pacific-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'usei', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.shido', + { + bech32Prefix: 'shido', + chainId: 'shido_9008-1', + icaEnabled: false, icqEnabled: false, + stakingTokens: [ + { + denom: 'shido', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.sifchain', + { + bech32Prefix: 'sif', + chainId: 'sifchain-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'rowan', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.stargaze', + { + bech32Prefix: 'stars', + chainId: 'stargaze-1', + icaEnabled: true, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ustars', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.stride', + { + bech32Prefix: 'stride', + chainId: 'stride-1', + icaEnabled: true, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ustrd', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.terra', + { + bech32Prefix: 'terra', + chainId: 'columbus-5', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uluna', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.titan', + { + bech32Prefix: 'titan', + chainId: 'titan_18888-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'atkx', + }, + ], + }, + ], + [ + 'published.agoricNames.chain.umee', + { + bech32Prefix: 'umee', + chainId: 'umee-1', + icaEnabled: true, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uumee', + }, + ], + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_core-1', + { + client_id: '07-tendermint-93', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-210', + }, + id: 'connection-91', + state: 3, + transferChannel: { + channelId: 'channel-72', + counterPartyChannelId: 'channel-202', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_cosmoshub-4', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-927', + connection_id: 'connection-649', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-405', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_crescent-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_evmos__9001-2', + { + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-70', + }, + id: 'connection-66', + state: 3, + transferChannel: { + channelId: 'channel-57', + counterPartyChannelId: 'channel-85', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_kaiyo-1', + { + client_id: '07-tendermint-20', + counterparty: { + client_id: '07-tendermint-94', + connection_id: 'connection-64', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_kava__2222-10', + { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-147', + connection_id: 'connection-182', + }, + id: 'connection-73', + state: 3, + transferChannel: { + channelId: 'channel-63', + counterPartyChannelId: 'channel-133', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_neutron-1', + { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-108', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-5789', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_noble-1', + { + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-32', + connection_id: 'connection-40', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-21', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_omniflixhub-1', + { + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-47', + connection_id: 'connection-40', + }, + id: 'connection-67', + state: 3, + transferChannel: { + channelId: 'channel-58', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_osmosis-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2109', + connection_id: 'connection-1649', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-320', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_secret-4', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-111', + connection_id: 'connection-80', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_stride-1', + { + client_id: '07-tendermint-74', + counterparty: { + client_id: '07-tendermint-129', + connection_id: 'connection-118', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-59', + counterPartyChannelId: 'channel-148', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_umee-1', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-152', + connection_id: 'connection-101', + }, + id: 'connection-18', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_dymension__1100-1', + { + client_id: '07-tendermint-91', + counterparty: { + client_id: '07-tendermint-39', + connection_id: 'connection-30', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-123', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_migaloo-1', + { + client_id: '07-tendermint-119', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-108', + }, + id: 'connection-114', + state: 3, + transferChannel: { + channelId: 'channel-184', + counterPartyChannelId: 'channel-141', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_neutron-1', + { + client_id: '07-tendermint-51', + counterparty: { + client_id: '07-tendermint-62', + connection_id: 'connection-43', + }, + id: 'connection-58', + state: 3, + transferChannel: { + channelId: 'channel-61', + counterPartyChannelId: 'channel-41', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_planq__7070-2', + { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-561', + connection_id: 'connection-486', + }, + id: 'connection-83', + state: 3, + transferChannel: { + channelId: 'channel-112', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_vota-ash', + { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-22', + connection_id: 'connection-28', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_noble-1', + { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-95', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_omniflixhub-1', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-75', + connection_id: 'connection-55', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-50', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_osmosis-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-2154', + connection_id: 'connection-1672', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-340', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_cosmoshub-4', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-765', + connection_id: 'connection-554', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-342', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_evmos__9001-2', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-29', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_kaiyo-1', + { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-60', + connection_id: 'connection-40', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-1808', + connection_id: 'connection-1412', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_stargaze-1', + { + client_id: '07-tendermint-36', + counterparty: { + client_id: '07-tendermint-224', + connection_id: 'connection-158', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_stride-1', + { + client_id: '07-tendermint-13', + counterparty: { + client_id: '07-tendermint-40', + connection_id: 'connection-27', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-47', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_dymension__1100-1', + { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-5', + }, + id: 'connection-52', + state: 3, + transferChannel: { + channelId: 'channel-27', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_evmos__9001-2', + { + client_id: '07-tendermint-79', + counterparty: { + client_id: '07-tendermint-134', + connection_id: 'connection-80', + }, + id: 'connection-49', + state: 3, + transferChannel: { + channelId: 'channel-26', + counterPartyChannelId: 'channel-106', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_injective-1', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-226', + connection_id: 'connection-210', + }, + id: 'connection-6', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-152', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_kava__2222-10', + { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-198', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-140', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_neutron-1', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-36', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-35', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_osmosis-1', + { + client_id: '07-tendermint-10', + counterparty: { + client_id: '07-tendermint-3012', + connection_id: 'connection-2503', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-6994', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_pryzm-1', + { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-57', + state: 3, + transferChannel: { + channelId: 'channel-34', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_secret-4', + { + client_id: '07-tendermint-52', + counterparty: { + client_id: '07-tendermint-174', + connection_id: 'connection-131', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-14', + counterPartyChannelId: 'channel-91', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_stargaze-1', + { + client_id: '07-tendermint-86', + counterparty: { + client_id: '07-tendermint-359', + connection_id: 'connection-296', + }, + id: 'connection-56', + state: 3, + transferChannel: { + channelId: 'channel-33', + counterPartyChannelId: 'channel-291', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_stride-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-137', + connection_id: 'connection-125', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-162', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_crescent-1', + { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-70', + state: 3, + transferChannel: { + channelId: 'channel-49', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_juno-1', + { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-63', + connection_id: 'connection-43', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-27', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_migaloo-1', + { + client_id: '07-tendermint-244', + counterparty: { + client_id: '07-tendermint-122', + connection_id: 'connection-92', + }, + id: 'connection-151', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-114', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_osmosis-1', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-1215', + connection_id: 'connection-1549', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-72', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_secret-4', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-16', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_crescent-1', + { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-41', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-68', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_dydx-mainnet-1', + { + client_id: '07-tendermint-159', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-8', + }, + id: 'connection-197', + state: 3, + transferChannel: { + channelId: 'channel-131', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_injective-1', + { + client_id: '07-tendermint-57', + counterparty: { + client_id: '07-tendermint-110', + connection_id: 'connection-91', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-41', + counterPartyChannelId: 'channel-82', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_juno-1', + { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-89', + connection_id: 'connection-51', + }, + id: 'connection-48', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_kaiyo-1', + { + client_id: '07-tendermint-162', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-130', + }, + id: 'connection-200', + state: 3, + transferChannel: { + channelId: 'channel-152', + counterPartyChannelId: 'channel-158', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_kava__2222-10', + { + client_id: '07-tendermint-156', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-189', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-129', + counterPartyChannelId: 'channel-134', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_neutron-1', + { + client_id: '07-tendermint-161', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-52', + }, + id: 'connection-199', + state: 3, + transferChannel: { + channelId: 'channel-136', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_noble-1', + { + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-61', + connection_id: 'connection-59', + }, + id: 'connection-198', + state: 3, + transferChannel: { + channelId: 'channel-132', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_osmosis-1', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-4', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_stargaze-1', + { + client_id: '07-tendermint-166', + counterparty: { + client_id: '07-tendermint-358', + connection_id: 'connection-293', + }, + id: 'connection-207', + state: 3, + transferChannel: { + channelId: 'channel-197', + counterPartyChannelId: 'channel-287', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_umee-1', + { + client_id: '07-tendermint-105', + counterparty: { + client_id: '07-tendermint-179', + connection_id: 'connection-119', + }, + id: 'connection-144', + state: 3, + transferChannel: { + channelId: 'channel-81', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_cosmoshub-4', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-1162', + connection_id: 'connection-884', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-660', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_dydx-mainnet-1', + { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-20', + }, + id: 'connection-26', + state: 3, + transferChannel: { + channelId: 'channel-24', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_evmos__9001-2', + { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-117', + connection_id: 'connection-71', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-87', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_kaiyo-1', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-163', + connection_id: 'connection-126', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-17', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_kava__2222-10', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-200', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-142', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_noble-1', + { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-71', + connection_id: 'connection-72', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-19', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2929', + connection_id: 'connection-2426', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-2188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_secret-4', + { + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-186', + connection_id: 'connection-138', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-25', + counterPartyChannelId: 'channel-101', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_vota-ash', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-4', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_crescent-1', + { + client_id: '07-tendermint-724', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-538', + state: 3, + transferChannel: { + channelId: 'channel-326', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_dymension__1100-1', + { + client_id: '07-tendermint-1205', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-933', + state: 3, + transferChannel: { + channelId: 'channel-794', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_empowerchain-1', + { + client_id: '07-tendermint-1151', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-872', + state: 3, + transferChannel: { + channelId: 'channel-621', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_evmos__9001-2', + { + client_id: '07-tendermint-620', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-480', + state: 3, + transferChannel: { + channelId: 'channel-292', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_haqq__11235-1', + { + client_id: '07-tendermint-1153', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + id: 'connection-874', + state: 3, + transferChannel: { + channelId: 'channel-632', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_injective-1', + { + client_id: '07-tendermint-470', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-2', + }, + id: 'connection-388', + state: 3, + transferChannel: { + channelId: 'channel-220', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_juno-1', + { + client_id: '07-tendermint-439', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-372', + state: 3, + transferChannel: { + channelId: 'channel-207', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_kaiyo-1', + { + client_id: '07-tendermint-769', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-555', + state: 3, + transferChannel: { + channelId: 'channel-343', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_kava__2222-10', + { + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-460', + state: 3, + transferChannel: { + channelId: 'channel-277', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_lava-mainnet-1', + { + client_id: '07-tendermint-1318', + counterparty: { + client_id: '07-tendermint-7', + connection_id: 'connection-12', + }, + id: 'connection-1050', + state: 3, + transferChannel: { + channelId: 'channel-969', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_neutron-1', + { + client_id: '07-tendermint-1119', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-809', + state: 3, + transferChannel: { + channelId: 'channel-569', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_noble-1', + { + client_id: '07-tendermint-1116', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-12', + }, + id: 'connection-790', + state: 3, + transferChannel: { + channelId: 'channel-536', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_omniflixhub-1', + { + client_id: '07-tendermint-656', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-19', + }, + id: 'connection-501', + state: 3, + transferChannel: { + channelId: 'channel-306', + counterPartyChannelId: 'channel-12', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_osmosis-1', + { + client_id: '07-tendermint-259', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-257', + state: 3, + transferChannel: { + channelId: 'channel-141', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_pacific-1', + { + client_id: '07-tendermint-1140', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-827', + state: 3, + transferChannel: { + channelId: 'channel-584', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_planq__7070-2', + { + client_id: '07-tendermint-994', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-3', + }, + id: 'connection-693', + state: 3, + transferChannel: { + channelId: 'channel-446', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_pryzm-1', + { + client_id: '07-tendermint-1304', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-1038', + state: 3, + transferChannel: { + channelId: 'channel-859', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_secret-4', + { + client_id: '07-tendermint-492', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-401', + state: 3, + transferChannel: { + channelId: 'channel-235', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_stargaze-1', + { + client_id: '07-tendermint-1188', + counterparty: { + client_id: '07-tendermint-320', + connection_id: 'connection-256', + }, + id: 'connection-918', + state: 3, + transferChannel: { + channelId: 'channel-730', + counterPartyChannelId: 'channel-239', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_stride-1', + { + client_id: '07-tendermint-913', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-635', + state: 3, + transferChannel: { + channelId: 'channel-391', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_vota-ash', + { + client_id: '07-tendermint-1191', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-8', + }, + id: 'connection-920', + state: 3, + transferChannel: { + channelId: 'channel-750', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_evmos__9001-2', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-15', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_injective-1', + { + client_id: '07-tendermint-26', + counterparty: { + client_id: '07-tendermint-132', + connection_id: 'connection-105', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-90', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_juno-1', + { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-81', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_kaiyo-1', + { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-105', + connection_id: 'connection-75', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-42', + counterPartyChannelId: 'channel-67', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_noble-1', + { + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-38', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_osmosis-1', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-2083', + connection_id: 'connection-1624', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-297', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_secret-4', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-53', + connection_id: 'connection-31', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_stargaze-1', + { + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-180', + connection_id: 'connection-114', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-21', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_stride-1', + { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-44', + connection_id: 'connection-30', + }, + id: 'connection-39', + state: 3, + transferChannel: { + channelId: 'channel-29', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_umee-1', + { + client_id: '07-tendermint-56', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-110', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-36', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_evmos__9001-2', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-135', + connection_id: 'connection-81', + }, + id: 'connection-23', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-107', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_kaiyo-1', + { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-122', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_kava__2222-10', + { + client_id: '07-tendermint-7', + counterparty: { + client_id: '07-tendermint-154', + connection_id: 'connection-195', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-137', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_neutron-1', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-72', + connection_id: 'connection-51', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_noble-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-59', + connection_id: 'connection-57', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-3009', + connection_id: 'connection-2500', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-6787', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_pryzm-1', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-9', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-71', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_stride-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-133', + connection_id: 'connection-123', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_umee-1', + { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-244', + connection_id: 'connection-208', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_vota-ash', + { + client_id: '07-tendermint-15', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-10', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_evmos__9001-2', + { + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-85', + }, + id: 'connection-22', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-109', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_kaiyo-1', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-169', + connection_id: 'connection-132', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_kava__2222-10', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-162', + connection_id: 'connection-203', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_neutron-1', + { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-61', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-675', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_noble-1', + { + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-79', + connection_id: 'connection-80', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_osmosis-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-3086', + connection_id: 'connection-2566', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-19774', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_secret-4', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-194', + connection_id: 'connection-189', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-35', + counterPartyChannelId: 'channel-130', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_stride-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-140', + connection_id: 'connection-131', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-197', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.empowerchain-1_osmosis-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2848', + connection_id: 'connection-2360', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-1411', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_injective-1', + { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-92', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-83', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_kaiyo-1', + { + client_id: '07-tendermint-53', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-19', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_kava__2222-10', + { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-157', + }, + id: 'connection-67', + state: 3, + transferChannel: { + channelId: 'channel-83', + counterPartyChannelId: 'channel-117', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_lava-mainnet-1', + { + client_id: '07-tendermint-142', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-14', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-117', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_noble-1', + { + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-19', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-64', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_osmosis-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1840', + connection_id: 'connection-1440', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_secret-4', + { + client_id: '07-tendermint-50', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-24', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_stargaze-1', + { + client_id: '07-tendermint-41', + counterparty: { + client_id: '07-tendermint-173', + connection_id: 'connection-104', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.evmos__9001-2_stride-1', + { + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-7', + }, + id: 'connection-33', + state: 3, + transferChannel: { + channelId: 'channel-25', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.haqq__11235-1_kava__2222-10', + { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-149', + connection_id: 'connection-193', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-135', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.haqq__11235-1_noble-1', + { + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-58', + connection_id: 'connection-56', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-32', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.haqq__11235-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2871', + connection_id: 'connection-2388', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-1575', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.haqq__11235-1_stride-1', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-143', + connection_id: 'connection-143', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-240', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_kaiyo-1', + { + client_id: '07-tendermint-144', + counterparty: { + client_id: '07-tendermint-77', + connection_id: 'connection-53', + }, + id: 'connection-116', + state: 3, + transferChannel: { + channelId: 'channel-98', + counterPartyChannelId: 'channel-54', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_kava__2222-10', + { + client_id: '07-tendermint-205', + counterparty: { + client_id: '07-tendermint-130', + connection_id: 'connection-166', + }, + id: 'connection-189', + state: 3, + transferChannel: { + channelId: 'channel-143', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_migaloo-1', + { + client_id: '07-tendermint-154', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-8', + }, + id: 'connection-123', + state: 3, + transferChannel: { + channelId: 'channel-102', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_neutron-1', + { + client_id: '07-tendermint-233', + counterparty: { + client_id: '07-tendermint-78', + connection_id: 'connection-58', + }, + id: 'connection-220', + state: 3, + transferChannel: { + channelId: 'channel-177', + counterPartyChannelId: 'channel-60', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_noble-1', + { + client_id: '07-tendermint-212', + counterparty: { + client_id: '07-tendermint-57', + connection_id: 'connection-55', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-148', + counterPartyChannelId: 'channel-31', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_osmosis-1', + { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-1703', + connection_id: 'connection-1298', + }, + id: 'connection-14', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_pryzm-1', + { + client_id: '07-tendermint-267', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-268', + state: 3, + transferChannel: { + channelId: 'channel-284', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_secret-4', + { + client_id: '07-tendermint-126', + counterparty: { + client_id: '07-tendermint-49', + connection_id: 'connection-30', + }, + id: 'connection-101', + state: 3, + transferChannel: { + channelId: 'channel-88', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_stride-1', + { + client_id: '07-tendermint-131', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + id: 'connection-103', + state: 3, + transferChannel: { + channelId: 'channel-89', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_umee-1', + { + client_id: '07-tendermint-229', + counterparty: { + client_id: '07-tendermint-243', + connection_id: 'connection-206', + }, + id: 'connection-217', + state: 3, + transferChannel: { + channelId: 'channel-159', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.injective-1_vota-ash', + { + client_id: '07-tendermint-245', + counterparty: { + client_id: '07-tendermint-15', + connection_id: 'connection-9', + }, + id: 'connection-239', + state: 3, + transferChannel: { + channelId: 'channel-182', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_kaiyo-1', + { + client_id: '07-tendermint-198', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + id: 'connection-140', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_migaloo-1', + { + client_id: '07-tendermint-310', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-282', + state: 3, + transferChannel: { + channelId: 'channel-210', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_neutron-1', + { + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-97', + connection_id: 'connection-71', + }, + id: 'connection-524', + state: 3, + transferChannel: { + channelId: 'channel-548', + counterPartyChannelId: 'channel-4328', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_noble-1', + { + client_id: '07-tendermint-334', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-8', + }, + id: 'connection-322', + state: 3, + transferChannel: { + channelId: 'channel-224', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_osmosis-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1457', + connection_id: 'connection-1142', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_secret-4', + { + client_id: '07-tendermint-108', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-9', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-48', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_stargaze-1', + { + client_id: '07-tendermint-44', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-11', + }, + id: 'connection-30', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.juno-1_stride-1', + { + client_id: '07-tendermint-263', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-19', + }, + id: 'connection-205', + state: 3, + transferChannel: { + channelId: 'channel-139', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_kava__2222-10', + { + client_id: '07-tendermint-140', + counterparty: { + client_id: '07-tendermint-119', + connection_id: 'connection-156', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-95', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_migaloo-1', + { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-19', + }, + id: 'connection-59', + state: 3, + transferChannel: { + channelId: 'channel-58', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_neutron-1', + { + client_id: '07-tendermint-112', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + id: 'connection-82', + state: 3, + transferChannel: { + channelId: 'channel-75', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_noble-1', + { + client_id: '07-tendermint-95', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-4', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2017', + connection_id: 'connection-1559', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-259', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_planq__7070-2', + { + client_id: '07-tendermint-70', + counterparty: { + client_id: '07-tendermint-144', + connection_id: 'connection-151', + }, + id: 'connection-46', + state: 3, + transferChannel: { + channelId: 'channel-51', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_secret-4', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-29', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-22', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_stargaze-1', + { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-178', + connection_id: 'connection-111', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kaiyo-1_stride-1', + { + client_id: '07-tendermint-37', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + id: 'connection-31', + state: 3, + transferChannel: { + channelId: 'channel-32', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kava__2222-10_migaloo-1', + { + client_id: '07-tendermint-125', + counterparty: { + client_id: '07-tendermint-90', + connection_id: 'connection-73', + }, + id: 'connection-162', + state: 3, + transferChannel: { + channelId: 'channel-120', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kava__2222-10_neutron-1', + { + client_id: '07-tendermint-151', + counterparty: { + client_id: '07-tendermint-54', + connection_id: 'connection-37', + }, + id: 'connection-194', + state: 3, + transferChannel: { + channelId: 'channel-136', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kava__2222-10_noble-1', + { + client_id: '07-tendermint-172', + counterparty: { + client_id: '07-tendermint-107', + connection_id: 'connection-102', + }, + id: 'connection-214', + state: 3, + transferChannel: { + channelId: 'channel-151', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kava__2222-10_osmosis-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1735', + connection_id: 'connection-1328', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-143', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.kava__2222-10_pacific-1', + { + client_id: '07-tendermint-146', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-33', + }, + id: 'connection-181', + state: 3, + transferChannel: { + channelId: 'channel-132', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.lava-mainnet-1_noble-1', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-115', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-105', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.lava-mainnet-1_osmosis-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-3210', + connection_id: 'connection-2668', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-76971', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.lava-mainnet-1_stargaze-1', + { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-366', + connection_id: 'connection-307', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-391', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_noble-1', + { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-28', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-60', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2669', + connection_id: 'connection-2171', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-642', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_pacific-1', + { + client_id: '07-tendermint-108', + counterparty: { + client_id: '07-tendermint-22', + connection_id: 'connection-13', + }, + id: 'connection-84', + state: 3, + transferChannel: { + channelId: 'channel-57', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_secret-4', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-87', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-57', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_stargaze-1', + { + client_id: '07-tendermint-118', + counterparty: { + client_id: '07-tendermint-352', + connection_id: 'connection-287', + }, + id: 'connection-90', + state: 3, + transferChannel: { + channelId: 'channel-69', + counterPartyChannelId: 'channel-269', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.migaloo-1_umee-1', + { + client_id: '07-tendermint-104', + counterparty: { + client_id: '07-tendermint-234', + connection_id: 'connection-195', + }, + id: 'connection-83', + state: 3, + transferChannel: { + channelId: 'channel-56', + counterPartyChannelId: 'channel-104', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_noble-1', + { + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-34', + }, + id: 'connection-31', + state: 3, + transferChannel: { + channelId: 'channel-30', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_osmosis-1', + { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-2823', + connection_id: 'connection-2338', + }, + id: 'connection-18', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-874', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_pacific-1', + { + client_id: '07-tendermint-89', + counterparty: { + client_id: '07-tendermint-123', + connection_id: 'connection-157', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-2016', + counterPartyChannelId: 'channel-66', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_pirin-1', + { + client_id: '07-tendermint-71', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-11', + }, + id: 'connection-50', + state: 3, + transferChannel: { + channelId: 'channel-44', + counterPartyChannelId: 'channel-3839', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_pryzm-1', + { + client_id: '07-tendermint-98', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-6', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-4329', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_secret-4', + { + client_id: '07-tendermint-85', + counterparty: { + client_id: '07-tendermint-199', + connection_id: 'connection-192', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-1551', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_stargaze-1', + { + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-283', + connection_id: 'connection-211', + }, + id: 'connection-23', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-191', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.neutron-1_stride-1', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-125', + connection_id: 'connection-113', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_omniflixhub-1', + { + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-51', + connection_id: 'connection-49', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-44', + counterPartyChannelId: 'channel-38', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_osmosis-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-2704', + connection_id: 'connection-2241', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-750', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_pacific-1', + { + client_id: '07-tendermint-64', + counterparty: { + client_id: '07-tendermint-45', + connection_id: 'connection-77', + }, + id: 'connection-61', + state: 3, + transferChannel: { + channelId: 'channel-39', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_pio-mainnet-1', + { + client_id: '07-tendermint-30', + counterparty: { + client_id: '07-tendermint-36', + connection_id: 'connection-13', + }, + id: 'connection-37', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_planq__7070-2', + { + client_id: '07-tendermint-103', + counterparty: { + client_id: '07-tendermint-567', + connection_id: 'connection-490', + }, + id: 'connection-95', + state: 3, + transferChannel: { + channelId: 'channel-82', + counterPartyChannelId: 'channel-63', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_pryzm-1', + { + client_id: '07-tendermint-100', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + id: 'connection-92', + state: 3, + transferChannel: { + channelId: 'channel-79', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_secret-4', + { + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-127', + }, + id: 'connection-33', + state: 3, + transferChannel: { + channelId: 'channel-17', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_shido__9008-1', + { + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-11', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_stargaze-1', + { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-287', + connection_id: 'connection-214', + }, + id: 'connection-25', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_titan__18888-1', + { + client_id: '07-tendermint-114', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-109', + state: 3, + transferChannel: { + channelId: 'channel-99', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_umee-1', + { + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-248', + connection_id: 'connection-210', + }, + id: 'connection-74', + state: 3, + transferChannel: { + channelId: 'channel-51', + counterPartyChannelId: 'channel-120', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.noble-1_vota-ash', + { + client_id: '07-tendermint-111', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-29', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-94', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.omniflixhub-1_osmosis-1', + { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-1829', + connection_id: 'connection-1431', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-199', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.omniflixhub-1_stargaze-1', + { + client_id: '07-tendermint-74', + counterparty: { + client_id: '07-tendermint-370', + connection_id: 'connection-328', + }, + id: 'connection-54', + state: 3, + transferChannel: { + channelId: 'channel-49', + counterPartyChannelId: 'channel-398', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_pacific-1', + { + client_id: '07-tendermint-2790', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-0', + }, + id: 'connection-2288', + state: 3, + transferChannel: { + channelId: 'channel-782', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_pio-mainnet-1', + { + client_id: '07-tendermint-1899', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-9', + }, + id: 'connection-1472', + state: 3, + transferChannel: { + channelId: 'channel-222', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_pirin-1', + { + client_id: '07-tendermint-2791', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-2289', + state: 3, + transferChannel: { + channelId: 'channel-783', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_planq__7070-2', + { + client_id: '07-tendermint-2318', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-1815', + state: 3, + transferChannel: { + channelId: 'channel-492', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_pryzm-1', + { + client_id: '07-tendermint-3206', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + id: 'connection-2663', + state: 3, + transferChannel: { + channelId: 'channel-75755', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_quicksilver-2', + { + client_id: '07-tendermint-2400', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-2', + }, + id: 'connection-1889', + state: 3, + transferChannel: { + channelId: 'channel-522', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_secret-4', + { + client_id: '07-tendermint-1588', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + id: 'connection-1244', + state: 3, + transferChannel: { + channelId: 'channel-88', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_shido__9008-1', + { + client_id: '07-tendermint-3198', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-2654', + state: 3, + transferChannel: { + channelId: 'channel-73755', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_sifchain-1', + { + client_id: '07-tendermint-1484', + counterparty: { + client_id: '07-tendermint-41', + connection_id: 'connection-20', + }, + id: 'connection-1159', + state: 3, + transferChannel: { + channelId: 'channel-47', + counterPartyChannelId: 'channel-17', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_stargaze-1', + { + client_id: '07-tendermint-1562', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-1223', + state: 3, + transferChannel: { + channelId: 'channel-75', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_stride-1', + { + client_id: '07-tendermint-2119', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-2', + }, + id: 'connection-1657', + state: 3, + transferChannel: { + channelId: 'channel-326', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_umee-1', + { + client_id: '07-tendermint-1805', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-0', + }, + id: 'connection-1410', + state: 3, + transferChannel: { + channelId: 'channel-184', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.osmosis-1_vota-ash', + { + client_id: '07-tendermint-2959', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-1', + }, + id: 'connection-2454', + state: 3, + transferChannel: { + channelId: 'channel-2694', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pacific-1_planq__7070-2', + { + client_id: '07-tendermint-21', + counterparty: { + client_id: '07-tendermint-545', + connection_id: 'connection-477', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-59', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pacific-1_stride-1', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-130', + connection_id: 'connection-119', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-149', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pacific-1_vota-ash', + { + client_id: '07-tendermint-109', + counterparty: { + client_id: '07-tendermint-21', + connection_id: 'connection-27', + }, + id: 'connection-153', + state: 3, + transferChannel: { + channelId: 'channel-64', + counterPartyChannelId: 'channel-12', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pirin-1_secret-4', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-201', + connection_id: 'connection-193', + }, + id: 'connection-14', + state: 3, + transferChannel: { + channelId: 'channel-13995', + counterPartyChannelId: 'channel-146', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pirin-1_vota-ash', + { + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-5', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-4092', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.pryzm-1_stride-1', + { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-145', + connection_id: 'connection-145', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-257', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.secret-4_sifchain-1', + { + client_id: '07-tendermint-37', + counterparty: { + client_id: '07-tendermint-171', + connection_id: 'connection-98', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-65', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.secret-4_stargaze-1', + { + client_id: '07-tendermint-43', + counterparty: { + client_id: '07-tendermint-177', + connection_id: 'connection-110', + }, + id: 'connection-25', + state: 3, + transferChannel: { + channelId: 'channel-19', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.secret-4_stride-1', + { + client_id: '07-tendermint-75', + counterparty: { + client_id: '07-tendermint-37', + connection_id: 'connection-25', + }, + id: 'connection-40', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-40', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.secret-4_umee-1', + { + client_id: '07-tendermint-193', + counterparty: { + client_id: '07-tendermint-249', + connection_id: 'connection-213', + }, + id: 'connection-188', + state: 3, + transferChannel: { + channelId: 'channel-126', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.stargaze-1_stride-1', + { + client_id: '07-tendermint-195', + counterparty: { + client_id: '07-tendermint-30', + connection_id: 'connection-18', + }, + id: 'connection-128', + state: 3, + transferChannel: { + channelId: 'channel-106', + counterPartyChannelId: 'channel-19', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.stargaze-1_vota-ash', + { + client_id: '07-tendermint-368', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-30', + }, + id: 'connection-318', + state: 3, + transferChannel: { + channelId: 'channel-394', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.stride-1_umee-1', + { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-64', + connection_id: 'connection-45', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-29', + counterPartyChannelId: 'channel-34', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + ] + +> Chain connections for Orchestration +> The example below illustrates the schema of the data published there. +> +> See also board marshalling conventions (_to appear_). + + [ + [ + 'published.agoricNames.chainConnection.agoric-3_core-1', + { + client_id: '07-tendermint-93', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-210', + }, + id: 'connection-91', + state: 3, + transferChannel: { + channelId: 'channel-72', + counterPartyChannelId: 'channel-202', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_cosmoshub-4', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-927', + connection_id: 'connection-649', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-405', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_crescent-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_evmos__9001-2', + { + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-70', + }, + id: 'connection-66', + state: 3, + transferChannel: { + channelId: 'channel-57', + counterPartyChannelId: 'channel-85', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_kaiyo-1', + { + client_id: '07-tendermint-20', + counterparty: { + client_id: '07-tendermint-94', + connection_id: 'connection-64', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_kava__2222-10', + { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-147', + connection_id: 'connection-182', + }, + id: 'connection-73', + state: 3, + transferChannel: { + channelId: 'channel-63', + counterPartyChannelId: 'channel-133', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_neutron-1', + { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-108', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-5789', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_noble-1', + { + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-32', + connection_id: 'connection-40', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-21', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_omniflixhub-1', + { + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-47', + connection_id: 'connection-40', + }, + id: 'connection-67', + state: 3, + transferChannel: { + channelId: 'channel-58', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_osmosis-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2109', + connection_id: 'connection-1649', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-320', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_secret-4', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-111', + connection_id: 'connection-80', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_stride-1', + { + client_id: '07-tendermint-74', + counterparty: { + client_id: '07-tendermint-129', + connection_id: 'connection-118', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-59', + counterPartyChannelId: 'channel-148', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.agoric-3_umee-1', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-152', + connection_id: 'connection-101', + }, + id: 'connection-18', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_dymension__1100-1', + { + client_id: '07-tendermint-91', + counterparty: { + client_id: '07-tendermint-39', + connection_id: 'connection-30', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-123', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_migaloo-1', + { + client_id: '07-tendermint-119', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-108', + }, + id: 'connection-114', + state: 3, + transferChannel: { + channelId: 'channel-184', + counterPartyChannelId: 'channel-141', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_neutron-1', + { + client_id: '07-tendermint-51', + counterparty: { + client_id: '07-tendermint-62', + connection_id: 'connection-43', + }, + id: 'connection-58', + state: 3, + transferChannel: { + channelId: 'channel-61', + counterPartyChannelId: 'channel-41', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_planq__7070-2', + { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-561', + connection_id: 'connection-486', + }, + id: 'connection-83', + state: 3, + transferChannel: { + channelId: 'channel-112', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.archway-1_vota-ash', + { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-22', + connection_id: 'connection-28', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_noble-1', + { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-95', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_omniflixhub-1', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-75', + connection_id: 'connection-55', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-50', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.beezee-1_osmosis-1', + { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-2154', + connection_id: 'connection-1672', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-340', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_cosmoshub-4', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-765', + connection_id: 'connection-554', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-342', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_evmos__9001-2', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-29', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_kaiyo-1', + { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-60', + connection_id: 'connection-40', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-1808', + connection_id: 'connection-1412', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_stargaze-1', + { + client_id: '07-tendermint-36', + counterparty: { + client_id: '07-tendermint-224', + connection_id: 'connection-158', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.carbon-1_stride-1', + { + client_id: '07-tendermint-13', + counterparty: { + client_id: '07-tendermint-40', + connection_id: 'connection-27', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-47', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_dymension__1100-1', + { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-5', + }, + id: 'connection-52', + state: 3, + transferChannel: { + channelId: 'channel-27', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_evmos__9001-2', + { + client_id: '07-tendermint-79', + counterparty: { + client_id: '07-tendermint-134', + connection_id: 'connection-80', + }, + id: 'connection-49', + state: 3, + transferChannel: { + channelId: 'channel-26', + counterPartyChannelId: 'channel-106', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_injective-1', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-226', + connection_id: 'connection-210', + }, + id: 'connection-6', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-152', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_kava__2222-10', + { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-198', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-140', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_neutron-1', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-36', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-35', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_osmosis-1', + { + client_id: '07-tendermint-10', + counterparty: { + client_id: '07-tendermint-3012', + connection_id: 'connection-2503', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-6994', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_pryzm-1', + { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-57', + state: 3, + transferChannel: { + channelId: 'channel-34', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_secret-4', + { + client_id: '07-tendermint-52', + counterparty: { + client_id: '07-tendermint-174', + connection_id: 'connection-131', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-14', + counterPartyChannelId: 'channel-91', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_stargaze-1', + { + client_id: '07-tendermint-86', + counterparty: { + client_id: '07-tendermint-359', + connection_id: 'connection-296', + }, + id: 'connection-56', + state: 3, + transferChannel: { + channelId: 'channel-33', + counterPartyChannelId: 'channel-291', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.celestia_stride-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-137', + connection_id: 'connection-125', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-162', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_crescent-1', + { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-70', + state: 3, + transferChannel: { + channelId: 'channel-49', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_juno-1', + { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-63', + connection_id: 'connection-43', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-27', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_migaloo-1', + { + client_id: '07-tendermint-244', + counterparty: { + client_id: '07-tendermint-122', + connection_id: 'connection-92', + }, + id: 'connection-151', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-114', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_osmosis-1', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-1215', + connection_id: 'connection-1549', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-72', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.columbus-5_secret-4', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-16', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_crescent-1', + { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-41', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-68', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_dydx-mainnet-1', + { + client_id: '07-tendermint-159', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-8', + }, + id: 'connection-197', + state: 3, + transferChannel: { + channelId: 'channel-131', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_injective-1', + { + client_id: '07-tendermint-57', + counterparty: { + client_id: '07-tendermint-110', + connection_id: 'connection-91', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-41', + counterPartyChannelId: 'channel-82', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_juno-1', + { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-89', + connection_id: 'connection-51', + }, + id: 'connection-48', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_kaiyo-1', + { + client_id: '07-tendermint-162', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-130', + }, + id: 'connection-200', + state: 3, + transferChannel: { + channelId: 'channel-152', + counterPartyChannelId: 'channel-158', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_kava__2222-10', + { + client_id: '07-tendermint-156', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-189', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-129', + counterPartyChannelId: 'channel-134', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_neutron-1', + { + client_id: '07-tendermint-161', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-52', + }, + id: 'connection-199', + state: 3, + transferChannel: { + channelId: 'channel-136', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_noble-1', + { + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-61', + connection_id: 'connection-59', + }, + id: 'connection-198', + state: 3, + transferChannel: { + channelId: 'channel-132', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_osmosis-1', + { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-4', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_stargaze-1', + { + client_id: '07-tendermint-166', + counterparty: { + client_id: '07-tendermint-358', + connection_id: 'connection-293', + }, + id: 'connection-207', + state: 3, + transferChannel: { + channelId: 'channel-197', + counterPartyChannelId: 'channel-287', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.core-1_umee-1', + { + client_id: '07-tendermint-105', + counterparty: { + client_id: '07-tendermint-179', + connection_id: 'connection-119', + }, + id: 'connection-144', + state: 3, + transferChannel: { + channelId: 'channel-81', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_cosmoshub-4', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-1162', + connection_id: 'connection-884', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-660', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_dydx-mainnet-1', + { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-20', + }, + id: 'connection-26', + state: 3, + transferChannel: { + channelId: 'channel-24', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_evmos__9001-2', + { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-117', + connection_id: 'connection-71', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-87', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_kaiyo-1', + { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-163', + connection_id: 'connection-126', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-17', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_kava__2222-10', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-200', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-142', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_noble-1', + { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-71', + connection_id: 'connection-72', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-19', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2929', + connection_id: 'connection-2426', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-2188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_secret-4', + { + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-186', + connection_id: 'connection-138', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-25', + counterPartyChannelId: 'channel-101', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.coreum-mainnet-1_vota-ash', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-4', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_crescent-1', + { + client_id: '07-tendermint-724', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-538', + state: 3, + transferChannel: { + channelId: 'channel-326', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_dymension__1100-1', + { + client_id: '07-tendermint-1205', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-933', + state: 3, + transferChannel: { + channelId: 'channel-794', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_empowerchain-1', + { + client_id: '07-tendermint-1151', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-872', + state: 3, + transferChannel: { + channelId: 'channel-621', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_evmos__9001-2', + { + client_id: '07-tendermint-620', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-480', + state: 3, + transferChannel: { + channelId: 'channel-292', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_haqq__11235-1', + { + client_id: '07-tendermint-1153', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + id: 'connection-874', + state: 3, + transferChannel: { + channelId: 'channel-632', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_injective-1', + { + client_id: '07-tendermint-470', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-2', + }, + id: 'connection-388', + state: 3, + transferChannel: { + channelId: 'channel-220', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_juno-1', + { + client_id: '07-tendermint-439', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-372', + state: 3, + transferChannel: { + channelId: 'channel-207', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_kaiyo-1', + { + client_id: '07-tendermint-769', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-555', + state: 3, + transferChannel: { + channelId: 'channel-343', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_kava__2222-10', + { + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-460', + state: 3, + transferChannel: { + channelId: 'channel-277', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_lava-mainnet-1', + { + client_id: '07-tendermint-1318', + counterparty: { + client_id: '07-tendermint-7', + connection_id: 'connection-12', + }, + id: 'connection-1050', + state: 3, + transferChannel: { + channelId: 'channel-969', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_neutron-1', + { + client_id: '07-tendermint-1119', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-809', + state: 3, + transferChannel: { + channelId: 'channel-569', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_noble-1', + { + client_id: '07-tendermint-1116', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-12', + }, + id: 'connection-790', + state: 3, + transferChannel: { + channelId: 'channel-536', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_omniflixhub-1', + { + client_id: '07-tendermint-656', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-19', + }, + id: 'connection-501', + state: 3, + transferChannel: { + channelId: 'channel-306', + counterPartyChannelId: 'channel-12', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_osmosis-1', + { + client_id: '07-tendermint-259', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-257', + state: 3, + transferChannel: { + channelId: 'channel-141', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_pacific-1', + { + client_id: '07-tendermint-1140', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-827', + state: 3, + transferChannel: { + channelId: 'channel-584', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_planq__7070-2', + { + client_id: '07-tendermint-994', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-3', + }, + id: 'connection-693', + state: 3, + transferChannel: { + channelId: 'channel-446', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_pryzm-1', + { + client_id: '07-tendermint-1304', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-1038', + state: 3, + transferChannel: { + channelId: 'channel-859', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_secret-4', + { + client_id: '07-tendermint-492', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-401', + state: 3, + transferChannel: { + channelId: 'channel-235', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_stargaze-1', + { + client_id: '07-tendermint-1188', + counterparty: { + client_id: '07-tendermint-320', + connection_id: 'connection-256', + }, + id: 'connection-918', + state: 3, + transferChannel: { + channelId: 'channel-730', + counterPartyChannelId: 'channel-239', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_stride-1', + { + client_id: '07-tendermint-913', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-635', + state: 3, + transferChannel: { + channelId: 'channel-391', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.cosmoshub-4_vota-ash', + { + client_id: '07-tendermint-1191', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-8', + }, + id: 'connection-920', + state: 3, + transferChannel: { + channelId: 'channel-750', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_evmos__9001-2', + { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-15', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_injective-1', + { + client_id: '07-tendermint-26', + counterparty: { + client_id: '07-tendermint-132', + connection_id: 'connection-105', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-90', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_juno-1', + { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-81', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_kaiyo-1', + { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-105', + connection_id: 'connection-75', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-42', + counterPartyChannelId: 'channel-67', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_noble-1', + { + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-38', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_osmosis-1', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-2083', + connection_id: 'connection-1624', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-297', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_secret-4', + { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-53', + connection_id: 'connection-31', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_stargaze-1', + { + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-180', + connection_id: 'connection-114', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-21', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_stride-1', + { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-44', + connection_id: 'connection-30', + }, + id: 'connection-39', + state: 3, + transferChannel: { + channelId: 'channel-29', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.crescent-1_umee-1', + { + client_id: '07-tendermint-56', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-110', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-36', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_evmos__9001-2', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-135', + connection_id: 'connection-81', + }, + id: 'connection-23', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-107', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_kaiyo-1', + { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-122', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_kava__2222-10', + { + client_id: '07-tendermint-7', + counterparty: { + client_id: '07-tendermint-154', + connection_id: 'connection-195', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-137', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_neutron-1', + { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-72', + connection_id: 'connection-51', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_noble-1', + { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-59', + connection_id: 'connection-57', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_osmosis-1', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-3009', + connection_id: 'connection-2500', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-6787', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_pryzm-1', + { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-9', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-71', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_stride-1', + { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-133', + connection_id: 'connection-123', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_umee-1', + { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-244', + connection_id: 'connection-208', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dydx-mainnet-1_vota-ash', + { + client_id: '07-tendermint-15', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-10', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_evmos__9001-2', + { + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-85', + }, + id: 'connection-22', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-109', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_kaiyo-1', + { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-169', + connection_id: 'connection-132', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_kava__2222-10', + { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-162', + connection_id: 'connection-203', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], + [ + 'published.agoricNames.chainConnection.dymension__1100-1_neutron-1', + { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-61', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-675', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.omniflixhub', + 'published.agoricNames.chainConnection.dymension__1100-1_noble-1', { - bech32Prefix: 'omniflix', - chainId: 'omniflixhub-1', - icqEnabled: false, - stakingTokens: [ - { - denom: 'uflix', - }, - ], + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-79', + connection_id: 'connection-80', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.osmosis', + 'published.agoricNames.chainConnection.dymension__1100-1_osmosis-1', { - bech32Prefix: 'osmo', - chainId: 'osmosis-1', - icqEnabled: true, - stakingTokens: [ - { - denom: 'uosmo', - }, - ], + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-3086', + connection_id: 'connection-2566', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-19774', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.secretnetwork', + 'published.agoricNames.chainConnection.dymension__1100-1_secret-4', { - bech32Prefix: 'secret', - chainId: 'secret-4', - icqEnabled: false, - stakingTokens: [ - { - denom: 'uscrt', - }, - ], + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-194', + connection_id: 'connection-189', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-35', + counterPartyChannelId: 'channel-130', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.stargaze', + 'published.agoricNames.chainConnection.dymension__1100-1_stride-1', { - bech32Prefix: 'stars', - chainId: 'stargaze-1', - icqEnabled: false, - stakingTokens: [ - { - denom: 'ustars', - }, - ], + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-140', + connection_id: 'connection-131', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-197', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.stride', + 'published.agoricNames.chainConnection.empowerchain-1_osmosis-1', { - bech32Prefix: 'stride', - chainId: 'stride-1', - icqEnabled: false, - stakingTokens: [ - { - denom: 'ustrd', - }, - ], + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2848', + connection_id: 'connection-2360', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-1411', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chain.umee', + 'published.agoricNames.chainConnection.evmos__9001-2_injective-1', { - bech32Prefix: 'umee', - chainId: 'umee-1', - icqEnabled: false, - stakingTokens: [ - { - denom: 'uumee', - }, - ], + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-92', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-83', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, ], [ - 'published.agoricNames.chainConnection.agoric-3_cosmoshub-4', + 'published.agoricNames.chainConnection.evmos__9001-2_kaiyo-1', { - client_id: '07-tendermint-6', + client_id: '07-tendermint-53', counterparty: { - client_id: '07-tendermint-927', - connection_id: 'connection-649', + client_id: '07-tendermint-25', + connection_id: 'connection-19', }, - id: 'connection-8', + id: 'connection-21', state: 3, transferChannel: { - channelId: 'channel-5', - counterPartyChannelId: 'channel-405', + channelId: 'channel-18', + counterPartyChannelId: 'channel-23', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -198,18 +7485,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_noble-1', + 'published.agoricNames.chainConnection.evmos__9001-2_kava__2222-10', { - client_id: '07-tendermint-77', + client_id: '07-tendermint-113', counterparty: { - client_id: '07-tendermint-32', - connection_id: 'connection-40', + client_id: '07-tendermint-120', + connection_id: 'connection-157', }, - id: 'connection-72', + id: 'connection-67', state: 3, transferChannel: { - channelId: 'channel-62', - counterPartyChannelId: 'channel-21', + channelId: 'channel-83', + counterPartyChannelId: 'channel-117', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -219,18 +7506,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_omniflixhub-1', + 'published.agoricNames.chainConnection.evmos__9001-2_lava-mainnet-1', { - client_id: '07-tendermint-73', + client_id: '07-tendermint-142', counterparty: { - client_id: '07-tendermint-47', - connection_id: 'connection-40', + client_id: '07-tendermint-9', + connection_id: 'connection-14', }, - id: 'connection-67', + id: 'connection-89', state: 3, transferChannel: { - channelId: 'channel-58', - counterPartyChannelId: 'channel-30', + channelId: 'channel-117', + counterPartyChannelId: 'channel-8', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -240,18 +7527,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_osmosis-1', + 'published.agoricNames.chainConnection.evmos__9001-2_noble-1', { - client_id: '07-tendermint-1', + client_id: '07-tendermint-106', counterparty: { - client_id: '07-tendermint-2109', - connection_id: 'connection-1649', + client_id: '07-tendermint-12', + connection_id: 'connection-19', }, - id: 'connection-1', + id: 'connection-63', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-320', + channelId: 'channel-64', + counterPartyChannelId: 'channel-7', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -261,18 +7548,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_secret-4', + 'published.agoricNames.chainConnection.evmos__9001-2_osmosis-1', { - client_id: '07-tendermint-17', + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-111', - connection_id: 'connection-80', + client_id: '07-tendermint-1840', + connection_id: 'connection-1440', }, - id: 'connection-17', + id: 'connection-0', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-51', + channelId: 'channel-0', + counterPartyChannelId: 'channel-204', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -282,18 +7569,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_stride-1', + 'published.agoricNames.chainConnection.evmos__9001-2_secret-4', { - client_id: '07-tendermint-74', + client_id: '07-tendermint-50', counterparty: { - client_id: '07-tendermint-129', - connection_id: 'connection-118', + client_id: '07-tendermint-42', + connection_id: 'connection-24', }, - id: 'connection-68', + id: 'connection-19', state: 3, transferChannel: { - channelId: 'channel-59', - counterPartyChannelId: 'channel-148', + channelId: 'channel-15', + counterPartyChannelId: 'channel-18', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -303,18 +7590,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_umee-1', + 'published.agoricNames.chainConnection.evmos__9001-2_stargaze-1', { - client_id: '07-tendermint-18', + client_id: '07-tendermint-41', counterparty: { - client_id: '07-tendermint-152', - connection_id: 'connection-101', + client_id: '07-tendermint-173', + connection_id: 'connection-104', }, - id: 'connection-18', + id: 'connection-17', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-42', + channelId: 'channel-13', + counterPartyChannelId: 'channel-46', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -324,18 +7611,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_neutron-1', + 'published.agoricNames.chainConnection.evmos__9001-2_stride-1', { - client_id: '07-tendermint-29', + client_id: '07-tendermint-77', counterparty: { - client_id: '07-tendermint-48', - connection_id: 'connection-36', + client_id: '07-tendermint-8', + connection_id: 'connection-7', }, - id: 'connection-7', + id: 'connection-33', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-35', + channelId: 'channel-25', + counterPartyChannelId: 'channel-9', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -345,18 +7632,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_osmosis-1', + 'published.agoricNames.chainConnection.haqq__11235-1_kava__2222-10', { - client_id: '07-tendermint-10', + client_id: '07-tendermint-5', counterparty: { - client_id: '07-tendermint-3012', - connection_id: 'connection-2503', + client_id: '07-tendermint-149', + connection_id: 'connection-193', }, - id: 'connection-2', + id: 'connection-7', state: 3, transferChannel: { - channelId: 'channel-2', - counterPartyChannelId: 'channel-6994', + channelId: 'channel-6', + counterPartyChannelId: 'channel-135', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -366,18 +7653,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_secret-4', + 'published.agoricNames.chainConnection.haqq__11235-1_noble-1', { - client_id: '07-tendermint-52', + client_id: '07-tendermint-4', counterparty: { - client_id: '07-tendermint-174', - connection_id: 'connection-131', + client_id: '07-tendermint-58', + connection_id: 'connection-56', }, - id: 'connection-15', + id: 'connection-4', state: 3, transferChannel: { - channelId: 'channel-14', - counterPartyChannelId: 'channel-91', + channelId: 'channel-4', + counterPartyChannelId: 'channel-32', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -387,18 +7674,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_stargaze-1', + 'published.agoricNames.chainConnection.haqq__11235-1_osmosis-1', { - client_id: '07-tendermint-86', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-359', - connection_id: 'connection-296', + client_id: '07-tendermint-2871', + connection_id: 'connection-2388', }, - id: 'connection-56', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-33', - counterPartyChannelId: 'channel-291', + channelId: 'channel-2', + counterPartyChannelId: 'channel-1575', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -408,18 +7695,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_stride-1', + 'published.agoricNames.chainConnection.haqq__11235-1_stride-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-6', counterparty: { - client_id: '07-tendermint-137', - connection_id: 'connection-125', + client_id: '07-tendermint-143', + connection_id: 'connection-143', }, - id: 'connection-4', + id: 'connection-8', state: 3, transferChannel: { - channelId: 'channel-4', - counterPartyChannelId: 'channel-162', + channelId: 'channel-7', + counterPartyChannelId: 'channel-240', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -429,18 +7716,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_juno-1', + 'published.agoricNames.chainConnection.injective-1_kaiyo-1', { - client_id: '07-tendermint-439', + client_id: '07-tendermint-144', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-2', + client_id: '07-tendermint-77', + connection_id: 'connection-53', }, - id: 'connection-372', + id: 'connection-116', state: 3, transferChannel: { - channelId: 'channel-207', - counterPartyChannelId: 'channel-1', + channelId: 'channel-98', + counterPartyChannelId: 'channel-54', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -450,18 +7737,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_neutron-1', + 'published.agoricNames.chainConnection.injective-1_kava__2222-10', { - client_id: '07-tendermint-1119', + client_id: '07-tendermint-205', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-130', + connection_id: 'connection-166', }, - id: 'connection-809', + id: 'connection-189', state: 3, transferChannel: { - channelId: 'channel-569', - counterPartyChannelId: 'channel-1', + channelId: 'channel-143', + counterPartyChannelId: 'channel-122', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -471,18 +7758,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_noble-1', + 'published.agoricNames.chainConnection.injective-1_migaloo-1', { - client_id: '07-tendermint-1116', + client_id: '07-tendermint-154', counterparty: { - client_id: '07-tendermint-4', - connection_id: 'connection-12', + client_id: '07-tendermint-5', + connection_id: 'connection-8', }, - id: 'connection-790', + id: 'connection-123', state: 3, transferChannel: { - channelId: 'channel-536', - counterPartyChannelId: 'channel-4', + channelId: 'channel-102', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -492,18 +7779,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_omniflixhub-1', + 'published.agoricNames.chainConnection.injective-1_neutron-1', { - client_id: '07-tendermint-656', + client_id: '07-tendermint-233', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-19', + client_id: '07-tendermint-78', + connection_id: 'connection-58', }, - id: 'connection-501', + id: 'connection-220', state: 3, transferChannel: { - channelId: 'channel-306', - counterPartyChannelId: 'channel-12', + channelId: 'channel-177', + counterPartyChannelId: 'channel-60', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -513,18 +7800,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_osmosis-1', + 'published.agoricNames.chainConnection.injective-1_noble-1', { - client_id: '07-tendermint-259', + client_id: '07-tendermint-212', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-57', + connection_id: 'connection-55', }, - id: 'connection-257', + id: 'connection-195', state: 3, transferChannel: { - channelId: 'channel-141', - counterPartyChannelId: 'channel-0', + channelId: 'channel-148', + counterPartyChannelId: 'channel-31', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -534,18 +7821,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_secret-4', + 'published.agoricNames.chainConnection.injective-1_osmosis-1', { - client_id: '07-tendermint-492', + client_id: '07-tendermint-19', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-0', + client_id: '07-tendermint-1703', + connection_id: 'connection-1298', }, - id: 'connection-401', + id: 'connection-14', state: 3, transferChannel: { - channelId: 'channel-235', - counterPartyChannelId: 'channel-0', + channelId: 'channel-8', + counterPartyChannelId: 'channel-122', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -555,18 +7842,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_stargaze-1', + 'published.agoricNames.chainConnection.injective-1_pryzm-1', { - client_id: '07-tendermint-1188', + client_id: '07-tendermint-267', counterparty: { - client_id: '07-tendermint-320', - connection_id: 'connection-256', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, - id: 'connection-918', + id: 'connection-268', state: 3, transferChannel: { - channelId: 'channel-730', - counterPartyChannelId: 'channel-239', + channelId: 'channel-284', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -576,18 +7863,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_stride-1', + 'published.agoricNames.chainConnection.injective-1_secret-4', { - client_id: '07-tendermint-913', + client_id: '07-tendermint-126', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-49', + connection_id: 'connection-30', }, - id: 'connection-635', + id: 'connection-101', state: 3, transferChannel: { - channelId: 'channel-391', - counterPartyChannelId: 'channel-0', + channelId: 'channel-88', + counterPartyChannelId: 'channel-23', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -597,18 +7884,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_neutron-1', + 'published.agoricNames.chainConnection.injective-1_stride-1', { - client_id: '07-tendermint-11', + client_id: '07-tendermint-131', counterparty: { - client_id: '07-tendermint-72', - connection_id: 'connection-51', + client_id: '07-tendermint-2', + connection_id: 'connection-3', }, - id: 'connection-17', + id: 'connection-103', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-48', + channelId: 'channel-89', + counterPartyChannelId: 'channel-6', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -618,18 +7905,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_noble-1', + 'published.agoricNames.chainConnection.injective-1_umee-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-229', counterparty: { - client_id: '07-tendermint-59', - connection_id: 'connection-57', + client_id: '07-tendermint-243', + connection_id: 'connection-206', }, - id: 'connection-0', + id: 'connection-217', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-33', + channelId: 'channel-159', + counterPartyChannelId: 'channel-116', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -639,18 +7926,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_osmosis-1', + 'published.agoricNames.chainConnection.injective-1_vota-ash', { - client_id: '07-tendermint-3', + client_id: '07-tendermint-245', counterparty: { - client_id: '07-tendermint-3009', - connection_id: 'connection-2500', + client_id: '07-tendermint-15', + connection_id: 'connection-9', }, - id: 'connection-7', + id: 'connection-239', state: 3, transferChannel: { - channelId: 'channel-3', - counterPartyChannelId: 'channel-6787', + channelId: 'channel-182', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -660,18 +7947,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_stride-1', + 'published.agoricNames.chainConnection.juno-1_kaiyo-1', { - client_id: '07-tendermint-1', + client_id: '07-tendermint-198', counterparty: { - client_id: '07-tendermint-133', - connection_id: 'connection-123', + client_id: '07-tendermint-2', + connection_id: 'connection-1', }, - id: 'connection-1', + id: 'connection-140', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-160', + channelId: 'channel-87', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -681,18 +7968,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_umee-1', + 'published.agoricNames.chainConnection.juno-1_migaloo-1', { - client_id: '07-tendermint-8', + client_id: '07-tendermint-310', counterparty: { - client_id: '07-tendermint-244', - connection_id: 'connection-208', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, - id: 'connection-13', + id: 'connection-282', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-118', + channelId: 'channel-210', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -828,39 +8115,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_noble-1', - { - client_id: '07-tendermint-40', - counterparty: { - client_id: '07-tendermint-25', - connection_id: 'connection-34', - }, - id: 'connection-31', - state: 3, - transferChannel: { - channelId: 'channel-30', - counterPartyChannelId: 'channel-18', - counterPartyPortId: 'transfer', - ordering: 0, - portId: 'transfer', - state: 3, - version: 'ics20-1', - }, - }, - ], - [ - 'published.agoricNames.chainConnection.neutron-1_osmosis-1', + 'published.agoricNames.chainConnection.kaiyo-1_kava__2222-10', { - client_id: '07-tendermint-19', + client_id: '07-tendermint-140', counterparty: { - client_id: '07-tendermint-2823', - connection_id: 'connection-2338', + client_id: '07-tendermint-119', + connection_id: 'connection-156', }, - id: 'connection-18', + id: 'connection-106', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-874', + channelId: 'channel-95', + counterPartyChannelId: 'channel-116', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -870,18 +8136,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_secret-4', + 'published.agoricNames.chainConnection.kaiyo-1_migaloo-1', { - client_id: '07-tendermint-85', + client_id: '07-tendermint-82', counterparty: { - client_id: '07-tendermint-199', - connection_id: 'connection-192', + client_id: '07-tendermint-16', + connection_id: 'connection-19', }, - id: 'connection-63', + id: 'connection-59', state: 3, transferChannel: { - channelId: 'channel-1551', - counterPartyChannelId: 'channel-144', + channelId: 'channel-58', + counterPartyChannelId: 'channel-8', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -891,18 +8157,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_stargaze-1', + 'published.agoricNames.chainConnection.kaiyo-1_neutron-1', { - client_id: '07-tendermint-31', + client_id: '07-tendermint-112', counterparty: { - client_id: '07-tendermint-283', - connection_id: 'connection-211', + client_id: '07-tendermint-2', + connection_id: 'connection-2', }, - id: 'connection-23', + id: 'connection-82', state: 3, transferChannel: { - channelId: 'channel-18', - counterPartyChannelId: 'channel-191', + channelId: 'channel-75', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -912,18 +8178,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_stride-1', + 'published.agoricNames.chainConnection.kaiyo-1_noble-1', { - client_id: '07-tendermint-18', + client_id: '07-tendermint-95', counterparty: { - client_id: '07-tendermint-125', - connection_id: 'connection-113', + client_id: '07-tendermint-2', + connection_id: 'connection-4', }, - id: 'connection-15', + id: 'connection-65', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-123', + channelId: 'channel-62', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -933,18 +8199,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_omniflixhub-1', + 'published.agoricNames.chainConnection.kaiyo-1_osmosis-1', { - client_id: '07-tendermint-68', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-51', - connection_id: 'connection-49', + client_id: '07-tendermint-2017', + connection_id: 'connection-1559', }, - id: 'connection-65', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-44', - counterPartyChannelId: 'channel-38', + channelId: 'channel-3', + counterPartyChannelId: 'channel-259', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -954,18 +8220,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_osmosis-1', + 'published.agoricNames.chainConnection.kaiyo-1_planq__7070-2', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-70', counterparty: { - client_id: '07-tendermint-2704', - connection_id: 'connection-2241', + client_id: '07-tendermint-144', + connection_id: 'connection-151', }, - id: 'connection-2', + id: 'connection-46', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-750', + channelId: 'channel-51', + counterPartyChannelId: 'channel-23', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -975,18 +8241,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_secret-4', + 'published.agoricNames.chainConnection.kaiyo-1_secret-4', { - client_id: '07-tendermint-24', + client_id: '07-tendermint-12', counterparty: { - client_id: '07-tendermint-170', - connection_id: 'connection-127', + client_id: '07-tendermint-48', + connection_id: 'connection-29', }, - id: 'connection-33', + id: 'connection-7', state: 3, transferChannel: { - channelId: 'channel-17', - counterPartyChannelId: 'channel-88', + channelId: 'channel-10', + counterPartyChannelId: 'channel-22', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -996,18 +8262,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_stargaze-1', + 'published.agoricNames.chainConnection.kaiyo-1_stargaze-1', { - client_id: '07-tendermint-16', + client_id: '07-tendermint-9', counterparty: { - client_id: '07-tendermint-287', - connection_id: 'connection-214', + client_id: '07-tendermint-178', + connection_id: 'connection-111', }, - id: 'connection-25', + id: 'connection-5', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-204', + channelId: 'channel-7', + counterPartyChannelId: 'channel-49', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1017,18 +8283,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_umee-1', + 'published.agoricNames.chainConnection.kaiyo-1_stride-1', { - client_id: '07-tendermint-73', + client_id: '07-tendermint-37', counterparty: { - client_id: '07-tendermint-248', - connection_id: 'connection-210', + client_id: '07-tendermint-5', + connection_id: 'connection-5', }, - id: 'connection-74', + id: 'connection-31', state: 3, transferChannel: { - channelId: 'channel-51', - counterPartyChannelId: 'channel-120', + channelId: 'channel-32', + counterPartyChannelId: 'channel-8', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1038,18 +8304,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.omniflixhub-1_osmosis-1', + 'published.agoricNames.chainConnection.kava__2222-10_migaloo-1', { - client_id: '07-tendermint-8', + client_id: '07-tendermint-125', counterparty: { - client_id: '07-tendermint-1829', - connection_id: 'connection-1431', + client_id: '07-tendermint-90', + connection_id: 'connection-73', }, - id: 'connection-8', + id: 'connection-162', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-199', + channelId: 'channel-120', + counterPartyChannelId: 'channel-48', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1059,18 +8325,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_secret-4', + 'published.agoricNames.chainConnection.kava__2222-10_neutron-1', { - client_id: '07-tendermint-1588', + client_id: '07-tendermint-151', counterparty: { - client_id: '07-tendermint-2', - connection_id: 'connection-1', + client_id: '07-tendermint-54', + connection_id: 'connection-37', }, - id: 'connection-1244', + id: 'connection-194', state: 3, transferChannel: { - channelId: 'channel-88', - counterPartyChannelId: 'channel-1', + channelId: 'channel-136', + counterPartyChannelId: 'channel-36', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1080,18 +8346,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_stargaze-1', + 'published.agoricNames.chainConnection.kava__2222-10_noble-1', { - client_id: '07-tendermint-1562', + client_id: '07-tendermint-172', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-107', + connection_id: 'connection-102', }, - id: 'connection-1223', + id: 'connection-214', state: 3, transferChannel: { - channelId: 'channel-75', - counterPartyChannelId: 'channel-0', + channelId: 'channel-151', + counterPartyChannelId: 'channel-88', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1101,18 +8367,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_stride-1', + 'published.agoricNames.chainConnection.kava__2222-10_osmosis-1', { - client_id: '07-tendermint-2119', + client_id: '07-tendermint-2', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-2', + client_id: '07-tendermint-1735', + connection_id: 'connection-1328', }, - id: 'connection-1657', + id: 'connection-1', state: 3, transferChannel: { - channelId: 'channel-326', - counterPartyChannelId: 'channel-5', + channelId: 'channel-1', + counterPartyChannelId: 'channel-143', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1122,18 +8388,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_umee-1', + 'published.agoricNames.chainConnection.kava__2222-10_pacific-1', { - client_id: '07-tendermint-1805', + client_id: '07-tendermint-146', counterparty: { - client_id: '07-tendermint-6', - connection_id: 'connection-0', + client_id: '07-tendermint-38', + connection_id: 'connection-33', }, - id: 'connection-1410', + id: 'connection-181', state: 3, transferChannel: { - channelId: 'channel-184', - counterPartyChannelId: 'channel-0', + channelId: 'channel-132', + counterPartyChannelId: 'channel-18', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1143,18 +8409,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.secret-4_stargaze-1', + 'published.agoricNames.chainConnection.lava-mainnet-1_noble-1', { - client_id: '07-tendermint-43', + client_id: '07-tendermint-11', counterparty: { - client_id: '07-tendermint-177', - connection_id: 'connection-110', + client_id: '07-tendermint-120', + connection_id: 'connection-115', }, - id: 'connection-25', + id: 'connection-15', state: 3, transferChannel: { - channelId: 'channel-19', - counterPartyChannelId: 'channel-48', + channelId: 'channel-9', + counterPartyChannelId: 'channel-105', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1164,18 +8430,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.secret-4_stride-1', + 'published.agoricNames.chainConnection.lava-mainnet-1_osmosis-1', { - client_id: '07-tendermint-75', + client_id: '07-tendermint-1', counterparty: { - client_id: '07-tendermint-37', - connection_id: 'connection-25', + client_id: '07-tendermint-3210', + connection_id: 'connection-2668', }, - id: 'connection-40', + id: 'connection-1', state: 3, transferChannel: { - channelId: 'channel-37', - counterPartyChannelId: 'channel-40', + channelId: 'channel-1', + counterPartyChannelId: 'channel-76971', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1185,18 +8451,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.secret-4_umee-1', + 'published.agoricNames.chainConnection.lava-mainnet-1_stargaze-1', { - client_id: '07-tendermint-193', + client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-249', - connection_id: 'connection-213', + client_id: '07-tendermint-366', + connection_id: 'connection-307', }, - id: 'connection-188', + id: 'connection-13', state: 3, transferChannel: { - channelId: 'channel-126', - counterPartyChannelId: 'channel-123', + channelId: 'channel-7', + counterPartyChannelId: 'channel-391', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1206,18 +8472,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.stargaze-1_stride-1', + 'published.agoricNames.chainConnection.migaloo-1_noble-1', { - client_id: '07-tendermint-195', + client_id: '07-tendermint-113', counterparty: { - client_id: '07-tendermint-30', - connection_id: 'connection-18', + client_id: '07-tendermint-19', + connection_id: 'connection-28', }, - id: 'connection-128', + id: 'connection-89', state: 3, transferChannel: { - channelId: 'channel-106', - counterPartyChannelId: 'channel-19', + channelId: 'channel-60', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1227,18 +8493,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.stride-1_umee-1', + 'published.agoricNames.chainConnection.migaloo-1_osmosis-1', { - client_id: '07-tendermint-32', + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-64', - connection_id: 'connection-45', + client_id: '07-tendermint-2669', + connection_id: 'connection-2171', }, - id: 'connection-20', + id: 'connection-11', state: 3, transferChannel: { - channelId: 'channel-29', - counterPartyChannelId: 'channel-34', + channelId: 'channel-5', + counterPartyChannelId: 'channel-642', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1247,27 +8513,19 @@ Generated by [AVA](https://avajs.dev). }, }, ], - ] - -> Chain connections for Orchestration -> The example below illustrates the schema of the data published there. -> -> See also board marshalling conventions (_to appear_). - - [ [ - 'published.agoricNames.chainConnection.agoric-3_cosmoshub-4', + 'published.agoricNames.chainConnection.migaloo-1_pacific-1', { - client_id: '07-tendermint-6', + client_id: '07-tendermint-108', counterparty: { - client_id: '07-tendermint-927', - connection_id: 'connection-649', + client_id: '07-tendermint-22', + connection_id: 'connection-13', }, - id: 'connection-8', + id: 'connection-84', state: 3, transferChannel: { - channelId: 'channel-5', - counterPartyChannelId: 'channel-405', + channelId: 'channel-57', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1277,18 +8535,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_noble-1', + 'published.agoricNames.chainConnection.migaloo-1_secret-4', { - client_id: '07-tendermint-77', + client_id: '07-tendermint-6', counterparty: { - client_id: '07-tendermint-32', - connection_id: 'connection-40', + client_id: '07-tendermint-116', + connection_id: 'connection-87', }, - id: 'connection-72', + id: 'connection-9', state: 3, transferChannel: { - channelId: 'channel-62', - counterPartyChannelId: 'channel-21', + channelId: 'channel-4', + counterPartyChannelId: 'channel-57', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1298,18 +8556,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_omniflixhub-1', + 'published.agoricNames.chainConnection.migaloo-1_stargaze-1', { - client_id: '07-tendermint-73', + client_id: '07-tendermint-118', counterparty: { - client_id: '07-tendermint-47', - connection_id: 'connection-40', + client_id: '07-tendermint-352', + connection_id: 'connection-287', }, - id: 'connection-67', + id: 'connection-90', state: 3, transferChannel: { - channelId: 'channel-58', - counterPartyChannelId: 'channel-30', + channelId: 'channel-69', + counterPartyChannelId: 'channel-269', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1319,18 +8577,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_osmosis-1', + 'published.agoricNames.chainConnection.migaloo-1_umee-1', { - client_id: '07-tendermint-1', + client_id: '07-tendermint-104', counterparty: { - client_id: '07-tendermint-2109', - connection_id: 'connection-1649', + client_id: '07-tendermint-234', + connection_id: 'connection-195', }, - id: 'connection-1', + id: 'connection-83', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-320', + channelId: 'channel-56', + counterPartyChannelId: 'channel-104', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1340,18 +8598,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_secret-4', + 'published.agoricNames.chainConnection.neutron-1_noble-1', { - client_id: '07-tendermint-17', + client_id: '07-tendermint-40', counterparty: { - client_id: '07-tendermint-111', - connection_id: 'connection-80', + client_id: '07-tendermint-25', + connection_id: 'connection-34', }, - id: 'connection-17', + id: 'connection-31', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-51', + channelId: 'channel-30', + counterPartyChannelId: 'channel-18', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1361,18 +8619,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_stride-1', + 'published.agoricNames.chainConnection.neutron-1_osmosis-1', { - client_id: '07-tendermint-74', + client_id: '07-tendermint-19', counterparty: { - client_id: '07-tendermint-129', - connection_id: 'connection-118', + client_id: '07-tendermint-2823', + connection_id: 'connection-2338', }, - id: 'connection-68', + id: 'connection-18', state: 3, transferChannel: { - channelId: 'channel-59', - counterPartyChannelId: 'channel-148', + channelId: 'channel-10', + counterPartyChannelId: 'channel-874', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1382,18 +8640,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.agoric-3_umee-1', + 'published.agoricNames.chainConnection.neutron-1_pacific-1', { - client_id: '07-tendermint-18', + client_id: '07-tendermint-89', counterparty: { - client_id: '07-tendermint-152', - connection_id: 'connection-101', + client_id: '07-tendermint-123', + connection_id: 'connection-157', }, - id: 'connection-18', + id: 'connection-65', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-42', + channelId: 'channel-2016', + counterPartyChannelId: 'channel-66', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1403,18 +8661,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_neutron-1', + 'published.agoricNames.chainConnection.neutron-1_pirin-1', { - client_id: '07-tendermint-29', + client_id: '07-tendermint-71', counterparty: { - client_id: '07-tendermint-48', - connection_id: 'connection-36', + client_id: '07-tendermint-13', + connection_id: 'connection-11', }, - id: 'connection-7', + id: 'connection-50', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-35', + channelId: 'channel-44', + counterPartyChannelId: 'channel-3839', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1424,18 +8682,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_osmosis-1', + 'published.agoricNames.chainConnection.neutron-1_pryzm-1', { - client_id: '07-tendermint-10', + client_id: '07-tendermint-98', counterparty: { - client_id: '07-tendermint-3012', - connection_id: 'connection-2503', + client_id: '07-tendermint-6', + connection_id: 'connection-6', }, - id: 'connection-2', + id: 'connection-72', state: 3, transferChannel: { - channelId: 'channel-2', - counterPartyChannelId: 'channel-6994', + channelId: 'channel-4329', + counterPartyChannelId: 'channel-6', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1445,18 +8703,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_secret-4', + 'published.agoricNames.chainConnection.neutron-1_secret-4', { - client_id: '07-tendermint-52', + client_id: '07-tendermint-85', counterparty: { - client_id: '07-tendermint-174', - connection_id: 'connection-131', + client_id: '07-tendermint-199', + connection_id: 'connection-192', }, - id: 'connection-15', + id: 'connection-63', state: 3, transferChannel: { - channelId: 'channel-14', - counterPartyChannelId: 'channel-91', + channelId: 'channel-1551', + counterPartyChannelId: 'channel-144', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1466,18 +8724,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_stargaze-1', + 'published.agoricNames.chainConnection.neutron-1_stargaze-1', { - client_id: '07-tendermint-86', + client_id: '07-tendermint-31', counterparty: { - client_id: '07-tendermint-359', - connection_id: 'connection-296', + client_id: '07-tendermint-283', + connection_id: 'connection-211', }, - id: 'connection-56', + id: 'connection-23', state: 3, transferChannel: { - channelId: 'channel-33', - counterPartyChannelId: 'channel-291', + channelId: 'channel-18', + counterPartyChannelId: 'channel-191', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1487,18 +8745,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.celestia_stride-1', + 'published.agoricNames.chainConnection.neutron-1_stride-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-137', - connection_id: 'connection-125', + client_id: '07-tendermint-125', + connection_id: 'connection-113', }, - id: 'connection-4', + id: 'connection-15', state: 3, transferChannel: { - channelId: 'channel-4', - counterPartyChannelId: 'channel-162', + channelId: 'channel-8', + counterPartyChannelId: 'channel-123', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1508,18 +8766,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_juno-1', + 'published.agoricNames.chainConnection.noble-1_omniflixhub-1', { - client_id: '07-tendermint-439', + client_id: '07-tendermint-68', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-2', + client_id: '07-tendermint-51', + connection_id: 'connection-49', }, - id: 'connection-372', + id: 'connection-65', state: 3, transferChannel: { - channelId: 'channel-207', - counterPartyChannelId: 'channel-1', + channelId: 'channel-44', + counterPartyChannelId: 'channel-38', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1529,18 +8787,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_neutron-1', + 'published.agoricNames.chainConnection.noble-1_osmosis-1', { - client_id: '07-tendermint-1119', + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-2704', + connection_id: 'connection-2241', }, - id: 'connection-809', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-569', - counterPartyChannelId: 'channel-1', + channelId: 'channel-1', + counterPartyChannelId: 'channel-750', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1550,18 +8808,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_noble-1', + 'published.agoricNames.chainConnection.noble-1_pacific-1', { - client_id: '07-tendermint-1116', + client_id: '07-tendermint-64', counterparty: { - client_id: '07-tendermint-4', - connection_id: 'connection-12', + client_id: '07-tendermint-45', + connection_id: 'connection-77', }, - id: 'connection-790', + id: 'connection-61', state: 3, transferChannel: { - channelId: 'channel-536', - counterPartyChannelId: 'channel-4', + channelId: 'channel-39', + counterPartyChannelId: 'channel-45', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1571,18 +8829,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_omniflixhub-1', + 'published.agoricNames.chainConnection.noble-1_pio-mainnet-1', { - client_id: '07-tendermint-656', + client_id: '07-tendermint-30', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-19', + client_id: '07-tendermint-36', + connection_id: 'connection-13', }, - id: 'connection-501', + id: 'connection-37', state: 3, transferChannel: { - channelId: 'channel-306', - counterPartyChannelId: 'channel-12', + channelId: 'channel-20', + counterPartyChannelId: 'channel-10', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1592,18 +8850,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_osmosis-1', + 'published.agoricNames.chainConnection.noble-1_planq__7070-2', { - client_id: '07-tendermint-259', + client_id: '07-tendermint-103', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-567', + connection_id: 'connection-490', }, - id: 'connection-257', + id: 'connection-95', state: 3, transferChannel: { - channelId: 'channel-141', - counterPartyChannelId: 'channel-0', + channelId: 'channel-82', + counterPartyChannelId: 'channel-63', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1613,18 +8871,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_secret-4', + 'published.agoricNames.chainConnection.noble-1_pryzm-1', { - client_id: '07-tendermint-492', + client_id: '07-tendermint-100', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-0', + client_id: '07-tendermint-5', + connection_id: 'connection-5', }, - id: 'connection-401', + id: 'connection-92', state: 3, transferChannel: { - channelId: 'channel-235', - counterPartyChannelId: 'channel-0', + channelId: 'channel-79', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1634,18 +8892,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_stargaze-1', + 'published.agoricNames.chainConnection.noble-1_secret-4', { - client_id: '07-tendermint-1188', + client_id: '07-tendermint-24', counterparty: { - client_id: '07-tendermint-320', - connection_id: 'connection-256', + client_id: '07-tendermint-170', + connection_id: 'connection-127', }, - id: 'connection-918', + id: 'connection-33', state: 3, transferChannel: { - channelId: 'channel-730', - counterPartyChannelId: 'channel-239', + channelId: 'channel-17', + counterPartyChannelId: 'channel-88', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1655,18 +8913,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.cosmoshub-4_stride-1', + 'published.agoricNames.chainConnection.noble-1_shido__9008-1', { - client_id: '07-tendermint-913', + client_id: '07-tendermint-106', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-9', + connection_id: 'connection-11', }, - id: 'connection-635', + id: 'connection-99', state: 3, transferChannel: { - channelId: 'channel-391', - counterPartyChannelId: 'channel-0', + channelId: 'channel-87', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1676,18 +8934,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_neutron-1', + 'published.agoricNames.chainConnection.noble-1_stargaze-1', { - client_id: '07-tendermint-11', + client_id: '07-tendermint-16', counterparty: { - client_id: '07-tendermint-72', - connection_id: 'connection-51', + client_id: '07-tendermint-287', + connection_id: 'connection-214', }, - id: 'connection-17', + id: 'connection-25', state: 3, transferChannel: { channelId: 'channel-11', - counterPartyChannelId: 'channel-48', + counterPartyChannelId: 'channel-204', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1697,18 +8955,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_noble-1', + 'published.agoricNames.chainConnection.noble-1_titan__18888-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-114', counterparty: { - client_id: '07-tendermint-59', - connection_id: 'connection-57', + client_id: '07-tendermint-1', + connection_id: 'connection-0', }, - id: 'connection-0', + id: 'connection-109', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-33', + channelId: 'channel-99', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1718,18 +8976,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_osmosis-1', + 'published.agoricNames.chainConnection.noble-1_umee-1', { - client_id: '07-tendermint-3', + client_id: '07-tendermint-73', counterparty: { - client_id: '07-tendermint-3009', - connection_id: 'connection-2500', + client_id: '07-tendermint-248', + connection_id: 'connection-210', }, - id: 'connection-7', + id: 'connection-74', state: 3, transferChannel: { - channelId: 'channel-3', - counterPartyChannelId: 'channel-6787', + channelId: 'channel-51', + counterPartyChannelId: 'channel-120', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1739,18 +8997,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_stride-1', + 'published.agoricNames.chainConnection.noble-1_vota-ash', { - client_id: '07-tendermint-1', + client_id: '07-tendermint-111', counterparty: { - client_id: '07-tendermint-133', - connection_id: 'connection-123', + client_id: '07-tendermint-23', + connection_id: 'connection-29', }, - id: 'connection-1', + id: 'connection-106', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-160', + channelId: 'channel-94', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1760,18 +9018,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.dydx-mainnet-1_umee-1', + 'published.agoricNames.chainConnection.omniflixhub-1_osmosis-1', { client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-244', - connection_id: 'connection-208', + client_id: '07-tendermint-1829', + connection_id: 'connection-1431', }, - id: 'connection-13', + id: 'connection-8', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-118', + channelId: 'channel-1', + counterPartyChannelId: 'channel-199', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1781,18 +9039,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_neutron-1', + 'published.agoricNames.chainConnection.omniflixhub-1_stargaze-1', { - client_id: '07-tendermint-557', + client_id: '07-tendermint-74', counterparty: { - client_id: '07-tendermint-97', - connection_id: 'connection-71', + client_id: '07-tendermint-370', + connection_id: 'connection-328', }, - id: 'connection-524', + id: 'connection-54', state: 3, transferChannel: { - channelId: 'channel-548', - counterPartyChannelId: 'channel-4328', + channelId: 'channel-49', + counterPartyChannelId: 'channel-398', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1802,18 +9060,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_noble-1', + 'published.agoricNames.chainConnection.osmosis-1_pacific-1', { - client_id: '07-tendermint-334', + client_id: '07-tendermint-2790', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-8', + client_id: '07-tendermint-2', + connection_id: 'connection-0', }, - id: 'connection-322', + id: 'connection-2288', state: 3, transferChannel: { - channelId: 'channel-224', - counterPartyChannelId: 'channel-3', + channelId: 'channel-782', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1823,18 +9081,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_osmosis-1', + 'published.agoricNames.chainConnection.osmosis-1_pio-mainnet-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-1899', counterparty: { - client_id: '07-tendermint-1457', - connection_id: 'connection-1142', + client_id: '07-tendermint-31', + connection_id: 'connection-9', }, - id: 'connection-0', + id: 'connection-1472', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-42', + channelId: 'channel-222', + counterPartyChannelId: 'channel-7', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1844,18 +9102,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_secret-4', + 'published.agoricNames.chainConnection.osmosis-1_pirin-1', { - client_id: '07-tendermint-108', + client_id: '07-tendermint-2791', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-9', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-68', + id: 'connection-2289', state: 3, transferChannel: { - channelId: 'channel-48', - counterPartyChannelId: 'channel-8', + channelId: 'channel-783', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1865,18 +9123,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_stargaze-1', + 'published.agoricNames.chainConnection.osmosis-1_planq__7070-2', { - client_id: '07-tendermint-44', + client_id: '07-tendermint-2318', counterparty: { - client_id: '07-tendermint-13', - connection_id: 'connection-11', + client_id: '07-tendermint-3', + connection_id: 'connection-2', }, - id: 'connection-30', + id: 'connection-1815', state: 3, transferChannel: { - channelId: 'channel-20', - counterPartyChannelId: 'channel-5', + channelId: 'channel-492', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1886,18 +9144,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.juno-1_stride-1', + 'published.agoricNames.chainConnection.osmosis-1_pryzm-1', { - client_id: '07-tendermint-263', + client_id: '07-tendermint-3206', counterparty: { - client_id: '07-tendermint-31', - connection_id: 'connection-19', + client_id: '07-tendermint-2', + connection_id: 'connection-2', }, - id: 'connection-205', + id: 'connection-2663', state: 3, transferChannel: { - channelId: 'channel-139', - counterPartyChannelId: 'channel-24', + channelId: 'channel-75755', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1907,18 +9165,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_noble-1', + 'published.agoricNames.chainConnection.osmosis-1_quicksilver-2', { - client_id: '07-tendermint-40', + client_id: '07-tendermint-2400', counterparty: { - client_id: '07-tendermint-25', - connection_id: 'connection-34', + client_id: '07-tendermint-6', + connection_id: 'connection-2', }, - id: 'connection-31', + id: 'connection-1889', state: 3, transferChannel: { - channelId: 'channel-30', - counterPartyChannelId: 'channel-18', + channelId: 'channel-522', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1928,18 +9186,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_osmosis-1', + 'published.agoricNames.chainConnection.osmosis-1_secret-4', { - client_id: '07-tendermint-19', + client_id: '07-tendermint-1588', counterparty: { - client_id: '07-tendermint-2823', - connection_id: 'connection-2338', + client_id: '07-tendermint-2', + connection_id: 'connection-1', }, - id: 'connection-18', + id: 'connection-1244', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-874', + channelId: 'channel-88', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1949,18 +9207,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_secret-4', + 'published.agoricNames.chainConnection.osmosis-1_shido__9008-1', { - client_id: '07-tendermint-85', + client_id: '07-tendermint-3198', counterparty: { - client_id: '07-tendermint-199', - connection_id: 'connection-192', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-63', + id: 'connection-2654', state: 3, transferChannel: { - channelId: 'channel-1551', - counterPartyChannelId: 'channel-144', + channelId: 'channel-73755', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1970,18 +9228,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_stargaze-1', + 'published.agoricNames.chainConnection.osmosis-1_sifchain-1', { - client_id: '07-tendermint-31', + client_id: '07-tendermint-1484', counterparty: { - client_id: '07-tendermint-283', - connection_id: 'connection-211', + client_id: '07-tendermint-41', + connection_id: 'connection-20', }, - id: 'connection-23', + id: 'connection-1159', state: 3, transferChannel: { - channelId: 'channel-18', - counterPartyChannelId: 'channel-191', + channelId: 'channel-47', + counterPartyChannelId: 'channel-17', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1991,18 +9249,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.neutron-1_stride-1', + 'published.agoricNames.chainConnection.osmosis-1_stargaze-1', { - client_id: '07-tendermint-18', + client_id: '07-tendermint-1562', counterparty: { - client_id: '07-tendermint-125', - connection_id: 'connection-113', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-15', + id: 'connection-1223', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-123', + channelId: 'channel-75', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2012,18 +9270,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_omniflixhub-1', + 'published.agoricNames.chainConnection.osmosis-1_stride-1', { - client_id: '07-tendermint-68', + client_id: '07-tendermint-2119', counterparty: { - client_id: '07-tendermint-51', - connection_id: 'connection-49', + client_id: '07-tendermint-1', + connection_id: 'connection-2', }, - id: 'connection-65', + id: 'connection-1657', state: 3, transferChannel: { - channelId: 'channel-44', - counterPartyChannelId: 'channel-38', + channelId: 'channel-326', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2033,18 +9291,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_osmosis-1', + 'published.agoricNames.chainConnection.osmosis-1_umee-1', { - client_id: '07-tendermint-0', + client_id: '07-tendermint-1805', counterparty: { - client_id: '07-tendermint-2704', - connection_id: 'connection-2241', + client_id: '07-tendermint-6', + connection_id: 'connection-0', }, - id: 'connection-2', + id: 'connection-1410', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-750', + channelId: 'channel-184', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2054,18 +9312,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_secret-4', + 'published.agoricNames.chainConnection.osmosis-1_vota-ash', { - client_id: '07-tendermint-24', + client_id: '07-tendermint-2959', counterparty: { - client_id: '07-tendermint-170', - connection_id: 'connection-127', + client_id: '07-tendermint-0', + connection_id: 'connection-1', }, - id: 'connection-33', + id: 'connection-2454', state: 3, transferChannel: { - channelId: 'channel-17', - counterPartyChannelId: 'channel-88', + channelId: 'channel-2694', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2075,18 +9333,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_stargaze-1', + 'published.agoricNames.chainConnection.pacific-1_planq__7070-2', { - client_id: '07-tendermint-16', + client_id: '07-tendermint-21', counterparty: { - client_id: '07-tendermint-287', - connection_id: 'connection-214', + client_id: '07-tendermint-545', + connection_id: 'connection-477', }, - id: 'connection-25', + id: 'connection-12', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-204', + channelId: 'channel-13', + counterPartyChannelId: 'channel-59', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2096,18 +9354,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.noble-1_umee-1', + 'published.agoricNames.chainConnection.pacific-1_stride-1', { - client_id: '07-tendermint-73', + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-248', - connection_id: 'connection-210', + client_id: '07-tendermint-130', + connection_id: 'connection-119', }, - id: 'connection-74', + id: 'connection-11', state: 3, transferChannel: { - channelId: 'channel-51', - counterPartyChannelId: 'channel-120', + channelId: 'channel-11', + counterPartyChannelId: 'channel-149', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2117,18 +9375,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.omniflixhub-1_osmosis-1', + 'published.agoricNames.chainConnection.pacific-1_vota-ash', { - client_id: '07-tendermint-8', + client_id: '07-tendermint-109', counterparty: { - client_id: '07-tendermint-1829', - connection_id: 'connection-1431', + client_id: '07-tendermint-21', + connection_id: 'connection-27', }, - id: 'connection-8', + id: 'connection-153', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-199', + channelId: 'channel-64', + counterPartyChannelId: 'channel-12', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2138,18 +9396,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_secret-4', + 'published.agoricNames.chainConnection.pirin-1_secret-4', { - client_id: '07-tendermint-1588', + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-2', - connection_id: 'connection-1', + client_id: '07-tendermint-201', + connection_id: 'connection-193', }, - id: 'connection-1244', + id: 'connection-14', state: 3, transferChannel: { - channelId: 'channel-88', - counterPartyChannelId: 'channel-1', + channelId: 'channel-13995', + counterPartyChannelId: 'channel-146', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2159,18 +9417,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_stargaze-1', + 'published.agoricNames.chainConnection.pirin-1_vota-ash', { - client_id: '07-tendermint-1562', + client_id: '07-tendermint-14', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-13', + connection_id: 'connection-5', }, - id: 'connection-1223', + id: 'connection-12', state: 3, transferChannel: { - channelId: 'channel-75', - counterPartyChannelId: 'channel-0', + channelId: 'channel-4092', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2180,18 +9438,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_stride-1', + 'published.agoricNames.chainConnection.pryzm-1_stride-1', { - client_id: '07-tendermint-2119', + client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-2', + client_id: '07-tendermint-145', + connection_id: 'connection-145', }, - id: 'connection-1657', + id: 'connection-8', state: 3, transferChannel: { - channelId: 'channel-326', - counterPartyChannelId: 'channel-5', + channelId: 'channel-23', + counterPartyChannelId: 'channel-257', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2201,18 +9459,18 @@ Generated by [AVA](https://avajs.dev). }, ], [ - 'published.agoricNames.chainConnection.osmosis-1_umee-1', + 'published.agoricNames.chainConnection.secret-4_sifchain-1', { - client_id: '07-tendermint-1805', + client_id: '07-tendermint-37', counterparty: { - client_id: '07-tendermint-6', - connection_id: 'connection-0', + client_id: '07-tendermint-171', + connection_id: 'connection-98', }, - id: 'connection-1410', + id: 'connection-19', state: 3, transferChannel: { - channelId: 'channel-184', - counterPartyChannelId: 'channel-0', + channelId: 'channel-15', + counterPartyChannelId: 'channel-65', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -2305,6 +9563,27 @@ Generated by [AVA](https://avajs.dev). }, }, ], + [ + 'published.agoricNames.chainConnection.stargaze-1_vota-ash', + { + client_id: '07-tendermint-368', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-30', + }, + id: 'connection-318', + state: 3, + transferChannel: { + channelId: 'channel-394', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + ], [ 'published.agoricNames.chainConnection.stride-1_umee-1', { diff --git a/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.snap b/packages/boot/test/bootstrapTests/snapshots/orchestration.test.ts.snap index d018a0d07a009ba20614ceb6aaeff66e1cefe4aa..30ee6bae6fe836ffeb94120cfcd9a6070f59a9e2 100644 GIT binary patch literal 58351 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�Qp>U_So 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 WYzC3fa({ { await evalProposal( buildProposal('@agoric/builders/scripts/testing/init-send-anywhere.js', [ '--chainInfo', - JSON.stringify(withChainCapabilities(fetchedChainInfo)), + JSON.stringify( + withChainCapabilities({ + agoric: fetchedChainInfo.agoric, + osmosis: fetchedChainInfo.osmosis, + dydx: fetchedChainInfo.dydx, + noble: fetchedChainInfo.noble, + cosmoshub: fetchedChainInfo.cosmoshub, + }), + ), '--assetInfo', JSON.stringify([ [ diff --git a/packages/boot/test/orchestration/restart-contracts.test.ts b/packages/boot/test/orchestration/restart-contracts.test.ts index bf5d22efd071..6ee48efdca0e 100644 --- a/packages/boot/test/orchestration/restart-contracts.test.ts +++ b/packages/boot/test/orchestration/restart-contracts.test.ts @@ -39,7 +39,15 @@ test.serial('send-anywhere', async t => { await evalProposal( buildProposal('@agoric/builders/scripts/testing/init-send-anywhere.js', [ '--chainInfo', - JSON.stringify(withChainCapabilities(fetchedChainInfo)), + JSON.stringify( + withChainCapabilities({ + agoric: fetchedChainInfo.agoric, + osmosis: fetchedChainInfo.osmosis, + dydx: fetchedChainInfo.dydx, + noble: fetchedChainInfo.noble, + cosmoshub: fetchedChainInfo.cosmoshub, + }), + ), '--assetInfo', JSON.stringify([ [ diff --git a/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.md b/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.md index abab8df6efde..12af40b7ff54 100644 --- a/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.md +++ b/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.md @@ -46,6 +46,7 @@ Generated by [AVA](https://avajs.dev). agoric: { bech32Prefix: 'agoric', chainId: 'agoric-3', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -57,12 +58,14 @@ Generated by [AVA](https://avajs.dev). noble: { bech32Prefix: 'noble', chainId: 'noble-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, }, osmosis: { bech32Prefix: 'osmo', chainId: 'osmosis-1', + icaEnabled: true, icqEnabled: true, pfmEnabled: true, stakingTokens: [ @@ -73,6 +76,24 @@ Generated by [AVA](https://avajs.dev). }, }, connectionInfos: { + 'agoric-3_core-1': { + client_id: '07-tendermint-93', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-210', + }, + id: 'connection-91', + state: 3, + transferChannel: { + channelId: 'channel-72', + counterPartyChannelId: 'channel-202', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, 'agoric-3_cosmoshub-4': { client_id: '07-tendermint-6', counterparty: { @@ -91,6 +112,96 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, + 'agoric-3_crescent-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_evmos__9001-2': { + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-70', + }, + id: 'connection-66', + state: 3, + transferChannel: { + channelId: 'channel-57', + counterPartyChannelId: 'channel-85', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_kaiyo-1': { + client_id: '07-tendermint-20', + counterparty: { + client_id: '07-tendermint-94', + connection_id: 'connection-64', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_kava__2222-10': { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-147', + connection_id: 'connection-182', + }, + id: 'connection-73', + state: 3, + transferChannel: { + channelId: 'channel-63', + counterPartyChannelId: 'channel-133', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_neutron-1': { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-108', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-5789', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, 'agoric-3_noble-1': { client_id: '07-tendermint-77', counterparty: { @@ -199,17 +310,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_osmosis-1': { - client_id: '07-tendermint-10', + 'beezee-1_noble-1': { + client_id: '07-tendermint-9', counterparty: { - client_id: '07-tendermint-3012', - connection_id: 'connection-2503', + client_id: '07-tendermint-112', + connection_id: 'connection-107', }, - id: 'connection-2', + id: 'connection-3', state: 3, transferChannel: { - channelId: 'channel-2', - counterPartyChannelId: 'channel-6994', + channelId: 'channel-3', + counterPartyChannelId: 'channel-95', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -217,17 +328,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_noble-1': { - client_id: '07-tendermint-1116', + 'beezee-1_osmosis-1': { + client_id: '07-tendermint-2', counterparty: { - client_id: '07-tendermint-4', - connection_id: 'connection-12', + client_id: '07-tendermint-2154', + connection_id: 'connection-1672', }, - id: 'connection-790', + id: 'connection-0', state: 3, transferChannel: { - channelId: 'channel-536', - counterPartyChannelId: 'channel-4', + channelId: 'channel-0', + counterPartyChannelId: 'channel-340', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -235,17 +346,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_osmosis-1': { - client_id: '07-tendermint-259', + 'carbon-1_osmosis-1': { + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-1808', + connection_id: 'connection-1412', }, - id: 'connection-257', + id: 'connection-1', state: 3, transferChannel: { - channelId: 'channel-141', - counterPartyChannelId: 'channel-0', + channelId: 'channel-0', + counterPartyChannelId: 'channel-188', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -253,17 +364,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_noble-1': { - client_id: '07-tendermint-0', + 'celestia_osmosis-1': { + client_id: '07-tendermint-10', counterparty: { - client_id: '07-tendermint-59', - connection_id: 'connection-57', + client_id: '07-tendermint-3012', + connection_id: 'connection-2503', }, - id: 'connection-0', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-33', + channelId: 'channel-2', + counterPartyChannelId: 'channel-6994', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -271,17 +382,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_osmosis-1': { - client_id: '07-tendermint-3', + 'columbus-5_osmosis-1': { + client_id: '07-tendermint-12', counterparty: { - client_id: '07-tendermint-3009', - connection_id: 'connection-2500', + client_id: '07-tendermint-1215', + connection_id: 'connection-1549', }, - id: 'connection-7', + id: 'connection-11', state: 3, transferChannel: { - channelId: 'channel-3', - counterPartyChannelId: 'channel-6787', + channelId: 'channel-1', + counterPartyChannelId: 'channel-72', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -289,17 +400,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_noble-1': { - client_id: '07-tendermint-334', + 'core-1_noble-1': { + client_id: '07-tendermint-160', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-8', + client_id: '07-tendermint-61', + connection_id: 'connection-59', }, - id: 'connection-322', + id: 'connection-198', state: 3, transferChannel: { - channelId: 'channel-224', - counterPartyChannelId: 'channel-3', + channelId: 'channel-132', + counterPartyChannelId: 'channel-36', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -307,17 +418,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_osmosis-1': { - client_id: '07-tendermint-0', + 'core-1_osmosis-1': { + client_id: '07-tendermint-6', counterparty: { - client_id: '07-tendermint-1457', - connection_id: 'connection-1142', + client_id: '07-tendermint-3', + connection_id: 'connection-4', }, - id: 'connection-0', + id: 'connection-5', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-42', + channelId: 'channel-6', + counterPartyChannelId: 'channel-4', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -325,17 +436,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_noble-1': { - client_id: '07-tendermint-40', + 'coreum-mainnet-1_noble-1': { + client_id: '07-tendermint-32', counterparty: { - client_id: '07-tendermint-25', - connection_id: 'connection-34', + client_id: '07-tendermint-71', + connection_id: 'connection-72', }, - id: 'connection-31', + id: 'connection-21', state: 3, transferChannel: { - channelId: 'channel-30', - counterPartyChannelId: 'channel-18', + channelId: 'channel-19', + counterPartyChannelId: 'channel-49', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -343,17 +454,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_osmosis-1': { - client_id: '07-tendermint-19', + 'coreum-mainnet-1_osmosis-1': { + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-2823', - connection_id: 'connection-2338', + client_id: '07-tendermint-2929', + connection_id: 'connection-2426', }, - id: 'connection-18', + id: 'connection-3', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-874', + channelId: 'channel-2', + counterPartyChannelId: 'channel-2188', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -361,17 +472,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_omniflixhub-1': { - client_id: '07-tendermint-68', + 'cosmoshub-4_noble-1': { + client_id: '07-tendermint-1116', counterparty: { - client_id: '07-tendermint-51', - connection_id: 'connection-49', + client_id: '07-tendermint-4', + connection_id: 'connection-12', }, - id: 'connection-65', + id: 'connection-790', state: 3, transferChannel: { - channelId: 'channel-44', - counterPartyChannelId: 'channel-38', + channelId: 'channel-536', + counterPartyChannelId: 'channel-4', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -379,17 +490,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_osmosis-1': { - client_id: '07-tendermint-0', + 'cosmoshub-4_osmosis-1': { + client_id: '07-tendermint-259', counterparty: { - client_id: '07-tendermint-2704', - connection_id: 'connection-2241', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, - id: 'connection-2', + id: 'connection-257', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-750', + channelId: 'channel-141', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -397,17 +508,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_secret-4': { - client_id: '07-tendermint-24', + 'crescent-1_noble-1': { + client_id: '07-tendermint-68', counterparty: { - client_id: '07-tendermint-170', - connection_id: 'connection-127', + client_id: '07-tendermint-1', + connection_id: 'connection-1', }, - id: 'connection-33', + id: 'connection-63', state: 3, transferChannel: { - channelId: 'channel-17', - counterPartyChannelId: 'channel-88', + channelId: 'channel-38', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -415,17 +526,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_stargaze-1': { - client_id: '07-tendermint-16', + 'crescent-1_osmosis-1': { + client_id: '07-tendermint-17', counterparty: { - client_id: '07-tendermint-287', - connection_id: 'connection-214', + client_id: '07-tendermint-2083', + connection_id: 'connection-1624', }, - id: 'connection-25', + id: 'connection-12', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-204', + channelId: 'channel-9', + counterPartyChannelId: 'channel-297', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -433,17 +544,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_umee-1': { - client_id: '07-tendermint-73', + 'dydx-mainnet-1_noble-1': { + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-248', - connection_id: 'connection-210', + client_id: '07-tendermint-59', + connection_id: 'connection-57', }, - id: 'connection-74', + id: 'connection-0', state: 3, transferChannel: { - channelId: 'channel-51', - counterPartyChannelId: 'channel-120', + channelId: 'channel-0', + counterPartyChannelId: 'channel-33', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -451,17 +562,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'omniflixhub-1_osmosis-1': { - client_id: '07-tendermint-8', + 'dydx-mainnet-1_osmosis-1': { + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-1829', - connection_id: 'connection-1431', + client_id: '07-tendermint-3009', + connection_id: 'connection-2500', }, - id: 'connection-8', + id: 'connection-7', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-199', + channelId: 'channel-3', + counterPartyChannelId: 'channel-6787', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -469,17 +580,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_secret-4': { - client_id: '07-tendermint-1588', + 'dymension__1100-1_noble-1': { + client_id: '07-tendermint-14', counterparty: { - client_id: '07-tendermint-2', - connection_id: 'connection-1', + client_id: '07-tendermint-79', + connection_id: 'connection-80', }, - id: 'connection-1244', + id: 'connection-7', state: 3, transferChannel: { - channelId: 'channel-88', - counterPartyChannelId: 'channel-1', + channelId: 'channel-6', + counterPartyChannelId: 'channel-62', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -487,17 +598,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_stargaze-1': { - client_id: '07-tendermint-1562', + 'dymension__1100-1_osmosis-1': { + client_id: '07-tendermint-2', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-3086', + connection_id: 'connection-2566', }, - id: 'connection-1223', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-75', - counterPartyChannelId: 'channel-0', + channelId: 'channel-2', + counterPartyChannelId: 'channel-19774', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -505,17 +616,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_stride-1': { - client_id: '07-tendermint-2119', + 'empowerchain-1_osmosis-1': { + client_id: '07-tendermint-1', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-2', + client_id: '07-tendermint-2848', + connection_id: 'connection-2360', }, - id: 'connection-1657', + id: 'connection-1', state: 3, transferChannel: { - channelId: 'channel-326', - counterPartyChannelId: 'channel-5', + channelId: 'channel-1', + counterPartyChannelId: 'channel-1411', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -523,8 +634,764 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_umee-1': { - client_id: '07-tendermint-1805', + 'evmos__9001-2_noble-1': { + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-19', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-64', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_osmosis-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1840', + connection_id: 'connection-1440', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_noble-1': { + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-58', + connection_id: 'connection-56', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-32', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2871', + connection_id: 'connection-2388', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-1575', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_noble-1': { + client_id: '07-tendermint-212', + counterparty: { + client_id: '07-tendermint-57', + connection_id: 'connection-55', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-148', + counterPartyChannelId: 'channel-31', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_osmosis-1': { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-1703', + connection_id: 'connection-1298', + }, + id: 'connection-14', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_noble-1': { + client_id: '07-tendermint-334', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-8', + }, + id: 'connection-322', + state: 3, + transferChannel: { + channelId: 'channel-224', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_osmosis-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1457', + connection_id: 'connection-1142', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_noble-1': { + client_id: '07-tendermint-95', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-4', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2017', + connection_id: 'connection-1559', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-259', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_noble-1': { + client_id: '07-tendermint-172', + counterparty: { + client_id: '07-tendermint-107', + connection_id: 'connection-102', + }, + id: 'connection-214', + state: 3, + transferChannel: { + channelId: 'channel-151', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_osmosis-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1735', + connection_id: 'connection-1328', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-143', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1_noble-1': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-115', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-105', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1_osmosis-1': { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-3210', + connection_id: 'connection-2668', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-76971', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1_noble-1': { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-28', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-60', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2669', + connection_id: 'connection-2171', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-642', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1_noble-1': { + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-34', + }, + id: 'connection-31', + state: 3, + transferChannel: { + channelId: 'channel-30', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'neutron-1_osmosis-1': { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-2823', + connection_id: 'connection-2338', + }, + id: 'connection-18', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-874', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_omniflixhub-1': { + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-51', + connection_id: 'connection-49', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-44', + counterPartyChannelId: 'channel-38', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_osmosis-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-2704', + connection_id: 'connection-2241', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-750', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_pacific-1': { + client_id: '07-tendermint-64', + counterparty: { + client_id: '07-tendermint-45', + connection_id: 'connection-77', + }, + id: 'connection-61', + state: 3, + transferChannel: { + channelId: 'channel-39', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_pio-mainnet-1': { + client_id: '07-tendermint-30', + counterparty: { + client_id: '07-tendermint-36', + connection_id: 'connection-13', + }, + id: 'connection-37', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-10', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_planq__7070-2': { + client_id: '07-tendermint-103', + counterparty: { + client_id: '07-tendermint-567', + connection_id: 'connection-490', + }, + id: 'connection-95', + state: 3, + transferChannel: { + channelId: 'channel-82', + counterPartyChannelId: 'channel-63', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_pryzm-1': { + client_id: '07-tendermint-100', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + id: 'connection-92', + state: 3, + transferChannel: { + channelId: 'channel-79', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_secret-4': { + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-127', + }, + id: 'connection-33', + state: 3, + transferChannel: { + channelId: 'channel-17', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_shido__9008-1': { + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-11', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_stargaze-1': { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-287', + connection_id: 'connection-214', + }, + id: 'connection-25', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_titan__18888-1': { + client_id: '07-tendermint-114', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-109', + state: 3, + transferChannel: { + channelId: 'channel-99', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_umee-1': { + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-248', + connection_id: 'connection-210', + }, + id: 'connection-74', + state: 3, + transferChannel: { + channelId: 'channel-51', + counterPartyChannelId: 'channel-120', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_vota-ash': { + client_id: '07-tendermint-111', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-29', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-94', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'omniflixhub-1_osmosis-1': { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-1829', + connection_id: 'connection-1431', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-199', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_pacific-1': { + client_id: '07-tendermint-2790', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-0', + }, + id: 'connection-2288', + state: 3, + transferChannel: { + channelId: 'channel-782', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_pio-mainnet-1': { + client_id: '07-tendermint-1899', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-9', + }, + id: 'connection-1472', + state: 3, + transferChannel: { + channelId: 'channel-222', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_pirin-1': { + client_id: '07-tendermint-2791', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-2289', + state: 3, + transferChannel: { + channelId: 'channel-783', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_planq__7070-2': { + client_id: '07-tendermint-2318', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-1815', + state: 3, + transferChannel: { + channelId: 'channel-492', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_pryzm-1': { + client_id: '07-tendermint-3206', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + id: 'connection-2663', + state: 3, + transferChannel: { + channelId: 'channel-75755', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_quicksilver-2': { + client_id: '07-tendermint-2400', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-2', + }, + id: 'connection-1889', + state: 3, + transferChannel: { + channelId: 'channel-522', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_secret-4': { + client_id: '07-tendermint-1588', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + id: 'connection-1244', + state: 3, + transferChannel: { + channelId: 'channel-88', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_shido__9008-1': { + client_id: '07-tendermint-3198', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-2654', + state: 3, + transferChannel: { + channelId: 'channel-73755', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_sifchain-1': { + client_id: '07-tendermint-1484', + counterparty: { + client_id: '07-tendermint-41', + connection_id: 'connection-20', + }, + id: 'connection-1159', + state: 3, + transferChannel: { + channelId: 'channel-47', + counterPartyChannelId: 'channel-17', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_stargaze-1': { + client_id: '07-tendermint-1562', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-1223', + state: 3, + transferChannel: { + channelId: 'channel-75', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_stride-1': { + client_id: '07-tendermint-2119', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-2', + }, + id: 'connection-1657', + state: 3, + transferChannel: { + channelId: 'channel-326', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'osmosis-1_umee-1': { + client_id: '07-tendermint-1805', counterparty: { client_id: '07-tendermint-6', connection_id: 'connection-0', @@ -541,6 +1408,24 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, + 'osmosis-1_vota-ash': { + client_id: '07-tendermint-2959', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-1', + }, + id: 'connection-2454', + state: 3, + transferChannel: { + channelId: 'channel-2694', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, }, denom: { 'agoric:ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9': { diff --git a/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.snap b/packages/fast-usdc/test/snapshots/fast-usdc.contract.test.ts.snap index 07715403500491ee6710fbbd04df01f97ac872bf..47d1c48a1f6e82d82780cdbf6b3c307674d1d9b6 100644 GIT binary patch literal 11189 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 T_9%zbXm|cU6LSTqBMt!o;f}>B literal 5841 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 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 8fa9ef07e1f2..479c5dfbd5d5 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 557d25e05851..a671d8e3d3be 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 651633fd1ad1..934647692ad2 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 25789864729f..426caff030f2 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), }; } diff --git a/packages/orchestration/test/chain-info.test.js b/packages/orchestration/test/chain-info.test.js index e6700ba99823..2378edffa2d5 100644 --- a/packages/orchestration/test/chain-info.test.js +++ b/packages/orchestration/test/chain-info.test.js @@ -13,19 +13,46 @@ test('chain-info', async t => { chainId: 'cosmoshub-4', stakingTokens: [{ denom: 'uatom' }], }); - t.deepEqual(chainNames.keys(), [ + t.deepEqual([...chainNames.keys()].sort(), [ 'agoric', + 'archway', + 'beezee', + 'carbon', 'celestia', + 'coreum', 'cosmoshub', + 'crescent', + 'doravota', 'dydx', + 'dymension', + 'empowerchain', + 'evmos', + 'haqq', + 'injective', 'juno', + 'kava', + 'kujira', + 'lava', + 'migaloo', 'neutron', + 'nibiru', 'noble', + 'nolus', 'omniflixhub', 'osmosis', + 'persistence', + 'planq', + 'provenance', + 'pryzm', + 'quicksilver', 'secretnetwork', + 'sei', + 'shido', + 'sifchain', 'stargaze', 'stride', + 'terra', + 'titan', 'umee', ]); t.snapshot(chainNames.entries()); diff --git a/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.md b/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.md index df818b1eba8b..868734cd465d 100644 --- a/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.md +++ b/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.md @@ -36,17 +36,44 @@ Generated by [AVA](https://avajs.dev). ChainHub_singleton: 'Alleged: ChainHub', bech32PrefixToChainName: { agoric: 'agoric', + archway: 'archway', + bze: 'beezee', celestia: 'celestia', + core: 'coreum', cosmos: 'cosmoshub', + cre: 'crescent', + dora: 'doravota', dydx: 'dydx', + dym: 'dymension', + empower: 'empowerchain', + evmos: 'evmos', + haqq: 'haqq', + inj: 'injective', juno: 'juno', + kava: 'kava', + kujira: 'kujira', + 'lava@': 'lava', + migaloo: 'migaloo', neutron: 'neutron', + nibi: 'nibiru', noble: 'noble', + nolus: 'nolus', omniflix: 'omniflixhub', osmo: 'osmosis', + pb: 'provenance', + persistence: 'persistence', + plq: 'planq', + pryzm: 'pryzm', + quick: 'quicksilver', secret: 'secretnetwork', + sei: 'sei', + shido: 'shido', + sif: 'sifchain', stars: 'stargaze', stride: 'stride', + swth: 'carbon', + terra: 'terra', + titan: 'titan', umee: 'umee', }, brandDenom: { @@ -57,6 +84,7 @@ Generated by [AVA](https://avajs.dev). agoric: { bech32Prefix: 'agoric', chainId: 'agoric-3', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -65,9 +93,46 @@ Generated by [AVA](https://avajs.dev). }, ], }, + archway: { + bech32Prefix: 'archway', + chainId: 'archway-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'aarch', + }, + ], + }, + beezee: { + bech32Prefix: 'bze', + chainId: 'beezee-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ubze', + }, + ], + }, + carbon: { + bech32Prefix: 'swth', + chainId: 'carbon-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'swth', + }, + ], + }, celestia: { bech32Prefix: 'celestia', chainId: 'celestia', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -76,9 +141,22 @@ Generated by [AVA](https://avajs.dev). }, ], }, + coreum: { + bech32Prefix: 'core', + chainId: 'coreum-mainnet-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ucore', + }, + ], + }, cosmoshub: { bech32Prefix: 'cosmos', chainId: 'cosmoshub-4', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -87,9 +165,34 @@ Generated by [AVA](https://avajs.dev). }, ], }, + crescent: { + bech32Prefix: 'cre', + chainId: 'crescent-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ucre', + }, + ], + }, + doravota: { + bech32Prefix: 'dora', + chainId: 'vota-ash', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'peaka', + }, + ], + }, dydx: { bech32Prefix: 'dydx', chainId: 'dydx-mainnet-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: false, stakingTokens: [ @@ -98,9 +201,70 @@ Generated by [AVA](https://avajs.dev). }, ], }, + dymension: { + bech32Prefix: 'dym', + chainId: 'dymension_1100-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'adym', + }, + ], + }, + empowerchain: { + bech32Prefix: 'empower', + chainId: 'empowerchain-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'umpwr', + }, + ], + }, + evmos: { + bech32Prefix: 'evmos', + chainId: 'evmos_9001-2', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'aevmos', + }, + ], + }, + haqq: { + bech32Prefix: 'haqq', + chainId: 'haqq_11235-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'aISLM', + }, + ], + }, + injective: { + bech32Prefix: 'inj', + chainId: 'injective-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'inj', + }, + ], + }, juno: { bech32Prefix: 'juno', chainId: 'juno-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -109,9 +273,58 @@ Generated by [AVA](https://avajs.dev). }, ], }, + kava: { + bech32Prefix: 'kava', + chainId: 'kava_2222-10', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ukava', + }, + ], + }, + kujira: { + bech32Prefix: 'kujira', + chainId: 'kaiyo-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ukuji', + }, + ], + }, + lava: { + bech32Prefix: 'lava@', + chainId: 'lava-mainnet-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'ulava', + }, + ], + }, + migaloo: { + bech32Prefix: 'migaloo', + chainId: 'migaloo-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'uwhale', + }, + ], + }, neutron: { bech32Prefix: 'neutron', chainId: 'neutron-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -120,15 +333,41 @@ Generated by [AVA](https://avajs.dev). }, ], }, + nibiru: { + bech32Prefix: 'nibi', + chainId: 'cataclysm-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'unibi', + }, + ], + }, noble: { bech32Prefix: 'noble', chainId: 'noble-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, }, + nolus: { + bech32Prefix: 'nolus', + chainId: 'pirin-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'unls', + }, + ], + }, omniflixhub: { bech32Prefix: 'omniflix', chainId: 'omniflixhub-1', + icaEnabled: true, icqEnabled: true, pfmEnabled: true, stakingTokens: [ @@ -140,6 +379,7 @@ Generated by [AVA](https://avajs.dev). osmosis: { bech32Prefix: 'osmo', chainId: 'osmosis-1', + icaEnabled: true, icqEnabled: true, pfmEnabled: true, stakingTokens: [ @@ -148,9 +388,70 @@ Generated by [AVA](https://avajs.dev). }, ], }, + persistence: { + bech32Prefix: 'persistence', + chainId: 'core-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'uxprt', + }, + ], + }, + planq: { + bech32Prefix: 'plq', + chainId: 'planq_7070-2', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'aplanq', + }, + ], + }, + provenance: { + bech32Prefix: 'pb', + chainId: 'pio-mainnet-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'nhash', + }, + ], + }, + pryzm: { + bech32Prefix: 'pryzm', + chainId: 'pryzm-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'upryzm', + }, + ], + }, + quicksilver: { + bech32Prefix: 'quick', + chainId: 'quicksilver-2', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'uqck', + }, + ], + }, secretnetwork: { bech32Prefix: 'secret', chainId: 'secret-4', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -159,9 +460,46 @@ Generated by [AVA](https://avajs.dev). }, ], }, + sei: { + bech32Prefix: 'sei', + chainId: 'pacific-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'usei', + }, + ], + }, + shido: { + bech32Prefix: 'shido', + chainId: 'shido_9008-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'shido', + }, + ], + }, + sifchain: { + bech32Prefix: 'sif', + chainId: 'sifchain-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'rowan', + }, + ], + }, stargaze: { bech32Prefix: 'stars', chainId: 'stargaze-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -173,6 +511,7 @@ Generated by [AVA](https://avajs.dev). stride: { bech32Prefix: 'stride', chainId: 'stride-1', + icaEnabled: true, icqEnabled: false, pfmEnabled: true, stakingTokens: [ @@ -181,30 +520,2971 @@ Generated by [AVA](https://avajs.dev). }, ], }, - umee: { - bech32Prefix: 'umee', - chainId: 'umee-1', - icqEnabled: false, - pfmEnabled: true, - stakingTokens: [ - { - denom: 'uumee', - }, - ], + terra: { + bech32Prefix: 'terra', + chainId: 'columbus-5', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'uluna', + }, + ], + }, + titan: { + bech32Prefix: 'titan', + chainId: 'titan_18888-1', + icaEnabled: false, + icqEnabled: false, + pfmEnabled: false, + stakingTokens: [ + { + denom: 'atkx', + }, + ], + }, + umee: { + bech32Prefix: 'umee', + chainId: 'umee-1', + icaEnabled: true, + icqEnabled: false, + pfmEnabled: true, + stakingTokens: [ + { + denom: 'uumee', + }, + ], + }, + }, + connectionInfos: { + 'agoric-3_core-1': { + client_id: '07-tendermint-93', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-210', + }, + id: 'connection-91', + state: 3, + transferChannel: { + channelId: 'channel-72', + counterPartyChannelId: 'channel-202', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_cosmoshub-4': { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-927', + connection_id: 'connection-649', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-405', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_crescent-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-14', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_evmos__9001-2': { + client_id: '07-tendermint-72', + counterparty: { + client_id: '07-tendermint-116', + connection_id: 'connection-70', + }, + id: 'connection-66', + state: 3, + transferChannel: { + channelId: 'channel-57', + counterPartyChannelId: 'channel-85', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_kaiyo-1': { + client_id: '07-tendermint-20', + counterparty: { + client_id: '07-tendermint-94', + connection_id: 'connection-64', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-61', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_kava__2222-10': { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-147', + connection_id: 'connection-182', + }, + id: 'connection-73', + state: 3, + transferChannel: { + channelId: 'channel-63', + counterPartyChannelId: 'channel-133', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_neutron-1': { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-108', + }, + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-5789', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_noble-1': { + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-32', + connection_id: 'connection-40', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-21', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_omniflixhub-1': { + client_id: '07-tendermint-73', + counterparty: { + client_id: '07-tendermint-47', + connection_id: 'connection-40', + }, + id: 'connection-67', + state: 3, + transferChannel: { + channelId: 'channel-58', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_osmosis-1': { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2109', + connection_id: 'connection-1649', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-320', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_secret-4': { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-111', + connection_id: 'connection-80', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_stride-1': { + client_id: '07-tendermint-74', + counterparty: { + client_id: '07-tendermint-129', + connection_id: 'connection-118', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-59', + counterPartyChannelId: 'channel-148', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'agoric-3_umee-1': { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-152', + connection_id: 'connection-101', + }, + id: 'connection-18', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1_dymension__1100-1': { + client_id: '07-tendermint-91', + counterparty: { + client_id: '07-tendermint-39', + connection_id: 'connection-30', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-123', + counterPartyChannelId: 'channel-45', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1_migaloo-1': { + client_id: '07-tendermint-119', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-108', + }, + id: 'connection-114', + state: 3, + transferChannel: { + channelId: 'channel-184', + counterPartyChannelId: 'channel-141', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1_neutron-1': { + client_id: '07-tendermint-51', + counterparty: { + client_id: '07-tendermint-62', + connection_id: 'connection-43', + }, + id: 'connection-58', + state: 3, + transferChannel: { + channelId: 'channel-61', + counterPartyChannelId: 'channel-41', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1_planq__7070-2': { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-561', + connection_id: 'connection-486', + }, + id: 'connection-83', + state: 3, + transferChannel: { + channelId: 'channel-112', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'archway-1_vota-ash': { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-22', + connection_id: 'connection-28', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-146', + counterPartyChannelId: 'channel-13', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1_noble-1': { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-95', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1_omniflixhub-1': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-75', + connection_id: 'connection-55', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-50', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'beezee-1_osmosis-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-2154', + connection_id: 'connection-1672', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-340', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_cosmoshub-4': { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-765', + connection_id: 'connection-554', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-342', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_evmos__9001-2': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-29', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_kaiyo-1': { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-60', + connection_id: 'connection-40', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-1808', + connection_id: 'connection-1412', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_stargaze-1': { + client_id: '07-tendermint-36', + counterparty: { + client_id: '07-tendermint-224', + connection_id: 'connection-158', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-123', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'carbon-1_stride-1': { + client_id: '07-tendermint-13', + counterparty: { + client_id: '07-tendermint-40', + connection_id: 'connection-27', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-47', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_dymension__1100-1': { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-6', + connection_id: 'connection-5', + }, + id: 'connection-52', + state: 3, + transferChannel: { + channelId: 'channel-27', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_evmos__9001-2': { + client_id: '07-tendermint-79', + counterparty: { + client_id: '07-tendermint-134', + connection_id: 'connection-80', + }, + id: 'connection-49', + state: 3, + transferChannel: { + channelId: 'channel-26', + counterPartyChannelId: 'channel-106', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_injective-1': { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-226', + connection_id: 'connection-210', + }, + id: 'connection-6', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-152', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_kava__2222-10': { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-198', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-140', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_neutron-1': { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-36', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-35', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_osmosis-1': { + client_id: '07-tendermint-10', + counterparty: { + client_id: '07-tendermint-3012', + connection_id: 'connection-2503', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-6994', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_pryzm-1': { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-57', + state: 3, + transferChannel: { + channelId: 'channel-34', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_secret-4': { + client_id: '07-tendermint-52', + counterparty: { + client_id: '07-tendermint-174', + connection_id: 'connection-131', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-14', + counterPartyChannelId: 'channel-91', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_stargaze-1': { + client_id: '07-tendermint-86', + counterparty: { + client_id: '07-tendermint-359', + connection_id: 'connection-296', + }, + id: 'connection-56', + state: 3, + transferChannel: { + channelId: 'channel-33', + counterPartyChannelId: 'channel-291', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'celestia_stride-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-137', + connection_id: 'connection-125', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-162', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5_crescent-1': { + client_id: '07-tendermint-101', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-70', + state: 3, + transferChannel: { + channelId: 'channel-49', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5_juno-1': { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-63', + connection_id: 'connection-43', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-27', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5_migaloo-1': { + client_id: '07-tendermint-244', + counterparty: { + client_id: '07-tendermint-122', + connection_id: 'connection-92', + }, + id: 'connection-151', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-114', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc', + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5_osmosis-1': { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-1215', + connection_id: 'connection-1549', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-72', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'columbus-5_secret-4': { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-16', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_crescent-1': { + client_id: '07-tendermint-88', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-41', + }, + id: 'connection-72', + state: 3, + transferChannel: { + channelId: 'channel-68', + counterPartyChannelId: 'channel-30', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_dydx-mainnet-1': { + client_id: '07-tendermint-159', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-8', + }, + id: 'connection-197', + state: 3, + transferChannel: { + channelId: 'channel-131', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_injective-1': { + client_id: '07-tendermint-57', + counterparty: { + client_id: '07-tendermint-110', + connection_id: 'connection-91', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-41', + counterPartyChannelId: 'channel-82', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_juno-1': { + client_id: '07-tendermint-49', + counterparty: { + client_id: '07-tendermint-89', + connection_id: 'connection-51', + }, + id: 'connection-48', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_kaiyo-1': { + client_id: '07-tendermint-162', + counterparty: { + client_id: '07-tendermint-167', + connection_id: 'connection-130', + }, + id: 'connection-200', + state: 3, + transferChannel: { + channelId: 'channel-152', + counterPartyChannelId: 'channel-158', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_kava__2222-10': { + client_id: '07-tendermint-156', + counterparty: { + client_id: '07-tendermint-148', + connection_id: 'connection-189', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-129', + counterPartyChannelId: 'channel-134', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_neutron-1': { + client_id: '07-tendermint-161', + counterparty: { + client_id: '07-tendermint-73', + connection_id: 'connection-52', + }, + id: 'connection-199', + state: 3, + transferChannel: { + channelId: 'channel-136', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_noble-1': { + client_id: '07-tendermint-160', + counterparty: { + client_id: '07-tendermint-61', + connection_id: 'connection-59', + }, + id: 'connection-198', + state: 3, + transferChannel: { + channelId: 'channel-132', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_osmosis-1': { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-4', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_stargaze-1': { + client_id: '07-tendermint-166', + counterparty: { + client_id: '07-tendermint-358', + connection_id: 'connection-293', + }, + id: 'connection-207', + state: 3, + transferChannel: { + channelId: 'channel-197', + counterPartyChannelId: 'channel-287', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'core-1_umee-1': { + client_id: '07-tendermint-105', + counterparty: { + client_id: '07-tendermint-179', + connection_id: 'connection-119', + }, + id: 'connection-144', + state: 3, + transferChannel: { + channelId: 'channel-81', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_cosmoshub-4': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-1162', + connection_id: 'connection-884', + }, + id: 'connection-11', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-660', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_dydx-mainnet-1': { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-20', + }, + id: 'connection-26', + state: 3, + transferChannel: { + channelId: 'channel-24', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_evmos__9001-2': { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-117', + connection_id: 'connection-71', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-87', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_kaiyo-1': { + client_id: '07-tendermint-28', + counterparty: { + client_id: '07-tendermint-163', + connection_id: 'connection-126', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-17', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_kava__2222-10': { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-200', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-142', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_noble-1': { + client_id: '07-tendermint-32', + counterparty: { + client_id: '07-tendermint-71', + connection_id: 'connection-72', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-19', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2929', + connection_id: 'connection-2426', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-2188', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_secret-4': { + client_id: '07-tendermint-40', + counterparty: { + client_id: '07-tendermint-186', + connection_id: 'connection-138', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-25', + counterPartyChannelId: 'channel-101', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'coreum-mainnet-1_vota-ash': { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-4', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_crescent-1': { + client_id: '07-tendermint-724', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-538', + state: 3, + transferChannel: { + channelId: 'channel-326', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_dymension__1100-1': { + client_id: '07-tendermint-1205', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-933', + state: 3, + transferChannel: { + channelId: 'channel-794', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_empowerchain-1': { + client_id: '07-tendermint-1151', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-872', + state: 3, + transferChannel: { + channelId: 'channel-621', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_evmos__9001-2': { + client_id: '07-tendermint-620', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-3', + }, + id: 'connection-480', + state: 3, + transferChannel: { + channelId: 'channel-292', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_haqq__11235-1': { + client_id: '07-tendermint-1153', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + id: 'connection-874', + state: 3, + transferChannel: { + channelId: 'channel-632', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_injective-1': { + client_id: '07-tendermint-470', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-2', + }, + id: 'connection-388', + state: 3, + transferChannel: { + channelId: 'channel-220', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_juno-1': { + client_id: '07-tendermint-439', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-2', + }, + id: 'connection-372', + state: 3, + transferChannel: { + channelId: 'channel-207', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_kaiyo-1': { + client_id: '07-tendermint-769', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-555', + state: 3, + transferChannel: { + channelId: 'channel-343', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_kava__2222-10': { + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-460', + state: 3, + transferChannel: { + channelId: 'channel-277', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_lava-mainnet-1': { + client_id: '07-tendermint-1318', + counterparty: { + client_id: '07-tendermint-7', + connection_id: 'connection-12', + }, + id: 'connection-1050', + state: 3, + transferChannel: { + channelId: 'channel-969', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_neutron-1': { + client_id: '07-tendermint-1119', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-809', + state: 3, + transferChannel: { + channelId: 'channel-569', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_noble-1': { + client_id: '07-tendermint-1116', + counterparty: { + client_id: '07-tendermint-4', + connection_id: 'connection-12', + }, + id: 'connection-790', + state: 3, + transferChannel: { + channelId: 'channel-536', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_omniflixhub-1': { + client_id: '07-tendermint-656', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-19', + }, + id: 'connection-501', + state: 3, + transferChannel: { + channelId: 'channel-306', + counterPartyChannelId: 'channel-12', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_osmosis-1': { + client_id: '07-tendermint-259', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-257', + state: 3, + transferChannel: { + channelId: 'channel-141', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_pacific-1': { + client_id: '07-tendermint-1140', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-1', + }, + id: 'connection-827', + state: 3, + transferChannel: { + channelId: 'channel-584', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_planq__7070-2': { + client_id: '07-tendermint-994', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-3', + }, + id: 'connection-693', + state: 3, + transferChannel: { + channelId: 'channel-446', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_pryzm-1': { + client_id: '07-tendermint-1304', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-1038', + state: 3, + transferChannel: { + channelId: 'channel-859', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_secret-4': { + client_id: '07-tendermint-492', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-0', + }, + id: 'connection-401', + state: 3, + transferChannel: { + channelId: 'channel-235', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_stargaze-1': { + client_id: '07-tendermint-1188', + counterparty: { + client_id: '07-tendermint-320', + connection_id: 'connection-256', + }, + id: 'connection-918', + state: 3, + transferChannel: { + channelId: 'channel-730', + counterPartyChannelId: 'channel-239', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_stride-1': { + client_id: '07-tendermint-913', + counterparty: { + client_id: '07-tendermint-0', + connection_id: 'connection-0', + }, + id: 'connection-635', + state: 3, + transferChannel: { + channelId: 'channel-391', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'cosmoshub-4_vota-ash': { + client_id: '07-tendermint-1191', + counterparty: { + client_id: '07-tendermint-14', + connection_id: 'connection-8', + }, + id: 'connection-920', + state: 3, + transferChannel: { + channelId: 'channel-750', + counterPartyChannelId: 'channel-4', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_evmos__9001-2': { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-15', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-11', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_injective-1': { + client_id: '07-tendermint-26', + counterparty: { + client_id: '07-tendermint-132', + connection_id: 'connection-105', + }, + id: 'connection-29', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-90', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_juno-1': { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-160', + connection_id: 'connection-107', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-81', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_kaiyo-1': { + client_id: '07-tendermint-78', + counterparty: { + client_id: '07-tendermint-105', + connection_id: 'connection-75', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-42', + counterPartyChannelId: 'channel-67', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_noble-1': { + client_id: '07-tendermint-68', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-38', + counterPartyChannelId: 'channel-0', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_osmosis-1': { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-2083', + connection_id: 'connection-1624', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-297', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_secret-4': { + client_id: '07-tendermint-18', + counterparty: { + client_id: '07-tendermint-53', + connection_id: 'connection-31', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_stargaze-1': { + client_id: '07-tendermint-24', + counterparty: { + client_id: '07-tendermint-180', + connection_id: 'connection-114', + }, + id: 'connection-27', + state: 3, + transferChannel: { + channelId: 'channel-21', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_stride-1': { + client_id: '07-tendermint-38', + counterparty: { + client_id: '07-tendermint-44', + connection_id: 'connection-30', + }, + id: 'connection-39', + state: 3, + transferChannel: { + channelId: 'channel-29', + counterPartyChannelId: 'channel-51', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'crescent-1_umee-1': { + client_id: '07-tendermint-56', + counterparty: { + client_id: '07-tendermint-170', + connection_id: 'connection-110', + }, + id: 'connection-53', + state: 3, + transferChannel: { + channelId: 'channel-36', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_evmos__9001-2': { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-135', + connection_id: 'connection-81', + }, + id: 'connection-23', + state: 3, + transferChannel: { + channelId: 'channel-23', + counterPartyChannelId: 'channel-107', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_kaiyo-1': { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-158', + connection_id: 'connection-122', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-5', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_kava__2222-10': { + client_id: '07-tendermint-7', + counterparty: { + client_id: '07-tendermint-154', + connection_id: 'connection-195', + }, + id: 'connection-12', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-137', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_neutron-1': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-72', + connection_id: 'connection-51', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-11', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_noble-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-59', + connection_id: 'connection-57', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-33', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-3009', + connection_id: 'connection-2500', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-6787', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_pryzm-1': { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-9', + }, + id: 'connection-34', + state: 3, + transferChannel: { + channelId: 'channel-71', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_stride-1': { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-133', + connection_id: 'connection-123', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_umee-1': { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-244', + connection_id: 'connection-208', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-118', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dydx-mainnet-1_vota-ash': { + client_id: '07-tendermint-15', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-10', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_evmos__9001-2': { + client_id: '07-tendermint-31', + counterparty: { + client_id: '07-tendermint-138', + connection_id: 'connection-85', + }, + id: 'connection-22', + state: 3, + transferChannel: { + channelId: 'channel-37', + counterPartyChannelId: 'channel-109', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_kaiyo-1': { + client_id: '07-tendermint-17', + counterparty: { + client_id: '07-tendermint-169', + connection_id: 'connection-132', + }, + id: 'connection-10', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-160', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_kava__2222-10': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-162', + connection_id: 'connection-203', + }, + id: 'connection-3', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-144', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_neutron-1': { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-82', + connection_id: 'connection-61', + }, + id: 'connection-9', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-675', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_noble-1': { + client_id: '07-tendermint-14', + counterparty: { + client_id: '07-tendermint-79', + connection_id: 'connection-80', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-62', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_osmosis-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-3086', + connection_id: 'connection-2566', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-19774', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_secret-4': { + client_id: '07-tendermint-29', + counterparty: { + client_id: '07-tendermint-194', + connection_id: 'connection-189', + }, + id: 'connection-20', + state: 3, + transferChannel: { + channelId: 'channel-35', + counterPartyChannelId: 'channel-130', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'dymension__1100-1_stride-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-140', + connection_id: 'connection-131', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-197', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'empowerchain-1_osmosis-1': { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-2848', + connection_id: 'connection-2360', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-1411', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_injective-1': { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-112', + connection_id: 'connection-92', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-83', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_kaiyo-1': { + client_id: '07-tendermint-53', + counterparty: { + client_id: '07-tendermint-25', + connection_id: 'connection-19', + }, + id: 'connection-21', + state: 3, + transferChannel: { + channelId: 'channel-18', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_kava__2222-10': { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-157', + }, + id: 'connection-67', + state: 3, + transferChannel: { + channelId: 'channel-83', + counterPartyChannelId: 'channel-117', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_lava-mainnet-1': { + client_id: '07-tendermint-142', + counterparty: { + client_id: '07-tendermint-9', + connection_id: 'connection-14', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-117', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_noble-1': { + client_id: '07-tendermint-106', + counterparty: { + client_id: '07-tendermint-12', + connection_id: 'connection-19', + }, + id: 'connection-63', + state: 3, + transferChannel: { + channelId: 'channel-64', + counterPartyChannelId: 'channel-7', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_osmosis-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1840', + connection_id: 'connection-1440', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-204', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_secret-4': { + client_id: '07-tendermint-50', + counterparty: { + client_id: '07-tendermint-42', + connection_id: 'connection-24', + }, + id: 'connection-19', + state: 3, + transferChannel: { + channelId: 'channel-15', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_stargaze-1': { + client_id: '07-tendermint-41', + counterparty: { + client_id: '07-tendermint-173', + connection_id: 'connection-104', + }, + id: 'connection-17', + state: 3, + transferChannel: { + channelId: 'channel-13', + counterPartyChannelId: 'channel-46', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'evmos__9001-2_stride-1': { + client_id: '07-tendermint-77', + counterparty: { + client_id: '07-tendermint-8', + connection_id: 'connection-7', + }, + id: 'connection-33', + state: 3, + transferChannel: { + channelId: 'channel-25', + counterPartyChannelId: 'channel-9', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_kava__2222-10': { + client_id: '07-tendermint-5', + counterparty: { + client_id: '07-tendermint-149', + connection_id: 'connection-193', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-6', + counterPartyChannelId: 'channel-135', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_noble-1': { + client_id: '07-tendermint-4', + counterparty: { + client_id: '07-tendermint-58', + connection_id: 'connection-56', + }, + id: 'connection-4', + state: 3, + transferChannel: { + channelId: 'channel-4', + counterPartyChannelId: 'channel-32', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2871', + connection_id: 'connection-2388', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-2', + counterPartyChannelId: 'channel-1575', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'haqq__11235-1_stride-1': { + client_id: '07-tendermint-6', + counterparty: { + client_id: '07-tendermint-143', + connection_id: 'connection-143', + }, + id: 'connection-8', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-240', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_kaiyo-1': { + client_id: '07-tendermint-144', + counterparty: { + client_id: '07-tendermint-77', + connection_id: 'connection-53', + }, + id: 'connection-116', + state: 3, + transferChannel: { + channelId: 'channel-98', + counterPartyChannelId: 'channel-54', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_kava__2222-10': { + client_id: '07-tendermint-205', + counterparty: { + client_id: '07-tendermint-130', + connection_id: 'connection-166', + }, + id: 'connection-189', + state: 3, + transferChannel: { + channelId: 'channel-143', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_migaloo-1': { + client_id: '07-tendermint-154', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-8', + }, + id: 'connection-123', + state: 3, + transferChannel: { + channelId: 'channel-102', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_neutron-1': { + client_id: '07-tendermint-233', + counterparty: { + client_id: '07-tendermint-78', + connection_id: 'connection-58', + }, + id: 'connection-220', + state: 3, + transferChannel: { + channelId: 'channel-177', + counterPartyChannelId: 'channel-60', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_noble-1': { + client_id: '07-tendermint-212', + counterparty: { + client_id: '07-tendermint-57', + connection_id: 'connection-55', + }, + id: 'connection-195', + state: 3, + transferChannel: { + channelId: 'channel-148', + counterPartyChannelId: 'channel-31', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_osmosis-1': { + client_id: '07-tendermint-19', + counterparty: { + client_id: '07-tendermint-1703', + connection_id: 'connection-1298', + }, + id: 'connection-14', + state: 3, + transferChannel: { + channelId: 'channel-8', + counterPartyChannelId: 'channel-122', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_pryzm-1': { + client_id: '07-tendermint-267', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-268', + state: 3, + transferChannel: { + channelId: 'channel-284', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_secret-4': { + client_id: '07-tendermint-126', + counterparty: { + client_id: '07-tendermint-49', + connection_id: 'connection-30', + }, + id: 'connection-101', + state: 3, + transferChannel: { + channelId: 'channel-88', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_stride-1': { + client_id: '07-tendermint-131', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-3', + }, + id: 'connection-103', + state: 3, + transferChannel: { + channelId: 'channel-89', + counterPartyChannelId: 'channel-6', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_umee-1': { + client_id: '07-tendermint-229', + counterparty: { + client_id: '07-tendermint-243', + connection_id: 'connection-206', + }, + id: 'connection-217', + state: 3, + transferChannel: { + channelId: 'channel-159', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'injective-1_vota-ash': { + client_id: '07-tendermint-245', + counterparty: { + client_id: '07-tendermint-15', + connection_id: 'connection-9', + }, + id: 'connection-239', + state: 3, + transferChannel: { + channelId: 'channel-182', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_kaiyo-1': { + client_id: '07-tendermint-198', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-1', + }, + id: 'connection-140', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_migaloo-1': { + client_id: '07-tendermint-310', + counterparty: { + client_id: '07-tendermint-1', + connection_id: 'connection-1', + }, + id: 'connection-282', + state: 3, + transferChannel: { + channelId: 'channel-210', + counterPartyChannelId: 'channel-1', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_neutron-1': { + client_id: '07-tendermint-557', + counterparty: { + client_id: '07-tendermint-97', + connection_id: 'connection-71', + }, + id: 'connection-524', + state: 3, + transferChannel: { + channelId: 'channel-548', + counterPartyChannelId: 'channel-4328', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_noble-1': { + client_id: '07-tendermint-334', + counterparty: { + client_id: '07-tendermint-3', + connection_id: 'connection-8', + }, + id: 'connection-322', + state: 3, + transferChannel: { + channelId: 'channel-224', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_osmosis-1': { + client_id: '07-tendermint-0', + counterparty: { + client_id: '07-tendermint-1457', + connection_id: 'connection-1142', + }, + id: 'connection-0', + state: 3, + transferChannel: { + channelId: 'channel-0', + counterPartyChannelId: 'channel-42', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_secret-4': { + client_id: '07-tendermint-108', + counterparty: { + client_id: '07-tendermint-23', + connection_id: 'connection-9', + }, + id: 'connection-68', + state: 3, + transferChannel: { + channelId: 'channel-48', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_stargaze-1': { + client_id: '07-tendermint-44', + counterparty: { + client_id: '07-tendermint-13', + connection_id: 'connection-11', + }, + id: 'connection-30', + state: 3, + transferChannel: { + channelId: 'channel-20', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'juno-1_stride-1': { + client_id: '07-tendermint-263', + counterparty: { + client_id: '07-tendermint-31', + connection_id: 'connection-19', + }, + id: 'connection-205', + state: 3, + transferChannel: { + channelId: 'channel-139', + counterPartyChannelId: 'channel-24', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_kava__2222-10': { + client_id: '07-tendermint-140', + counterparty: { + client_id: '07-tendermint-119', + connection_id: 'connection-156', + }, + id: 'connection-106', + state: 3, + transferChannel: { + channelId: 'channel-95', + counterPartyChannelId: 'channel-116', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_migaloo-1': { + client_id: '07-tendermint-82', + counterparty: { + client_id: '07-tendermint-16', + connection_id: 'connection-19', + }, + id: 'connection-59', + state: 3, + transferChannel: { + channelId: 'channel-58', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_neutron-1': { + client_id: '07-tendermint-112', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-2', + }, + id: 'connection-82', + state: 3, + transferChannel: { + channelId: 'channel-75', + counterPartyChannelId: 'channel-3', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_noble-1': { + client_id: '07-tendermint-95', + counterparty: { + client_id: '07-tendermint-2', + connection_id: 'connection-4', + }, + id: 'connection-65', + state: 3, + transferChannel: { + channelId: 'channel-62', + counterPartyChannelId: 'channel-2', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_osmosis-1': { + client_id: '07-tendermint-3', + counterparty: { + client_id: '07-tendermint-2017', + connection_id: 'connection-1559', + }, + id: 'connection-2', + state: 3, + transferChannel: { + channelId: 'channel-3', + counterPartyChannelId: 'channel-259', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_planq__7070-2': { + client_id: '07-tendermint-70', + counterparty: { + client_id: '07-tendermint-144', + connection_id: 'connection-151', + }, + id: 'connection-46', + state: 3, + transferChannel: { + channelId: 'channel-51', + counterPartyChannelId: 'channel-23', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_secret-4': { + client_id: '07-tendermint-12', + counterparty: { + client_id: '07-tendermint-48', + connection_id: 'connection-29', + }, + id: 'connection-7', + state: 3, + transferChannel: { + channelId: 'channel-10', + counterPartyChannelId: 'channel-22', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_stargaze-1': { + client_id: '07-tendermint-9', + counterparty: { + client_id: '07-tendermint-178', + connection_id: 'connection-111', + }, + id: 'connection-5', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-49', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kaiyo-1_stride-1': { + client_id: '07-tendermint-37', + counterparty: { + client_id: '07-tendermint-5', + connection_id: 'connection-5', + }, + id: 'connection-31', + state: 3, + transferChannel: { + channelId: 'channel-32', + counterPartyChannelId: 'channel-8', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_migaloo-1': { + client_id: '07-tendermint-125', + counterparty: { + client_id: '07-tendermint-90', + connection_id: 'connection-73', + }, + id: 'connection-162', + state: 3, + transferChannel: { + channelId: 'channel-120', + counterPartyChannelId: 'channel-48', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_neutron-1': { + client_id: '07-tendermint-151', + counterparty: { + client_id: '07-tendermint-54', + connection_id: 'connection-37', + }, + id: 'connection-194', + state: 3, + transferChannel: { + channelId: 'channel-136', + counterPartyChannelId: 'channel-36', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_noble-1': { + client_id: '07-tendermint-172', + counterparty: { + client_id: '07-tendermint-107', + connection_id: 'connection-102', + }, + id: 'connection-214', + state: 3, + transferChannel: { + channelId: 'channel-151', + counterPartyChannelId: 'channel-88', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_osmosis-1': { + client_id: '07-tendermint-2', + counterparty: { + client_id: '07-tendermint-1735', + connection_id: 'connection-1328', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-143', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'kava__2222-10_pacific-1': { + client_id: '07-tendermint-146', + counterparty: { + client_id: '07-tendermint-38', + connection_id: 'connection-33', + }, + id: 'connection-181', + state: 3, + transferChannel: { + channelId: 'channel-132', + counterPartyChannelId: 'channel-18', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1_noble-1': { + client_id: '07-tendermint-11', + counterparty: { + client_id: '07-tendermint-120', + connection_id: 'connection-115', + }, + id: 'connection-15', + state: 3, + transferChannel: { + channelId: 'channel-9', + counterPartyChannelId: 'channel-105', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1_osmosis-1': { + client_id: '07-tendermint-1', + counterparty: { + client_id: '07-tendermint-3210', + connection_id: 'connection-2668', + }, + id: 'connection-1', + state: 3, + transferChannel: { + channelId: 'channel-1', + counterPartyChannelId: 'channel-76971', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'lava-mainnet-1_stargaze-1': { + client_id: '07-tendermint-8', + counterparty: { + client_id: '07-tendermint-366', + connection_id: 'connection-307', + }, + id: 'connection-13', + state: 3, + transferChannel: { + channelId: 'channel-7', + counterPartyChannelId: 'channel-391', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'migaloo-1_noble-1': { + client_id: '07-tendermint-113', + counterparty: { + client_id: '07-tendermint-19', + connection_id: 'connection-28', + }, + id: 'connection-89', + state: 3, + transferChannel: { + channelId: 'channel-60', + counterPartyChannelId: 'channel-14', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, }, - }, - connectionInfos: { - 'agoric-3_cosmoshub-4': { - client_id: '07-tendermint-6', + 'migaloo-1_osmosis-1': { + client_id: '07-tendermint-3', counterparty: { - client_id: '07-tendermint-927', - connection_id: 'connection-649', + client_id: '07-tendermint-2669', + connection_id: 'connection-2171', }, - id: 'connection-8', + id: 'connection-11', state: 3, transferChannel: { channelId: 'channel-5', - counterPartyChannelId: 'channel-405', + counterPartyChannelId: 'channel-642', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -212,17 +3492,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_noble-1': { - client_id: '07-tendermint-77', + 'migaloo-1_pacific-1': { + client_id: '07-tendermint-108', counterparty: { - client_id: '07-tendermint-32', - connection_id: 'connection-40', + client_id: '07-tendermint-22', + connection_id: 'connection-13', }, - id: 'connection-72', + id: 'connection-84', state: 3, transferChannel: { - channelId: 'channel-62', - counterPartyChannelId: 'channel-21', + channelId: 'channel-57', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -230,17 +3510,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_omniflixhub-1': { - client_id: '07-tendermint-73', + 'migaloo-1_secret-4': { + client_id: '07-tendermint-6', counterparty: { - client_id: '07-tendermint-47', - connection_id: 'connection-40', + client_id: '07-tendermint-116', + connection_id: 'connection-87', }, - id: 'connection-67', + id: 'connection-9', state: 3, transferChannel: { - channelId: 'channel-58', - counterPartyChannelId: 'channel-30', + channelId: 'channel-4', + counterPartyChannelId: 'channel-57', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -248,17 +3528,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_osmosis-1': { - client_id: '07-tendermint-1', + 'migaloo-1_stargaze-1': { + client_id: '07-tendermint-118', counterparty: { - client_id: '07-tendermint-2109', - connection_id: 'connection-1649', + client_id: '07-tendermint-352', + connection_id: 'connection-287', }, - id: 'connection-1', + id: 'connection-90', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-320', + channelId: 'channel-69', + counterPartyChannelId: 'channel-269', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -266,17 +3546,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_secret-4': { - client_id: '07-tendermint-17', + 'migaloo-1_umee-1': { + client_id: '07-tendermint-104', counterparty: { - client_id: '07-tendermint-111', - connection_id: 'connection-80', + client_id: '07-tendermint-234', + connection_id: 'connection-195', }, - id: 'connection-17', + id: 'connection-83', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-51', + channelId: 'channel-56', + counterPartyChannelId: 'channel-104', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -284,17 +3564,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_stride-1': { - client_id: '07-tendermint-74', + 'neutron-1_noble-1': { + client_id: '07-tendermint-40', counterparty: { - client_id: '07-tendermint-129', - connection_id: 'connection-118', + client_id: '07-tendermint-25', + connection_id: 'connection-34', }, - id: 'connection-68', + id: 'connection-31', state: 3, transferChannel: { - channelId: 'channel-59', - counterPartyChannelId: 'channel-148', + channelId: 'channel-30', + counterPartyChannelId: 'channel-18', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -302,17 +3582,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'agoric-3_umee-1': { - client_id: '07-tendermint-18', + 'neutron-1_osmosis-1': { + client_id: '07-tendermint-19', counterparty: { - client_id: '07-tendermint-152', - connection_id: 'connection-101', + client_id: '07-tendermint-2823', + connection_id: 'connection-2338', }, id: 'connection-18', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-42', + channelId: 'channel-10', + counterPartyChannelId: 'channel-874', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -320,17 +3600,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_neutron-1': { - client_id: '07-tendermint-29', + 'neutron-1_pacific-1': { + client_id: '07-tendermint-89', counterparty: { - client_id: '07-tendermint-48', - connection_id: 'connection-36', + client_id: '07-tendermint-123', + connection_id: 'connection-157', }, - id: 'connection-7', + id: 'connection-65', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-35', + channelId: 'channel-2016', + counterPartyChannelId: 'channel-66', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -338,17 +3618,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_osmosis-1': { - client_id: '07-tendermint-10', + 'neutron-1_pirin-1': { + client_id: '07-tendermint-71', counterparty: { - client_id: '07-tendermint-3012', - connection_id: 'connection-2503', + client_id: '07-tendermint-13', + connection_id: 'connection-11', }, - id: 'connection-2', + id: 'connection-50', state: 3, transferChannel: { - channelId: 'channel-2', - counterPartyChannelId: 'channel-6994', + channelId: 'channel-44', + counterPartyChannelId: 'channel-3839', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -356,17 +3636,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_secret-4': { - client_id: '07-tendermint-52', + 'neutron-1_pryzm-1': { + client_id: '07-tendermint-98', counterparty: { - client_id: '07-tendermint-174', - connection_id: 'connection-131', + client_id: '07-tendermint-6', + connection_id: 'connection-6', }, - id: 'connection-15', + id: 'connection-72', state: 3, transferChannel: { - channelId: 'channel-14', - counterPartyChannelId: 'channel-91', + channelId: 'channel-4329', + counterPartyChannelId: 'channel-6', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -374,17 +3654,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_stargaze-1': { - client_id: '07-tendermint-86', + 'neutron-1_secret-4': { + client_id: '07-tendermint-85', counterparty: { - client_id: '07-tendermint-359', - connection_id: 'connection-296', + client_id: '07-tendermint-199', + connection_id: 'connection-192', }, - id: 'connection-56', + id: 'connection-63', state: 3, transferChannel: { - channelId: 'channel-33', - counterPartyChannelId: 'channel-291', + channelId: 'channel-1551', + counterPartyChannelId: 'channel-144', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -392,17 +3672,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'celestia_stride-1': { - client_id: '07-tendermint-0', + 'neutron-1_stargaze-1': { + client_id: '07-tendermint-31', counterparty: { - client_id: '07-tendermint-137', - connection_id: 'connection-125', + client_id: '07-tendermint-283', + connection_id: 'connection-211', }, - id: 'connection-4', + id: 'connection-23', state: 3, transferChannel: { - channelId: 'channel-4', - counterPartyChannelId: 'channel-162', + channelId: 'channel-18', + counterPartyChannelId: 'channel-191', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -410,17 +3690,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_juno-1': { - client_id: '07-tendermint-439', + 'neutron-1_stride-1': { + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-2', + client_id: '07-tendermint-125', + connection_id: 'connection-113', }, - id: 'connection-372', + id: 'connection-15', state: 3, transferChannel: { - channelId: 'channel-207', - counterPartyChannelId: 'channel-1', + channelId: 'channel-8', + counterPartyChannelId: 'channel-123', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -428,17 +3708,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_neutron-1': { - client_id: '07-tendermint-1119', + 'noble-1_omniflixhub-1': { + client_id: '07-tendermint-68', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-51', + connection_id: 'connection-49', }, - id: 'connection-809', + id: 'connection-65', state: 3, transferChannel: { - channelId: 'channel-569', - counterPartyChannelId: 'channel-1', + channelId: 'channel-44', + counterPartyChannelId: 'channel-38', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -446,17 +3726,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_noble-1': { - client_id: '07-tendermint-1116', + 'noble-1_osmosis-1': { + client_id: '07-tendermint-0', counterparty: { - client_id: '07-tendermint-4', - connection_id: 'connection-12', + client_id: '07-tendermint-2704', + connection_id: 'connection-2241', }, - id: 'connection-790', + id: 'connection-2', state: 3, transferChannel: { - channelId: 'channel-536', - counterPartyChannelId: 'channel-4', + channelId: 'channel-1', + counterPartyChannelId: 'channel-750', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -464,17 +3744,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_omniflixhub-1': { - client_id: '07-tendermint-656', + 'noble-1_pacific-1': { + client_id: '07-tendermint-64', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-19', + client_id: '07-tendermint-45', + connection_id: 'connection-77', }, - id: 'connection-501', + id: 'connection-61', state: 3, transferChannel: { - channelId: 'channel-306', - counterPartyChannelId: 'channel-12', + channelId: 'channel-39', + counterPartyChannelId: 'channel-45', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -482,17 +3762,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_osmosis-1': { - client_id: '07-tendermint-259', + 'noble-1_pio-mainnet-1': { + client_id: '07-tendermint-30', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-1', + client_id: '07-tendermint-36', + connection_id: 'connection-13', }, - id: 'connection-257', + id: 'connection-37', state: 3, transferChannel: { - channelId: 'channel-141', - counterPartyChannelId: 'channel-0', + channelId: 'channel-20', + counterPartyChannelId: 'channel-10', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -500,17 +3780,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_secret-4': { - client_id: '07-tendermint-492', + 'noble-1_planq__7070-2': { + client_id: '07-tendermint-103', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-0', + client_id: '07-tendermint-567', + connection_id: 'connection-490', }, - id: 'connection-401', + id: 'connection-95', state: 3, transferChannel: { - channelId: 'channel-235', - counterPartyChannelId: 'channel-0', + channelId: 'channel-82', + counterPartyChannelId: 'channel-63', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -518,17 +3798,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_stargaze-1': { - client_id: '07-tendermint-1188', + 'noble-1_pryzm-1': { + client_id: '07-tendermint-100', counterparty: { - client_id: '07-tendermint-320', - connection_id: 'connection-256', + client_id: '07-tendermint-5', + connection_id: 'connection-5', }, - id: 'connection-918', + id: 'connection-92', state: 3, transferChannel: { - channelId: 'channel-730', - counterPartyChannelId: 'channel-239', + channelId: 'channel-79', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -536,17 +3816,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'cosmoshub-4_stride-1': { - client_id: '07-tendermint-913', + 'noble-1_secret-4': { + client_id: '07-tendermint-24', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-170', + connection_id: 'connection-127', }, - id: 'connection-635', + id: 'connection-33', state: 3, transferChannel: { - channelId: 'channel-391', - counterPartyChannelId: 'channel-0', + channelId: 'channel-17', + counterPartyChannelId: 'channel-88', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -554,17 +3834,35 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_neutron-1': { - client_id: '07-tendermint-11', + 'noble-1_shido__9008-1': { + client_id: '07-tendermint-106', counterparty: { - client_id: '07-tendermint-72', - connection_id: 'connection-51', + client_id: '07-tendermint-9', + connection_id: 'connection-11', }, - id: 'connection-17', + id: 'connection-99', + state: 3, + transferChannel: { + channelId: 'channel-87', + counterPartyChannelId: 'channel-5', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, + 'noble-1_stargaze-1': { + client_id: '07-tendermint-16', + counterparty: { + client_id: '07-tendermint-287', + connection_id: 'connection-214', + }, + id: 'connection-25', state: 3, transferChannel: { channelId: 'channel-11', - counterPartyChannelId: 'channel-48', + counterPartyChannelId: 'channel-204', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -572,17 +3870,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_noble-1': { - client_id: '07-tendermint-0', + 'noble-1_titan__18888-1': { + client_id: '07-tendermint-114', counterparty: { - client_id: '07-tendermint-59', - connection_id: 'connection-57', + client_id: '07-tendermint-1', + connection_id: 'connection-0', }, - id: 'connection-0', + id: 'connection-109', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-33', + channelId: 'channel-99', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -590,17 +3888,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_osmosis-1': { - client_id: '07-tendermint-3', + 'noble-1_umee-1': { + client_id: '07-tendermint-73', counterparty: { - client_id: '07-tendermint-3009', - connection_id: 'connection-2500', + client_id: '07-tendermint-248', + connection_id: 'connection-210', }, - id: 'connection-7', + id: 'connection-74', state: 3, transferChannel: { - channelId: 'channel-3', - counterPartyChannelId: 'channel-6787', + channelId: 'channel-51', + counterPartyChannelId: 'channel-120', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -608,17 +3906,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_stride-1': { - client_id: '07-tendermint-1', + 'noble-1_vota-ash': { + client_id: '07-tendermint-111', counterparty: { - client_id: '07-tendermint-133', - connection_id: 'connection-123', + client_id: '07-tendermint-23', + connection_id: 'connection-29', }, - id: 'connection-1', + id: 'connection-106', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-160', + channelId: 'channel-94', + counterPartyChannelId: 'channel-14', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -626,17 +3924,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'dydx-mainnet-1_umee-1': { + 'omniflixhub-1_osmosis-1': { client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-244', - connection_id: 'connection-208', + client_id: '07-tendermint-1829', + connection_id: 'connection-1431', }, - id: 'connection-13', + id: 'connection-8', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-118', + channelId: 'channel-1', + counterPartyChannelId: 'channel-199', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -644,17 +3942,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_neutron-1': { - client_id: '07-tendermint-557', + 'omniflixhub-1_stargaze-1': { + client_id: '07-tendermint-74', counterparty: { - client_id: '07-tendermint-97', - connection_id: 'connection-71', + client_id: '07-tendermint-370', + connection_id: 'connection-328', }, - id: 'connection-524', + id: 'connection-54', state: 3, transferChannel: { - channelId: 'channel-548', - counterPartyChannelId: 'channel-4328', + channelId: 'channel-49', + counterPartyChannelId: 'channel-398', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -662,17 +3960,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_noble-1': { - client_id: '07-tendermint-334', + 'osmosis-1_pacific-1': { + client_id: '07-tendermint-2790', counterparty: { - client_id: '07-tendermint-3', - connection_id: 'connection-8', + client_id: '07-tendermint-2', + connection_id: 'connection-0', }, - id: 'connection-322', + id: 'connection-2288', state: 3, transferChannel: { - channelId: 'channel-224', - counterPartyChannelId: 'channel-3', + channelId: 'channel-782', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -680,17 +3978,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_osmosis-1': { - client_id: '07-tendermint-0', + 'osmosis-1_pio-mainnet-1': { + client_id: '07-tendermint-1899', counterparty: { - client_id: '07-tendermint-1457', - connection_id: 'connection-1142', + client_id: '07-tendermint-31', + connection_id: 'connection-9', }, - id: 'connection-0', + id: 'connection-1472', state: 3, transferChannel: { - channelId: 'channel-0', - counterPartyChannelId: 'channel-42', + channelId: 'channel-222', + counterPartyChannelId: 'channel-7', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -698,17 +3996,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_secret-4': { - client_id: '07-tendermint-108', + 'osmosis-1_pirin-1': { + client_id: '07-tendermint-2791', counterparty: { - client_id: '07-tendermint-23', - connection_id: 'connection-9', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-68', + id: 'connection-2289', state: 3, transferChannel: { - channelId: 'channel-48', - counterPartyChannelId: 'channel-8', + channelId: 'channel-783', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -716,17 +4014,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_stargaze-1': { - client_id: '07-tendermint-44', + 'osmosis-1_planq__7070-2': { + client_id: '07-tendermint-2318', counterparty: { - client_id: '07-tendermint-13', - connection_id: 'connection-11', + client_id: '07-tendermint-3', + connection_id: 'connection-2', }, - id: 'connection-30', + id: 'connection-1815', state: 3, transferChannel: { - channelId: 'channel-20', - counterPartyChannelId: 'channel-5', + channelId: 'channel-492', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -734,17 +4032,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'juno-1_stride-1': { - client_id: '07-tendermint-263', + 'osmosis-1_pryzm-1': { + client_id: '07-tendermint-3206', counterparty: { - client_id: '07-tendermint-31', - connection_id: 'connection-19', + client_id: '07-tendermint-2', + connection_id: 'connection-2', }, - id: 'connection-205', + id: 'connection-2663', state: 3, transferChannel: { - channelId: 'channel-139', - counterPartyChannelId: 'channel-24', + channelId: 'channel-75755', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -752,17 +4050,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_noble-1': { - client_id: '07-tendermint-40', + 'osmosis-1_quicksilver-2': { + client_id: '07-tendermint-2400', counterparty: { - client_id: '07-tendermint-25', - connection_id: 'connection-34', + client_id: '07-tendermint-6', + connection_id: 'connection-2', }, - id: 'connection-31', + id: 'connection-1889', state: 3, transferChannel: { - channelId: 'channel-30', - counterPartyChannelId: 'channel-18', + channelId: 'channel-522', + counterPartyChannelId: 'channel-2', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -770,17 +4068,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_osmosis-1': { - client_id: '07-tendermint-19', + 'osmosis-1_secret-4': { + client_id: '07-tendermint-1588', counterparty: { - client_id: '07-tendermint-2823', - connection_id: 'connection-2338', + client_id: '07-tendermint-2', + connection_id: 'connection-1', }, - id: 'connection-18', + id: 'connection-1244', state: 3, transferChannel: { - channelId: 'channel-10', - counterPartyChannelId: 'channel-874', + channelId: 'channel-88', + counterPartyChannelId: 'channel-1', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -788,17 +4086,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_secret-4': { - client_id: '07-tendermint-85', + 'osmosis-1_shido__9008-1': { + client_id: '07-tendermint-3198', counterparty: { - client_id: '07-tendermint-199', - connection_id: 'connection-192', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-63', + id: 'connection-2654', state: 3, transferChannel: { - channelId: 'channel-1551', - counterPartyChannelId: 'channel-144', + channelId: 'channel-73755', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -806,17 +4104,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_stargaze-1': { - client_id: '07-tendermint-31', + 'osmosis-1_sifchain-1': { + client_id: '07-tendermint-1484', counterparty: { - client_id: '07-tendermint-283', - connection_id: 'connection-211', + client_id: '07-tendermint-41', + connection_id: 'connection-20', }, - id: 'connection-23', + id: 'connection-1159', state: 3, transferChannel: { - channelId: 'channel-18', - counterPartyChannelId: 'channel-191', + channelId: 'channel-47', + counterPartyChannelId: 'channel-17', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -824,17 +4122,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'neutron-1_stride-1': { - client_id: '07-tendermint-18', + 'osmosis-1_stargaze-1': { + client_id: '07-tendermint-1562', counterparty: { - client_id: '07-tendermint-125', - connection_id: 'connection-113', + client_id: '07-tendermint-0', + connection_id: 'connection-0', }, - id: 'connection-15', + id: 'connection-1223', state: 3, transferChannel: { - channelId: 'channel-8', - counterPartyChannelId: 'channel-123', + channelId: 'channel-75', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -842,17 +4140,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_omniflixhub-1': { - client_id: '07-tendermint-68', + 'osmosis-1_stride-1': { + client_id: '07-tendermint-2119', counterparty: { - client_id: '07-tendermint-51', - connection_id: 'connection-49', + client_id: '07-tendermint-1', + connection_id: 'connection-2', }, - id: 'connection-65', + id: 'connection-1657', state: 3, transferChannel: { - channelId: 'channel-44', - counterPartyChannelId: 'channel-38', + channelId: 'channel-326', + counterPartyChannelId: 'channel-5', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -860,17 +4158,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_osmosis-1': { - client_id: '07-tendermint-0', + 'osmosis-1_umee-1': { + client_id: '07-tendermint-1805', counterparty: { - client_id: '07-tendermint-2704', - connection_id: 'connection-2241', + client_id: '07-tendermint-6', + connection_id: 'connection-0', }, - id: 'connection-2', + id: 'connection-1410', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-750', + channelId: 'channel-184', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -878,17 +4176,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_secret-4': { - client_id: '07-tendermint-24', + 'osmosis-1_vota-ash': { + client_id: '07-tendermint-2959', counterparty: { - client_id: '07-tendermint-170', - connection_id: 'connection-127', + client_id: '07-tendermint-0', + connection_id: 'connection-1', }, - id: 'connection-33', + id: 'connection-2454', state: 3, transferChannel: { - channelId: 'channel-17', - counterPartyChannelId: 'channel-88', + channelId: 'channel-2694', + counterPartyChannelId: 'channel-0', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -896,17 +4194,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_stargaze-1': { - client_id: '07-tendermint-16', + 'pacific-1_planq__7070-2': { + client_id: '07-tendermint-21', counterparty: { - client_id: '07-tendermint-287', - connection_id: 'connection-214', + client_id: '07-tendermint-545', + connection_id: 'connection-477', }, - id: 'connection-25', + id: 'connection-12', state: 3, transferChannel: { - channelId: 'channel-11', - counterPartyChannelId: 'channel-204', + channelId: 'channel-13', + counterPartyChannelId: 'channel-59', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -914,17 +4212,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'noble-1_umee-1': { - client_id: '07-tendermint-73', + 'pacific-1_stride-1': { + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-248', - connection_id: 'connection-210', + client_id: '07-tendermint-130', + connection_id: 'connection-119', }, - id: 'connection-74', + id: 'connection-11', state: 3, transferChannel: { - channelId: 'channel-51', - counterPartyChannelId: 'channel-120', + channelId: 'channel-11', + counterPartyChannelId: 'channel-149', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -932,17 +4230,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'omniflixhub-1_osmosis-1': { - client_id: '07-tendermint-8', + 'pacific-1_vota-ash': { + client_id: '07-tendermint-109', counterparty: { - client_id: '07-tendermint-1829', - connection_id: 'connection-1431', + client_id: '07-tendermint-21', + connection_id: 'connection-27', }, - id: 'connection-8', + id: 'connection-153', state: 3, transferChannel: { - channelId: 'channel-1', - counterPartyChannelId: 'channel-199', + channelId: 'channel-64', + counterPartyChannelId: 'channel-12', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -950,17 +4248,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_secret-4': { - client_id: '07-tendermint-1588', + 'pirin-1_secret-4': { + client_id: '07-tendermint-18', counterparty: { - client_id: '07-tendermint-2', - connection_id: 'connection-1', + client_id: '07-tendermint-201', + connection_id: 'connection-193', }, - id: 'connection-1244', + id: 'connection-14', state: 3, transferChannel: { - channelId: 'channel-88', - counterPartyChannelId: 'channel-1', + channelId: 'channel-13995', + counterPartyChannelId: 'channel-146', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -968,17 +4266,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_stargaze-1': { - client_id: '07-tendermint-1562', + 'pirin-1_vota-ash': { + client_id: '07-tendermint-14', counterparty: { - client_id: '07-tendermint-0', - connection_id: 'connection-0', + client_id: '07-tendermint-13', + connection_id: 'connection-5', }, - id: 'connection-1223', + id: 'connection-12', state: 3, transferChannel: { - channelId: 'channel-75', - counterPartyChannelId: 'channel-0', + channelId: 'channel-4092', + counterPartyChannelId: 'channel-3', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -986,17 +4284,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_stride-1': { - client_id: '07-tendermint-2119', + 'pryzm-1_stride-1': { + client_id: '07-tendermint-8', counterparty: { - client_id: '07-tendermint-1', - connection_id: 'connection-2', + client_id: '07-tendermint-145', + connection_id: 'connection-145', }, - id: 'connection-1657', + id: 'connection-8', state: 3, transferChannel: { - channelId: 'channel-326', - counterPartyChannelId: 'channel-5', + channelId: 'channel-23', + counterPartyChannelId: 'channel-257', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1004,17 +4302,17 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, - 'osmosis-1_umee-1': { - client_id: '07-tendermint-1805', + 'secret-4_sifchain-1': { + client_id: '07-tendermint-37', counterparty: { - client_id: '07-tendermint-6', - connection_id: 'connection-0', + client_id: '07-tendermint-171', + connection_id: 'connection-98', }, - id: 'connection-1410', + id: 'connection-19', state: 3, transferChannel: { - channelId: 'channel-184', - counterPartyChannelId: 'channel-0', + channelId: 'channel-15', + counterPartyChannelId: 'channel-65', counterPartyPortId: 'transfer', ordering: 0, portId: 'transfer', @@ -1094,6 +4392,24 @@ Generated by [AVA](https://avajs.dev). version: 'ics20-1', }, }, + 'stargaze-1_vota-ash': { + client_id: '07-tendermint-368', + counterparty: { + client_id: '07-tendermint-24', + connection_id: 'connection-30', + }, + id: 'connection-318', + state: 3, + transferChannel: { + channelId: 'channel-394', + counterPartyChannelId: 'channel-15', + counterPartyPortId: 'transfer', + ordering: 0, + portId: 'transfer', + state: 3, + version: 'ics20-1', + }, + }, 'stride-1_umee-1': { client_id: '07-tendermint-32', counterparty: { diff --git a/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.snap b/packages/orchestration/test/examples/snapshots/send-anywhere.test.ts.snap index 3cf1a7c6eca84a3e8d241754528dd71dc9e77105..462ae933832f19c15af8e377a780b6f81301abc7 100644 GIT binary patch literal 29140 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ⅅw+Nd%6tSH?~@%w#6D3sT#rAu7?Hnl0!Y4nH{CVdMO zWAS9__e=Rb@i^bVisMEWIU!>oYt!50wl7h&9t1UcEB@4>H|zUE%lD1V@fK&T+x;k- zTuQp=mx)Z~yGfyA6}@H-ee_(WZWh5XD<8QvHn!|Q0h)=2hmrqSrNy*Jj2_EqX= zoj!i-gtV1@-*LdSv?~k7p*vp#PkWQUe&Qce4Oz-V-twE}@-5-(iQDj2Z3U=DqXOm; zKPPB^P>5x^_;1Kr;C)69rVzc1#FT@_)pY{BjWhL0qtilO!}0E_{@VKkJPfy@hV5Rb z<9w;_->wlMH4B9X72VgN+_8=;T8KJHrkWh+Dqvm}+D}(DBB~XUO&Duj2#PVNz8QHqA&wV)VkxA*r@7x(}Yd3m8LU#6_vJvm=6CORh6x36B zm#HNfzUom&dJkjQ#lPR|WS^XN&VX%{mzB!oS0y~xP-}v9=hUnA)`^xO%IBcqI;SgB z4;WH!tF!M=%?hu)L-duHv6ay_8((i5$0vABsg19nHs(v?6@N5oa_czk;N6>oW0N*V z=GmGmk?9|Zt0cS=9vQmAK$<*J`vPLK-v0q!`yeAU`sL_%;)x=(%Odb+t?4MlF~_C! zr>Iz+TyXRP@vaeBJZ}Ew@b`>%&lUYzRMIAUy1wV`J*3HRGji+QhqTi(_{nfQp{F^w zc5Mxk9*|x&%OFc-#^gk&->-6xWDylyrKeRo zyyk1sp?{lld6X{SgT_j`J-ia+O)pyMC{6^e3HBB`>WyMk!R#L$H|$|knN^Oo$IDz> z715R!Rcb^~vxK81>+04D%8kCP$Z?MdNrbO*(i$`y?`Bp#WRU%>fipvG> zM@88+8lOlw-C!*rxG|f`O*3NCp4XtRjBp~emXF_n8h1PtxoE)&Jf`<}?^x!;!Yx?d z5|!Jmp7XZq4s8#u59^CycN-nrGCCiNw^e-%>`XoZsa3+XVVqMTb{!bjRanShY5I7} zs>_?5AbNv=p0OToRePEdgZ7i=W{{xMbGGurOu63%l>gCkug)ieXgV|bec!P^3w>0Q zDVOvt6vjuZT3L6Nv8$Z|u(8*lbK!s0iYY@Ci^d&H-hmZSF}7bOIk>pEN522&TZK5$ za%A50S=;y)%v7^Y3+cdMDp;m7S-ALy$YB4h8a0Xv^mAEZcHldRqM=i z`pHH_=fnR!VM<&a6Bp|H8C*WJc*G(0zZNB(VA3vIlOU?gh9>C7nw!y}9i%a!_DaI1 zeGX}aU=Ty%r~P$QSC_W!<)C%Pd4nhV*rZP%GNY4Bb1Rya4&VR~SiS%1V40WOXK8+k zmyK)k>yP||byhAHXHysBMc(nIY(@hFO}r!(*|K^OPUWJGjPvVi-d z8z^dY{o#O($B(4=l{%}J-#XHHw!tikuG57sfk67(k z9jyt!8)aHrS}5&kYvG6;=_RA7G~CK99!@q;{wlw7102i-IV$G1NS>;j`0v_3040-z z)3aw&wYPs|9v_KCBWG%oVN*~hG^fsdW%{v1Y;nc*dc!;)!o-z3v$gwOO} z0)1P#9gj32++8wpbcu4O;G>xOf9yxzdd1q>sF)xucG*&1Oh{2xRz|EfBzB;?d!QRT aTfp-dhKZjJ@A-Sq%$>A!=hl_W|NB2c17CCi literal 9152 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 KjVI2Z&j0`bc-VXZ diff --git a/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.md b/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.md index 378cdaddaf7e..000fd7b9de27 100644 --- a/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.md +++ b/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.md @@ -41,6 +41,7 @@ Generated by [AVA](https://avajs.dev). agoric: { bech32Prefix: 'agoric', chainId: 'agoric-3', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -51,6 +52,7 @@ Generated by [AVA](https://avajs.dev). cosmoshub: { bech32Prefix: 'cosmos', chainId: 'cosmoshub-4', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { diff --git a/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.snap b/packages/orchestration/test/examples/snapshots/staking-combinations.test.ts.snap index 89494e9934d40e5f508d23d3c19b809d99d905d1..44ea3874feb8e7952b9472151e9e39919f674d89 100644 GIT binary patch literal 2757 zcmV;$3Oe;cRzV@|K%#=-qF~g*~ zDH|$XGUheYIQwL|Oig;{#24BSf%T6>NpuFlK>+6f{1(6)06qecBfxF~^pbEl2_Gtb zjY%dU&Y#I-5~K?x0+K*438Y9HNT{3i-%{0SNnypq)si9`^TjX9=7|MaE#F4fvcl@H zt|>)f6;|F`v}~M4?-3?xdYS2~AjS!qB|zOAqsAFkno+c6+w{206qV+wtlm~F*_O9G z7ELvEDw(!rBG9mOX}UDe3{$73tf{v7ZkIWDN?SIpQSAC*0QhkLcrO6#X#J4`aaI zcHrynz$5Lz#dc0&oR^4PY6o8X7@q9_DjmR69l)C%z+fjw-6gEDPHu&)n<_8L>QsHM z{VuQ^M>k}(qA*ia>wv7o_98i*)XlQxrL3ubJt)jnRhxLbx~$WsrB$tUk3wEl5W2D6 z5fH$&ozvM^%gKXU<*2FYY?hhSiWB^%tlRxMy6&h+P3EVcaY9U&XQ|qruBy_0T4DMf zbb;xHjXLK-bvvjTDl1i;)gaHfAtx1Wc}CL@RZU4-WXFX0j8$zfXX#S?o3!KFGNTK# zbjcn9drh|U12nx7U;GYGk3$qDu-oBHyMx#7U7gC7m^8m*`(d4(luyrTHttJwk=ela zUBLE|PSx@)Ow|@`TYs0!X2-?@>Pf9OY6o1lgruozZIw3wrV9`%*EBtyTCZr@LUn1n zuIqPDHn{l4lvIP1!k@oyFkL6XMOg@Il@f+j8%?aOO;S)A|b4%yth*Dp!w)=Sl1S1gWW+*Y2N?J zS$|AhKA@URSE*uL!%9ip?cQ$6%4+s>oRCAV@m{aHJI3YEC!&XyB&olw9NZZWo3n96F=&;BY18y4VTVOr62S>itO zAjuBXjd)^zoVRMFCN1|k3;pJUw-oJ~$T`kcOG>%!N1Tw0-Hi?4G#w}8t!{Vp^0ZbX z4)nOISDQG#aQKcOXv4w_V_ln&e)`-JlKmr3=ziW=onO zn^RWBr?3h&Yti*>x6C44U@NJ|HfDNV#{tWD(3Q$<#6A}yT~*5~(o<@APN%AI(mGc- zqcGpweE1&jz2fk-@wMB5o2To_N10k?`n9A;xg;H7MpZGdHS!7qLK;}-@Of<0MY!&8 zBYmx|M^O@fu@`u`7kIZ9$fkhnQ^1`mZew=v`!{?#1>BbcevkrQO97WtKqk%6;sR|~ z8n_`1C~4rqG;lEuT;gdx0`1*2a5)W(W`LOtpk;uEG8`=}M7*anz_S_P^$dV4kj-+G zbwb3uDGTh+0{8RKJ^}h@7I-2H{Dp@O3DNHTEbt)@8xa(D=YV}VU^&M@M+NA^Ip8}v z;CUYUIRSbp2fUU8{>4ML2>~_4m)-7TVC#4psU7y5uotaIC_YBZ65X#_Ill%CBt*d7 z9zfFG-?4SB8sDg$Fy^!crW!sxuf>I{c;4X&sh^7T6aJi!Ns7!=^Mvg9l$hK-ZrY)0 zQC7|I>ulAdF4ayuoHBih>gE|vF3`~FY#h7CujgPP!@5$bB~I(VI3f4BT1c2HA#-}3 zswz`f>3O%;^XX_dV|NefzH6SNHy{t9c*fy)RLN*>@RS^7f#j7RowVG)qGx z>s?nEb{!y$Q2k&c(3_MhDeB`kGET^sUCp;MwX7{KGSxIb746e4wE0xzOZ!vs?Ylnu z9a&;(Syn6V4f=|E+D=iW%2rMNs0lSn0=x6TzC1jqlTPpHgamHQ1G5|`!GYTD$OCuf zfpd8-e)saBKKgPV_+1{joChWf04)IDECAmt052CfdP>L?Zx?{~3cyew2h9jA&Gi9a z=>xvi2fWw^yw?XL`+?p4z+68^&$g`V*EcPn>#6hJe&8%G*e_(*^ZmdD9yTn%p6&;p z3ZZhcbgc}VvvEAN39fZ8nZ@-^8pWmr{Zn6-s8fW)x z=L2L{BYd7{9#pT}xu@ytn-#LGnAu2?^>4;^@z((>q5QBF%BOi+N1e8Fk|*}KiH9}a zbX5|ja|-arVf!_&z8kHxp7#K^v?>)oZ+Q3nDW)58qacsSlCgbq<$O2;yKN`mNb4DKCUWxse?DqQ+SEWJ9Fs|x;n0-~4|0Ym3H*8hcy)ja6J0_y zd1nClHxEk+Pn4M=P$&XBiopFv;O|9XY!G;0kfRO=)W-*brv`x+27%ZRurLHXHv}Yy zIqC+1IyMYU4g@?wKe>|UBgVFC8nG%)PF%;EYV7ZR#=gqG?`wse}VpA LvSXdPm@WVSHpECi literal 2749 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 N@n3u%d##Bf0044>brt{s literal 2328 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 diff --git a/packages/orchestration/test/snapshots/chain-info.test.js.md b/packages/orchestration/test/snapshots/chain-info.test.js.md index 10da37384c06..06c7cefa9f1a 100644 --- a/packages/orchestration/test/snapshots/chain-info.test.js.md +++ b/packages/orchestration/test/snapshots/chain-info.test.js.md @@ -14,6 +14,7 @@ Generated by [AVA](https://avajs.dev). { bech32Prefix: 'agoric', chainId: 'agoric-3', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -22,11 +23,54 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'archway', + { + bech32Prefix: 'archway', + chainId: 'archway-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aarch', + }, + ], + }, + ], + [ + 'beezee', + { + bech32Prefix: 'bze', + chainId: 'beezee-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ubze', + }, + ], + }, + ], + [ + 'carbon', + { + bech32Prefix: 'swth', + chainId: 'carbon-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'swth', + }, + ], + }, + ], [ 'celestia', { bech32Prefix: 'celestia', chainId: 'celestia', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -35,11 +79,26 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'coreum', + { + bech32Prefix: 'core', + chainId: 'coreum-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ucore', + }, + ], + }, + ], [ 'cosmoshub', { bech32Prefix: 'cosmos', chainId: 'cosmoshub-4', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -48,11 +107,40 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'crescent', + { + bech32Prefix: 'cre', + chainId: 'crescent-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ucre', + }, + ], + }, + ], + [ + 'doravota', + { + bech32Prefix: 'dora', + chainId: 'vota-ash', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'peaka', + }, + ], + }, + ], [ 'dydx', { bech32Prefix: 'dydx', chainId: 'dydx-mainnet-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -61,11 +149,82 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'dymension', + { + bech32Prefix: 'dym', + chainId: 'dymension_1100-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'adym', + }, + ], + }, + ], + [ + 'empowerchain', + { + bech32Prefix: 'empower', + chainId: 'empowerchain-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'umpwr', + }, + ], + }, + ], + [ + 'evmos', + { + bech32Prefix: 'evmos', + chainId: 'evmos_9001-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aevmos', + }, + ], + }, + ], + [ + 'haqq', + { + bech32Prefix: 'haqq', + chainId: 'haqq_11235-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aISLM', + }, + ], + }, + ], + [ + 'injective', + { + bech32Prefix: 'inj', + chainId: 'injective-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'inj', + }, + ], + }, + ], [ 'juno', { bech32Prefix: 'juno', chainId: 'juno-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -74,11 +233,68 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'kava', + { + bech32Prefix: 'kava', + chainId: 'kava_2222-10', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ukava', + }, + ], + }, + ], + [ + 'kujira', + { + bech32Prefix: 'kujira', + chainId: 'kaiyo-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ukuji', + }, + ], + }, + ], + [ + 'lava', + { + bech32Prefix: 'lava@', + chainId: 'lava-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'ulava', + }, + ], + }, + ], + [ + 'migaloo', + { + bech32Prefix: 'migaloo', + chainId: 'migaloo-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uwhale', + }, + ], + }, + ], [ 'neutron', { bech32Prefix: 'neutron', chainId: 'neutron-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -87,19 +303,49 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'nibiru', + { + bech32Prefix: 'nibi', + chainId: 'cataclysm-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'unibi', + }, + ], + }, + ], [ 'noble', { bech32Prefix: 'noble', chainId: 'noble-1', + icaEnabled: true, icqEnabled: false, }, ], + [ + 'nolus', + { + bech32Prefix: 'nolus', + chainId: 'pirin-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'unls', + }, + ], + }, + ], [ 'omniflixhub', { bech32Prefix: 'omniflix', chainId: 'omniflixhub-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -113,6 +359,7 @@ Generated by [AVA](https://avajs.dev). { bech32Prefix: 'osmo', chainId: 'osmosis-1', + icaEnabled: true, icqEnabled: true, stakingTokens: [ { @@ -121,11 +368,82 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'persistence', + { + bech32Prefix: 'persistence', + chainId: 'core-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uxprt', + }, + ], + }, + ], + [ + 'planq', + { + bech32Prefix: 'plq', + chainId: 'planq_7070-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'aplanq', + }, + ], + }, + ], + [ + 'provenance', + { + bech32Prefix: 'pb', + chainId: 'pio-mainnet-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'nhash', + }, + ], + }, + ], + [ + 'pryzm', + { + bech32Prefix: 'pryzm', + chainId: 'pryzm-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'upryzm', + }, + ], + }, + ], + [ + 'quicksilver', + { + bech32Prefix: 'quick', + chainId: 'quicksilver-2', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uqck', + }, + ], + }, + ], [ 'secretnetwork', { bech32Prefix: 'secret', chainId: 'secret-4', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -134,11 +452,54 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'sei', + { + bech32Prefix: 'sei', + chainId: 'pacific-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'usei', + }, + ], + }, + ], + [ + 'shido', + { + bech32Prefix: 'shido', + chainId: 'shido_9008-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'shido', + }, + ], + }, + ], + [ + 'sifchain', + { + bech32Prefix: 'sif', + chainId: 'sifchain-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'rowan', + }, + ], + }, + ], [ 'stargaze', { bech32Prefix: 'stars', chainId: 'stargaze-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -152,6 +513,7 @@ Generated by [AVA](https://avajs.dev). { bech32Prefix: 'stride', chainId: 'stride-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { @@ -160,11 +522,40 @@ Generated by [AVA](https://avajs.dev). ], }, ], + [ + 'terra', + { + bech32Prefix: 'terra', + chainId: 'columbus-5', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'uluna', + }, + ], + }, + ], + [ + 'titan', + { + bech32Prefix: 'titan', + chainId: 'titan_18888-1', + icaEnabled: false, + icqEnabled: false, + stakingTokens: [ + { + denom: 'atkx', + }, + ], + }, + ], [ 'umee', { bech32Prefix: 'umee', chainId: 'umee-1', + icaEnabled: true, icqEnabled: false, stakingTokens: [ { diff --git a/packages/orchestration/test/snapshots/chain-info.test.js.snap b/packages/orchestration/test/snapshots/chain-info.test.js.snap index 4b0e2bddb25da500148fb466f6573912bd3fc760..f319c455ccbf74e3c325a46cf452849e9c5a5212 100644 GIT binary patch literal 4003 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 f3IHRG<^de!Us|;wpG>%6A3py9e*FJ=#uWen5