From 27d7078f2b2e9b30a6eab82e2fcf32d95f30c4f9 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 28 Feb 2024 11:23:40 +0800 Subject: [PATCH 01/54] hot fix --- packages/chain-registry/chain-registry | 2 +- .../chain-registry/src/mainnet/axelar/ibc.ts | 31 +++++ .../src/mainnet/axelar/ibc_chain1.ts | 31 +++++ .../src/mainnet/celestia/ibc.ts | 31 +++++ .../src/mainnet/celestia/ibc_chain1.ts | 31 +++++ .../src/mainnet/dymension/ibc.ts | 124 +++++++++++++++++ .../src/mainnet/dymension/ibc_chain1.ts | 62 +++++++++ .../chain-registry/src/mainnet/juno/assets.ts | 36 ++++- .../chain-registry/src/mainnet/kujira/ibc.ts | 31 +++++ .../chain-registry/src/mainnet/nyx/assets.ts | 17 ++- .../chain-registry/src/mainnet/nyx/chain.ts | 21 ++- .../src/mainnet/persistence/ibc.ts | 31 +++++ .../src/mainnet/persistence/ibc_chain1.ts | 31 +++++ .../chain-registry/src/mainnet/scorum/ibc.ts | 36 +++++ .../src/mainnet/stargaze/ibc.ts | 31 +++++ .../chain-registry/src/mainnet/stride/ibc.ts | 31 +++++ .../src/mainnet/zetachain/assets.ts | 35 +++++ .../src/mainnet/zetachain/chain.ts | 71 ++++++++++ .../src/mainnet/zetachain/index.ts | 5 + .../src/testnet/axelartestnet/ibc.ts | 31 +++++ .../src/testnet/axelartestnet/ibc_chain1.ts | 31 +++++ .../src/testnet/cosmoshubtestnet/ibc.ts | 31 +++++ .../testnet/cosmoshubtestnet/ibc_chain1.ts | 31 +++++ packages/chain-registry/src/testnet/ibc.ts | 4 +- .../src/testnet/mantrachaintestnet/assets.ts | 46 +++++++ .../src/testnet/mantrachaintestnet/chain.ts | 69 ++++++++++ .../src/testnet/mantrachaintestnet/index.ts | 5 + .../src/testnet/osmosistestnet/ibc.ts | 31 +++++ .../src/testnet/osmosistestnet/ibc_chain1.ts | 31 +++++ .../src/testnet/stargazetestnet/ibc.ts | 31 +++++ .../src/testnet/stargazetestnet/ibc_chain1.ts | 35 +++++ .../src/testnet/stargazetestnet/index.ts | 2 + .../src/testnet/swisstroniktestnet/assets.ts | 34 +++++ .../src/testnet/swisstroniktestnet/chain.ts | 79 +++++++++++ .../src/testnet/swisstroniktestnet/index.ts | 5 + .../src/testnet/titantestnet/assets.ts | 43 ++++++ .../src/testnet/titantestnet/chain.ts | 97 +++++++++++++ .../src/testnet/titantestnet/ibc.ts | 128 ++++++++++++++++++ .../src/testnet/titantestnet/index.ts | 7 + 39 files changed, 1450 insertions(+), 9 deletions(-) create mode 100644 packages/chain-registry/src/mainnet/scorum/ibc.ts create mode 100644 packages/chain-registry/src/mainnet/zetachain/assets.ts create mode 100644 packages/chain-registry/src/mainnet/zetachain/chain.ts create mode 100644 packages/chain-registry/src/mainnet/zetachain/index.ts create mode 100644 packages/chain-registry/src/testnet/mantrachaintestnet/assets.ts create mode 100644 packages/chain-registry/src/testnet/mantrachaintestnet/chain.ts create mode 100644 packages/chain-registry/src/testnet/mantrachaintestnet/index.ts create mode 100644 packages/chain-registry/src/testnet/stargazetestnet/ibc_chain1.ts create mode 100644 packages/chain-registry/src/testnet/swisstroniktestnet/assets.ts create mode 100644 packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts create mode 100644 packages/chain-registry/src/testnet/swisstroniktestnet/index.ts create mode 100644 packages/chain-registry/src/testnet/titantestnet/assets.ts create mode 100644 packages/chain-registry/src/testnet/titantestnet/chain.ts create mode 100644 packages/chain-registry/src/testnet/titantestnet/ibc.ts create mode 100644 packages/chain-registry/src/testnet/titantestnet/index.ts diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index c00cb4daf..1f988b6cf 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit c00cb4dafa634cf4053bf824d69292df9677b7c9 +Subproject commit 1f988b6cfd76afe71e21a2bde3b1226e86daf9cd diff --git a/packages/chain-registry/src/mainnet/axelar/ibc.ts b/packages/chain-registry/src/mainnet/axelar/ibc.ts index ba88c261e..47801040b 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc.ts @@ -310,6 +310,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-197', + connection_id: 'connection-180' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-7', + connection_id: 'connection-6' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-138', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-5', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts index b7e1ee375..d0d6e8688 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts @@ -187,6 +187,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-197', + connection_id: 'connection-180' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-7', + connection_id: 'connection-6' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-138', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-5', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/celestia/ibc.ts b/packages/chain-registry/src/mainnet/celestia/ibc.ts index 16ef33a63..db366728a 100644 --- a/packages/chain-registry/src/mainnet/celestia/ibc.ts +++ b/packages/chain-registry/src/mainnet/celestia/ibc.ts @@ -62,6 +62,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-82', + connection_id: 'connection-52' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-6', + connection_id: 'connection-5' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-27', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts index 4fd4ceffc..ace556c75 100644 --- a/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts @@ -31,6 +31,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-82', + connection_id: 'connection-52' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-6', + connection_id: 'connection-5' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-27', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/dymension/ibc.ts b/packages/chain-registry/src/mainnet/dymension/ibc.ts index 8c01c164c..273c0a9a6 100644 --- a/packages/chain-registry/src/mainnet/dymension/ibc.ts +++ b/packages/chain-registry/src/mainnet/dymension/ibc.ts @@ -1,5 +1,67 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-197', + connection_id: 'connection-180' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-7', + connection_id: 'connection-6' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-138', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-5', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-82', + connection_id: 'connection-52' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-6', + connection_id: 'connection-5' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-27', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -62,6 +124,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-17', + connection_id: 'connection-10' + }, + chain_2: { + chain_name: 'kujira', + client_id: '07-tendermint-169', + connection_id: 'connection-132' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-160', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -185,6 +278,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'stride', + client_id: '07-tendermint-140', + connection_id: 'connection-131' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts index f9bc8042f..1922cec9a 100644 --- a/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts @@ -31,6 +31,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-17', + connection_id: 'connection-10' + }, + chain_2: { + chain_name: 'kujira', + client_id: '07-tendermint-169', + connection_id: 'connection-132' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-160', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -154,6 +185,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'stride', + client_id: '07-tendermint-140', + connection_id: 'connection-131' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/juno/assets.ts b/packages/chain-registry/src/mainnet/juno/assets.ts index 2d28e40ad..91378e01d 100644 --- a/packages/chain-registry/src/mainnet/juno/assets.ts +++ b/packages/chain-registry/src/mainnet/juno/assets.ts @@ -2056,11 +2056,11 @@ const info: AssetList = { 'Minerva was one of the main goddesses worshiped by the Roman Pagans and is a goddess from Roman Mythology.', type_asset: 'cw20', address: - 'juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', denom_units: [ { denom: - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', exponent: 0 }, { @@ -2068,7 +2068,7 @@ const info: AssetList = { exponent: 6 } ], - base: 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + base: 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', name: 'MINERVA', display: 'minerva', symbol: 'MRVA', @@ -2080,6 +2080,36 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/minerva.png' } ] + }, + { + description: + 'In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.', + type_asset: 'cw20', + address: + 'juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + denom_units: [ + { + denom: + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + exponent: 0 + }, + { + denom: 'luno', + exponent: 6 + } + ], + base: 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + name: 'LUNO', + display: 'luno', + symbol: 'LUNO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/kujira/ibc.ts b/packages/chain-registry/src/mainnet/kujira/ibc.ts index b8d52ee1e..1b075d4c4 100644 --- a/packages/chain-registry/src/mainnet/kujira/ibc.ts +++ b/packages/chain-registry/src/mainnet/kujira/ibc.ts @@ -435,6 +435,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-17', + connection_id: 'connection-10' + }, + chain_2: { + chain_name: 'kujira', + client_id: '07-tendermint-169', + connection_id: 'connection-132' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-160', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/nyx/assets.ts b/packages/chain-registry/src/mainnet/nyx/assets.ts index 74f61de7a..441441310 100644 --- a/packages/chain-registry/src/mainnet/nyx/assets.ts +++ b/packages/chain-registry/src/mainnet/nyx/assets.ts @@ -47,12 +47,25 @@ const info: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + theme: { + dark_mode: false, + circle: true + } + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + theme: { + dark_mode: true, + circle: true + } } ] } diff --git a/packages/chain-registry/src/mainnet/nyx/chain.ts b/packages/chain-registry/src/mainnet/nyx/chain.ts index 81708383a..56591f4d5 100644 --- a/packages/chain-registry/src/mainnet/nyx/chain.ts +++ b/packages/chain-registry/src/mainnet/nyx/chain.ts @@ -43,10 +43,14 @@ const info: Chain = { cosmwasm_enabled: true }, logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' }, apis: { rpc: [ + { + address: 'https://rpc.nymtech.net/', + provider: 'Nym' + }, { address: 'https://rpc.nyx.nodes.guru/', provider: 'nodes guru' @@ -122,7 +126,20 @@ const info: Chain = { ], images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + theme: { + dark_mode: false, + circle: true + } + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + theme: { + dark_mode: true, + circle: true + } } ] }; diff --git a/packages/chain-registry/src/mainnet/persistence/ibc.ts b/packages/chain-registry/src/mainnet/persistence/ibc.ts index 5f9653f32..a107ed20a 100644 --- a/packages/chain-registry/src/mainnet/persistence/ibc.ts +++ b/packages/chain-registry/src/mainnet/persistence/ibc.ts @@ -592,6 +592,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'persistence', + client_id: '07-tendermint-166', + connection_id: 'connection-207' + }, + chain_2: { + chain_name: 'stargaze', + client_id: '07-tendermint-358', + connection_id: 'connection-293' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-287', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts index 5727b2c9e..6bd87bd0d 100644 --- a/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts @@ -140,6 +140,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'persistence', + client_id: '07-tendermint-166', + connection_id: 'connection-207' + }, + chain_2: { + chain_name: 'stargaze', + client_id: '07-tendermint-358', + connection_id: 'connection-293' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-287', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/scorum/ibc.ts b/packages/chain-registry/src/mainnet/scorum/ibc.ts new file mode 100644 index 000000000..fe37bb4a8 --- /dev/null +++ b/packages/chain-registry/src/mainnet/scorum/ibc.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosis', + client_id: '07-tendermint-3098', + connection_id: 'connection-2571' + }, + chain_2: { + chain_name: 'scorum', + client_id: '07-tendermint-6', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-20100', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/stargaze/ibc.ts b/packages/chain-registry/src/mainnet/stargaze/ibc.ts index 0ea78065f..927fa9ffb 100644 --- a/packages/chain-registry/src/mainnet/stargaze/ibc.ts +++ b/packages/chain-registry/src/mainnet/stargaze/ibc.ts @@ -476,6 +476,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'persistence', + client_id: '07-tendermint-166', + connection_id: 'connection-207' + }, + chain_2: { + chain_name: 'stargaze', + client_id: '07-tendermint-358', + connection_id: 'connection-293' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-287', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/stride/ibc.ts b/packages/chain-registry/src/mainnet/stride/ibc.ts index 9589f180e..7e9c20424 100644 --- a/packages/chain-registry/src/mainnet/stride/ibc.ts +++ b/packages/chain-registry/src/mainnet/stride/ibc.ts @@ -312,6 +312,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'stride', + client_id: '07-tendermint-140', + connection_id: 'connection-131' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-197', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/zetachain/assets.ts b/packages/chain-registry/src/mainnet/zetachain/assets.ts new file mode 100644 index 000000000..6657cd177 --- /dev/null +++ b/packages/chain-registry/src/mainnet/zetachain/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'zetachain', + assets: [ + { + description: 'The native token of ZetaChain', + denom_units: [ + { + denom: 'azeta', + exponent: 0 + }, + { + denom: 'zeta', + exponent: 18 + } + ], + base: 'azeta', + name: 'ZetaChain', + display: 'zeta', + symbol: 'ZETA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.svg' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/zetachain/chain.ts b/packages/chain-registry/src/mainnet/zetachain/chain.ts new file mode 100644 index 000000000..e16fdb8cd --- /dev/null +++ b/packages/chain-registry/src/mainnet/zetachain/chain.ts @@ -0,0 +1,71 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'zetachain', + status: 'live', + network_type: 'mainnet', + pretty_name: 'ZetaChain', + chain_id: 'zetachain_7000-1', + bech32_prefix: 'zeta', + daemon_name: 'zetacored', + node_home: '$HOME/.zetacored', + key_algos: ['ethsecp256k1'], + extra_codecs: ['ethermint'], + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'azeta', + low_gas_price: 20000000000, + average_gas_price: 25000000000, + high_gas_price: 40000000000 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'azeta' + } + ] + }, + codebase: { + cosmos_sdk_version: '0.46' + }, + apis: { + rpc: [ + { + address: 'https://zetachain.blockpi.network/rpc/v1/public', + provider: 'BlockPI' + }, + { + address: 'https://zetachain-mainnet-archive.allthatnode.com:26657', + provider: 'All That Node' + } + ], + rest: [ + { + address: 'https://zetachain.blockpi.network/lcd/v1/public', + provider: 'BlockPI' + }, + { + address: 'https://zetachain-mainnet-archive.allthatnode.com:1317', + provider: 'All That Node' + } + ], + grpc: [] + }, + explorers: [ + { + kind: 'ZetaScan', + url: 'https://explorer.zetachain.com/', + tx_page: 'https://explorer.zetachain.com/cc/tx/${txHash}' + }, + { + kind: 'BlockScout', + url: 'https://zetachain.blockscout.com/', + tx_page: 'https://zetachain.blockscout.com/tx/${txHash}' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/zetachain/index.ts b/packages/chain-registry/src/mainnet/zetachain/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/zetachain/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts index ca5fd8ff7..91747566e 100644 --- a/packages/chain-registry/src/testnet/axelartestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts @@ -219,6 +219,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'axelartestnet', + client_id: '07-tendermint-858', + connection_id: 'connection-663' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-448', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts index 3a83b3d4f..d9e80160c 100644 --- a/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts @@ -189,6 +189,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'axelartestnet', + client_id: '07-tendermint-858', + connection_id: 'connection-663' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-448', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts index fbdf7d0f3..f1fcf288a 100644 --- a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts @@ -124,6 +124,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-3237', + connection_id: 'connection-3407' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3910', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts index f217d071b..83fbde92a 100644 --- a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts @@ -93,6 +93,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-3237', + connection_id: 'connection-3407' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3910', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/testnet/ibc.ts b/packages/chain-registry/src/testnet/ibc.ts index 6d0d78150..d59a12285 100644 --- a/packages/chain-registry/src/testnet/ibc.ts +++ b/packages/chain-registry/src/testnet/ibc.ts @@ -22,6 +22,7 @@ import * as _nobletestnet from './nobletestnet'; import * as _noistestnet from './noistestnet'; import * as _nolustestnet from './nolustestnet'; import * as _osmosistestnet from './osmosistestnet'; +import * as _stargazetestnet from './stargazetestnet'; const ibc: IBCInfo[] = [ ..._akashtestnet.ibc_chain1, @@ -45,7 +46,8 @@ const ibc: IBCInfo[] = [ ..._nobletestnet.ibc_chain1, ..._noistestnet.ibc_chain1, ..._nolustestnet.ibc_chain1, - ..._osmosistestnet.ibc_chain1 + ..._osmosistestnet.ibc_chain1, + ..._stargazetestnet.ibc_chain1 ]; export default ibc; diff --git a/packages/chain-registry/src/testnet/mantrachaintestnet/assets.ts b/packages/chain-registry/src/testnet/mantrachaintestnet/assets.ts new file mode 100644 index 000000000..683490c28 --- /dev/null +++ b/packages/chain-registry/src/testnet/mantrachaintestnet/assets.ts @@ -0,0 +1,46 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chain_name: 'mantrachaintestnet', + assets: [ + { + description: 'The native token of MANTRA Chain', + denom_units: [ + { + denom: 'uaum', + exponent: 0, + aliases: [] + }, + { + denom: 'aum', + exponent: 6, + aliases: [] + } + ], + base: 'uaum', + name: 'MANTRA Chain', + display: 'aum', + symbol: 'AUM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg' + }, + coingecko_id: '', + keywords: [ + 'mantra', + 'staking', + 'delegating', + 'governance', + 'regulation', + 'defi' + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/mantrachaintestnet/chain.ts b/packages/chain-registry/src/testnet/mantrachaintestnet/chain.ts new file mode 100644 index 000000000..406fff3aa --- /dev/null +++ b/packages/chain-registry/src/testnet/mantrachaintestnet/chain.ts @@ -0,0 +1,69 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../chain.schema.json', + chain_name: 'mantrachaintestnet', + status: 'live', + network_type: 'testnet', + pretty_name: 'MANTRA Chain', + chain_id: 'mantrachain-testnet-1', + bech32_prefix: 'uaum', + daemon_name: 'mantrachaind', + node_home: '$HOME/.mantrachain', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uaum', + fixed_min_gas_price: 0, + low_gas_price: 0.001, + average_gas_price: 0.002, + high_gas_price: 0.003 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'uaum' + } + ] + }, + codebase: { + cosmos_sdk_version: '0.47.3', + cosmwasm_enabled: true, + cosmwasm_version: '0.41' + }, + apis: { + rpc: [ + { + address: 'https://rpc.testnet.mantrachain.io', + provider: 'MANTRACHAIN' + } + ], + rest: [ + { + address: 'https://api.testnet.mantrachain.io', + provider: 'MANTRACHAIN' + } + ], + grpc: [ + { + address: 'https://grpc.testnet.mantrachain.io', + provider: 'MANTRACHAIN' + } + ] + }, + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg' + }, + keywords: ['dex', 'testnet'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet/images/mantra.svg' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/mantrachaintestnet/index.ts b/packages/chain-registry/src/testnet/mantrachaintestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/mantrachaintestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts index cb5da7dd4..4383cfa2f 100644 --- a/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts @@ -793,6 +793,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosistestnet', + client_id: '07-tendermint-2436', + connection_id: 'connection-2267' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-5969', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts index e949c598f..49185c4ab 100644 --- a/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/osmosistestnet/ibc_chain1.ts @@ -160,6 +160,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosistestnet', + client_id: '07-tendermint-2436', + connection_id: 'connection-2267' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-5969', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts b/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts index 1f983255c..c93854bde 100644 --- a/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/stargazetestnet/ibc.ts @@ -111,6 +111,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'stargazetestnet', + client_id: '07-tendermint-764', + connection_id: 'connection-753' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-3', + connection_id: 'connection-3' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-807', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-3', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/testnet/stargazetestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/stargazetestnet/ibc_chain1.ts new file mode 100644 index 000000000..1e5fa0967 --- /dev/null +++ b/packages/chain-registry/src/testnet/stargazetestnet/ibc_chain1.ts @@ -0,0 +1,35 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'stargazetestnet', + client_id: '07-tendermint-764', + connection_id: 'connection-753' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-3', + connection_id: 'connection-3' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-807', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-3', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/testnet/stargazetestnet/index.ts b/packages/chain-registry/src/testnet/stargazetestnet/index.ts index 86a6e3440..af8a2d557 100644 --- a/packages/chain-registry/src/testnet/stargazetestnet/index.ts +++ b/packages/chain-registry/src/testnet/stargazetestnet/index.ts @@ -1,7 +1,9 @@ import _assets from './assets'; import _chain from './chain'; import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; export const assets = _assets; export const chain = _chain; export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/swisstroniktestnet/assets.ts b/packages/chain-registry/src/testnet/swisstroniktestnet/assets.ts new file mode 100644 index 000000000..5ad7f3d7d --- /dev/null +++ b/packages/chain-registry/src/testnet/swisstroniktestnet/assets.ts @@ -0,0 +1,34 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'swisstroniktestnet', + assets: [ + { + description: 'The native currency of Swisstronik.', + denom_units: [ + { + denom: 'uswtr', + exponent: 0 + }, + { + denom: 'swtr', + exponent: 18 + } + ], + base: 'uswtr', + name: 'Swisstronik Testnet', + display: 'swtr', + symbol: 'SWTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/swisstroniktestnet/images/swisstronik.png' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts b/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts new file mode 100644 index 000000000..b63384a09 --- /dev/null +++ b/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts @@ -0,0 +1,79 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'swisstroniktestnet', + chain_id: 'swisstronik_1291-1', + pretty_name: 'Swisstronik Testnet', + status: 'live', + network_type: 'testnet', + bech32_prefix: 'swtr', + daemon_name: 'swisstronikd', + node_home: '$HOME/.swisstronik', + key_algos: ['secp256k1'], + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'uswtr', + fixed_min_gas_price: 7 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'uswtr' + } + ] + }, + codebase: { + cosmos_sdk_version: '0.47' + }, + apis: { + rpc: [ + { + address: 'https://rpc.testnet.swisstronik.com', + provider: 'Swisstronik' + }, + { + address: 'https://testnet-swisstronik-rpc.genznodes.dev', + provider: 'genznodes' + } + ], + rest: [ + { + address: 'https://api.testnet.swisstronik.com', + provider: 'Swisstronik' + }, + { + address: 'https://testnet-swisstronik-api.genznodes.dev', + provider: 'genznodes' + } + ], + grpc: [ + { + address: 'testnet-swisstronik-grpc.genznodes.dev:20090', + provider: 'genznodes' + } + ], + 'evm-http-jsonrpc': [ + { + address: 'https://json-rpc.testnet.swisstronik.com', + provider: 'Swisstronik' + }, + { + address: 'https://testnet-swisstronik-rpc-evm.genznodes.dev', + provider: 'genznodes' + } + ] + }, + explorers: [ + { + kind: 'ping.pub', + url: 'https://explorer-cosmos.testnet.swisstronik.com/swisstronik', + tx_page: + 'https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/swisstroniktestnet/index.ts b/packages/chain-registry/src/testnet/swisstroniktestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/swisstroniktestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/titantestnet/assets.ts b/packages/chain-registry/src/testnet/titantestnet/assets.ts new file mode 100644 index 000000000..3caeee8c1 --- /dev/null +++ b/packages/chain-registry/src/testnet/titantestnet/assets.ts @@ -0,0 +1,43 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'titantestnet', + assets: [ + { + description: 'The native token of the Titan network.', + denom_units: [ + { + denom: 'atkx', + exponent: 0, + aliases: ['attotkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18, + aliases: [] + } + ], + base: 'atkx', + display: 'tkx', + name: 'titan tkx', + symbol: 'TKX', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ], + keywords: ['staking'] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/titantestnet/chain.ts b/packages/chain-registry/src/testnet/titantestnet/chain.ts new file mode 100644 index 000000000..6165e12e1 --- /dev/null +++ b/packages/chain-registry/src/testnet/titantestnet/chain.ts @@ -0,0 +1,97 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'titantestnet', + status: 'live', + network_type: 'testnet', + website: 'https://tokenize.exchange/', + pretty_name: 'Titan Testnet', + chain_id: 'titan_18889-1', + bech32_prefix: 'titan', + node_home: '$HOME/.titand', + daemon_name: 'titand', + key_algos: ['ethsecp256k1'], + extra_codecs: ['ethermint'], + slip44: 60, + fees: { + fee_tokens: [ + { + denom: 'atkx', + fixed_min_gas_price: 100000000000, + low_gas_price: 100000000000, + average_gas_price: 110000000000, + high_gas_price: 200000000000 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'atkx' + } + ] + }, + codebase: { + cosmos_sdk_version: '0.47.6-titan.3', + cosmwasm_enabled: true, + cosmwasm_version: '0.45.0' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/chain.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/chain.svg' + } + ], + apis: { + rpc: [ + { + address: 'https://titan-testnet-rpc-1.tokenize-dev.com:443', + provider: 'Titanlab.io' + }, + { + address: 'https://titan-testnet-rpc-2.tokenize-dev.com:443', + provider: 'Titanlab.io' + }, + { + address: 'https://titan-testnet-rpc-3.tokenize-dev.com:443', + provider: 'Titanlab.io' + }, + { + address: 'https://titan-testnet-rpc-4.tokenize-dev.com:443', + provider: 'Titanlab.io' + } + ], + rest: [ + { + address: 'https://titan-testnet-lcd-1.tokenize-dev.com:443', + provider: 'Titanlab.io' + }, + { + address: 'https://titan-testnet-lcd-1.tokenize-dev.com:443', + provider: 'Titanlab.io' + } + ], + grpc: [], + 'evm-http-jsonrpc': [ + { + address: 'https://titan-testnet-json-rpc-1.tokenize-dev.com:443', + provider: 'Titanlab.io' + }, + { + address: 'https://titan-testnet-json-rpc-2.tokenize-dev.com:443', + provider: 'Titanlab.io' + } + ] + }, + explorers: [ + { + kind: 'ping.pub', + url: 'https://titan-testnet-explorer-light.tokenize-dev.com', + tx_page: + 'https://titan-testnet-explorer-light.tokenize-dev.com/Titan%20Testnet/tx/${txHash}', + account_page: + 'https://titan-testnet-explorer-light.tokenize-dev.com/Titan%20Testnet/account/${accountAddress}' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/titantestnet/ibc.ts b/packages/chain-registry/src/testnet/titantestnet/ibc.ts new file mode 100644 index 000000000..70841e72e --- /dev/null +++ b/packages/chain-registry/src/testnet/titantestnet/ibc.ts @@ -0,0 +1,128 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'axelartestnet', + client_id: '07-tendermint-858', + connection_id: 'connection-663' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-448', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-3237', + connection_id: 'connection-3407' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3910', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosistestnet', + client_id: '07-tendermint-2436', + connection_id: 'connection-2267' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-5969', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../../ibc_data.schema.json', + chain_1: { + chain_name: 'stargazetestnet', + client_id: '07-tendermint-764', + connection_id: 'connection-753' + }, + chain_2: { + chain_name: 'titantestnet', + client_id: '07-tendermint-3', + connection_id: 'connection-3' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-807', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-3', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/testnet/titantestnet/index.ts b/packages/chain-registry/src/testnet/titantestnet/index.ts new file mode 100644 index 000000000..86a6e3440 --- /dev/null +++ b/packages/chain-registry/src/testnet/titantestnet/index.ts @@ -0,0 +1,7 @@ +import _assets from './assets'; +import _chain from './chain'; +import _ibc from './ibc'; + +export const assets = _assets; +export const chain = _chain; +export const ibc = _ibc; From a0038eb6cd1f18d6ed780374e59690ccb516680a Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 28 Feb 2024 11:25:35 +0800 Subject: [PATCH 02/54] chore(release): publish - @chain-registry/assets@1.29.6 - chain-registry@1.28.6 - @chain-registry/cosmostation@1.31.6 - @chain-registry/juno@1.29.6 - @chain-registry/keplr@1.33.6 - @chain-registry/osmosis@1.29.6 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 6479d7065..5d20ac0fc 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.5...@chain-registry/assets@1.29.6) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/assets + + + + + ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.4...@chain-registry/assets@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 1e30038dd..1293ebce0 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.29.5", + "version": "1.29.6", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.5", + "chain-registry": "^1.28.6", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index cde9d3fed..92f034c7a 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.28.6](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.5...chain-registry@1.28.6) (2024-02-28) + +**Note:** Version bump only for package chain-registry + + + + + ## [1.28.5](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.4...chain-registry@1.28.5) (2024-02-27) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index d416b326e..d5c02e4ea 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.28.5", + "version": "1.28.6", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index 05b27616e..99a75a686 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.31.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.5...@chain-registry/cosmostation@1.31.6) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + ## [1.31.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.4...@chain-registry/cosmostation@1.31.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 7317fbc32..66d53bec5 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.31.5", + "version": "1.31.6", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.5", + "chain-registry": "^1.28.6", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index a81c80376..b75c51c57 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.5...@chain-registry/juno@1.29.6) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/juno + + + + + ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.4...@chain-registry/juno@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 5ae492cb7..959f6a8c6 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.29.5", + "version": "1.29.6", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.5", + "chain-registry": "^1.28.6", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 64a710e21..73d2f1051 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.33.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.5...@chain-registry/keplr@1.33.6) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + ## [1.33.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.4...@chain-registry/keplr@1.33.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index 84aa73311..f7e11f430 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.33.5", + "version": "1.33.6", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.5", + "chain-registry": "^1.28.6", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 2fb9d7631..f6f9285ed 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.5...@chain-registry/osmosis@1.29.6) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.4...@chain-registry/osmosis@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index dc7663a22..fa66710fb 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.29.5", + "version": "1.29.6", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.5", + "chain-registry": "^1.28.6", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From 3b23b306e0cc9bbcf6a691460fc049570ed42593 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 28 Feb 2024 11:37:58 +0800 Subject: [PATCH 03/54] fixed npm publish --- .github/workflows/npm-publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index a76b5a7b1..9322b855d 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -35,6 +35,7 @@ jobs: git config user.email "${{ github.actor}}@users.noreply.github.com" BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" git checkout -b $BRANCH_NAME + git add . git commit -am "build 🛠" git push origin $BRANCH_NAME env: From 89416d72d21effbfa6dcc8c60458ccced4e5b955 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 28 Feb 2024 05:04:05 +0000 Subject: [PATCH 04/54] =?UTF-8?q?build=20=F0=9F=9B=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/src/mainnet/axelar.ts | 44 + packages/assets/src/mainnet/celestia.ts | 44 + packages/assets/src/mainnet/dymension.ts | 18821 ++++++++++++++++ packages/assets/src/mainnet/gravitybridge.ts | 17 +- packages/assets/src/mainnet/humans.ts | 13603 +++++++++++ packages/assets/src/mainnet/kujira.ts | 44 + packages/assets/src/mainnet/osmosis.ts | 76 +- packages/assets/src/mainnet/persistence.ts | 269 + packages/assets/src/mainnet/scorum.ts | 13603 +++++++++++ packages/assets/src/mainnet/secretnetwork.ts | 59 +- packages/assets/src/mainnet/stargaze.ts | 423 + packages/assets/src/mainnet/stride.ts | 44 + packages/assets/src/testnet/assets.ts | 2 + packages/assets/src/testnet/axelartestnet.ts | 49 + .../assets/src/testnet/cosmoshubtestnet.ts | 49 + packages/assets/src/testnet/index.ts | 1 + packages/assets/src/testnet/lavatestnet2.ts | 493 + packages/assets/src/testnet/osmosistestnet.ts | 49 + .../assets/src/testnet/stargazetestnet.ts | 49 + packages/assets/src/testnet/titantestnet.ts | 577 + packages/juno/src/assets.ts | 36 +- packages/osmosis/src/asset_list.ts | 76 +- 22 files changed, 48404 insertions(+), 24 deletions(-) create mode 100644 packages/assets/src/mainnet/dymension.ts create mode 100644 packages/assets/src/mainnet/humans.ts create mode 100644 packages/assets/src/mainnet/scorum.ts create mode 100644 packages/assets/src/testnet/lavatestnet2.ts create mode 100644 packages/assets/src/testnet/titantestnet.ts diff --git a/packages/assets/src/mainnet/axelar.ts b/packages/assets/src/mainnet/axelar.ts index 1687ced28..c398e1aae 100644 --- a/packages/assets/src/mainnet/axelar.ts +++ b/packages/assets/src/mainnet/axelar.ts @@ -1543,6 +1543,50 @@ const assets: AssetList = { } ] }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/0F9EA9664729F336E5DC0FCB341E1C1993B6A272F5E4003CA74D9F8D54CEF43A', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/0F9EA9664729F336E5DC0FCB341E1C1993B6A272F5E4003CA74D9F8D54CEF43A', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-138' + } + } + ] + }, { description: 'The native staking and governance token of Empower.', denom_units: [ diff --git a/packages/assets/src/mainnet/celestia.ts b/packages/assets/src/mainnet/celestia.ts index b418faf43..2d6c87464 100644 --- a/packages/assets/src/mainnet/celestia.ts +++ b/packages/assets/src/mainnet/celestia.ts @@ -1643,6 +1643,50 @@ const assets: AssetList = { } ] }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/D5219DCDA4565FD7B3FD96C046854A2D4A005E895D1D2A7A5C83D8A3A279DD11', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/D5219DCDA4565FD7B3FD96C046854A2D4A005E895D1D2A7A5C83D8A3A279DD11', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-27' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Evmos Hub', diff --git a/packages/assets/src/mainnet/dymension.ts b/packages/assets/src/mainnet/dymension.ts new file mode 100644 index 000000000..ce43fb808 --- /dev/null +++ b/packages/assets/src/mainnet/dymension.ts @@ -0,0 +1,18821 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'dymension', + assets: [ + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2', + exponent: 0, + aliases: ['uaxl'] + }, + { + denom: 'axl', + exponent: 6 + } + ], + base: 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + coingecko_id: 'axelar', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'uaxl', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + coingecko_id: 'axlusdc', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/CA9DE7EFBE31CEEDDF4E11564C19612FFE1DCB0758069627A619510F1C5AE56A', + exponent: 0, + aliases: ['frax-wei'] + }, + { + denom: 'frax', + exponent: 18 + } + ], + base: 'ibc/CA9DE7EFBE31CEEDDF4E11564C19612FFE1DCB0758069627A619510F1C5AE56A', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'frax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Dai stablecoin on Axelar', + denom_units: [ + { + denom: + 'ibc/E1B637DCB7755B11574CA4FE1A10EEBE271ECC7F3C348A4BDD6B4204A2F66BB3', + exponent: 0, + aliases: ['dai-wei'] + }, + { + denom: 'dai', + exponent: 18 + } + ], + base: 'ibc/E1B637DCB7755B11574CA4FE1A10EEBE271ECC7F3C348A4BDD6B4204A2F66BB3', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'dai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/462724F72AB1DDD92D751BF676AAD935B8FFE9ABF962259EA5ADDDC867959679', + exponent: 0, + aliases: ['uusdt'] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + base: 'ibc/462724F72AB1DDD92D751BF676AAD935B8FFE9ABF962259EA5ADDDC867959679', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'uusdt', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + } + ] + }, + { + description: 'Wrapped Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E', + exponent: 0, + aliases: ['weth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + base: 'ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'weth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/45C87C0C3027BD5E5BBECF6A6BF8570857E555ABCB6689130AC90D391016AD17', + exponent: 0, + aliases: ['wbtc-satoshi'] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + base: 'ibc/45C87C0C3027BD5E5BBECF6A6BF8570857E555ABCB6689130AC90D391016AD17', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wbtc-satoshi', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: 'Aave on Axelar', + denom_units: [ + { + denom: + 'ibc/B7B3E129C12B4ACCC9D921452B821C0A9B5DB91BFA1E0EDC464DB5DE7858D386', + exponent: 0, + aliases: ['aave-wei'] + }, + { + denom: 'aave', + exponent: 18 + } + ], + base: 'ibc/B7B3E129C12B4ACCC9D921452B821C0A9B5DB91BFA1E0EDC464DB5DE7858D386', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'aave-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ] + }, + { + description: 'ApeCoin on Axelar', + denom_units: [ + { + denom: + 'ibc/92727E64D7B68B5F8036FC2B9CA13DC63363D189327B902A91D3499B60086D63', + exponent: 0, + aliases: ['ape-wei'] + }, + { + denom: 'ape', + exponent: 18 + } + ], + base: 'ibc/92727E64D7B68B5F8036FC2B9CA13DC63363D189327B902A91D3499B60086D63', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'ape-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ] + }, + { + description: 'Axie Infinity Shard on Axelar', + denom_units: [ + { + denom: + 'ibc/4AD528BC4895BEA6EE5DF4259EE46F866FAA0D5C73E61925B9013050E39CE04A', + exponent: 0, + aliases: ['axs-wei'] + }, + { + denom: 'axs', + exponent: 18 + } + ], + base: 'ibc/4AD528BC4895BEA6EE5DF4259EE46F866FAA0D5C73E61925B9013050E39CE04A', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'axs-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + } + ] + }, + { + description: 'Chainlink on Axelar', + denom_units: [ + { + denom: + 'ibc/5F01D08D8E63C951DDAD6111FBD235D459C95F89A57EA1BB2025430C3DD96719', + exponent: 0, + aliases: ['link-wei'] + }, + { + denom: 'link', + exponent: 18 + } + ], + base: 'ibc/5F01D08D8E63C951DDAD6111FBD235D459C95F89A57EA1BB2025430C3DD96719', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'link-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: 'Maker on Axelar', + denom_units: [ + { + denom: + 'ibc/A201638824F62E8C8D9F6A93E7B2F242B912153008943C7DAE01F76C0C7A3430', + exponent: 0, + aliases: ['mkr-wei'] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + base: 'ibc/A201638824F62E8C8D9F6A93E7B2F242B912153008943C7DAE01F76C0C7A3430', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'mkr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: 'Rai Reflex Index on Axelar', + denom_units: [ + { + denom: + 'ibc/CA23E7C30D51977BB7219CAC11056EF73E07B187DE5E4FF2E6B25C6E1903F4F5', + exponent: 0, + aliases: ['rai-wei'] + }, + { + denom: 'rai', + exponent: 18 + } + ], + base: 'ibc/CA23E7C30D51977BB7219CAC11056EF73E07B187DE5E4FF2E6B25C6E1903F4F5', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'rai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ] + }, + { + description: 'Shiba Inu on Axelar', + denom_units: [ + { + denom: + 'ibc/1BA9487241B5F9F9CFBC1EF0B099E668D953F6757185255225BB84A8B678AF8E', + exponent: 0, + aliases: ['shib-wei'] + }, + { + denom: 'shib', + exponent: 18 + } + ], + base: 'ibc/1BA9487241B5F9F9CFBC1EF0B099E668D953F6757185255225BB84A8B678AF8E', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'shib-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ] + }, + { + description: 'Lido Staked Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/34DA84E6987ADD79495C14507B0ADA343F2B9C3DC4BCF9AC921626BF1ED03FE3', + exponent: 0, + aliases: ['steth-wei'] + }, + { + denom: 'steth', + exponent: 18 + } + ], + base: 'ibc/34DA84E6987ADD79495C14507B0ADA343F2B9C3DC4BCF9AC921626BF1ED03FE3', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'steth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + } + ] + }, + { + description: 'Uniswap on Axelar', + denom_units: [ + { + denom: + 'ibc/4709E749EF4BDA4D9533CC06B646DF9574DC7B7CBF019E162F46E542F62A6C57', + exponent: 0, + aliases: ['uni-wei'] + }, + { + denom: 'uni', + exponent: 18 + } + ], + base: 'ibc/4709E749EF4BDA4D9533CC06B646DF9574DC7B7CBF019E162F46E542F62A6C57', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'uni-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + } + ] + }, + { + description: 'Chain on Axelar', + denom_units: [ + { + denom: + 'ibc/DB03B7B0DB6EC92CC2F8989462BE2174757F3E562606518415BA5C3D3BBFB71E', + exponent: 0, + aliases: ['xcn-wei'] + }, + { + denom: 'xcn', + exponent: 18 + } + ], + base: 'ibc/DB03B7B0DB6EC92CC2F8989462BE2174757F3E562606518415BA5C3D3BBFB71E', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'xcn-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/3D0D786201EA9704AE0957981B41B92EFA8F32E56318DAFE4B42DE5DE5B5E3FE', + exponent: 0, + aliases: ['dot-planck'] + }, + { + denom: 'dot', + exponent: 10 + } + ], + base: 'ibc/3D0D786201EA9704AE0957981B41B92EFA8F32E56318DAFE4B42DE5DE5B5E3FE', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'dot-planck', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ + { + denom: + 'ibc/F1E05BAE0613BE43D98BD89DDA6937F04B1D34178668BA7800FC70F2FFB42BDD', + exponent: 0, + aliases: ['wglmr-wei'] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + base: 'ibc/F1E05BAE0613BE43D98BD89DDA6937F04B1D34178668BA7800FC70F2FFB42BDD', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wglmr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'Wrapped Matic on Axelar', + denom_units: [ + { + denom: + 'ibc/E97CB9081D7EB7CAEAE022E448FDEF6D1D0781B63DA4112CAE50285594B2B32C', + exponent: 0, + aliases: ['wmatic-wei'] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + base: 'ibc/E97CB9081D7EB7CAEAE022E448FDEF6D1D0781B63DA4112CAE50285594B2B32C', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wmatic-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + ] + }, + { + description: 'Wrapped BNB on Axelar', + denom_units: [ + { + denom: + 'ibc/A0D7A4D3545AAF4C23FE0C432503D3EFB13A796B852AEF9B1B92D39AD80BD471', + exponent: 0, + aliases: ['wbnb-wei'] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + base: 'ibc/A0D7A4D3545AAF4C23FE0C432503D3EFB13A796B852AEF9B1B92D39AD80BD471', + name: 'Wrapped BNB', + display: 'wbnb', + symbol: 'WBNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wbnb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + ] + }, + { + description: 'Binance USD on Axelar.', + denom_units: [ + { + denom: + 'ibc/E0DAFC08CE018EB12427A35044AA3F375B30A2D31D528837FE7773F9DF0D2AEF', + exponent: 0, + aliases: ['busd-wei'] + }, + { + denom: 'busd', + exponent: 18 + } + ], + base: 'ibc/E0DAFC08CE018EB12427A35044AA3F375B30A2D31D528837FE7773F9DF0D2AEF', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'busd-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + } + ] + }, + { + description: 'Wrapped AVAX on Axelar.', + denom_units: [ + { + denom: + 'ibc/2991B858634D22E4637F772FA5A5F5BFCE3F30EA3ED208E36DD8DC07330490A9', + exponent: 0, + aliases: ['wavax-wei'] + }, + { + denom: 'avax', + exponent: 18 + } + ], + base: 'ibc/2991B858634D22E4637F772FA5A5F5BFCE3F30EA3ED208E36DD8DC07330490A9', + name: 'Wrapped AVAX', + display: 'avax', + symbol: 'WAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wavax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ] + }, + { + description: 'Wrapped FTM on Axelar.', + denom_units: [ + { + denom: + 'ibc/BB68A322BA69ED1661EA38363B6A6D06D27AD205896875E78EA225AAF3A65CA6', + exponent: 0, + aliases: ['wftm-wei'] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + base: 'ibc/BB68A322BA69ED1661EA38363B6A6D06D27AD205896875E78EA225AAF3A65CA6', + name: 'Wrapped FTM', + display: 'ftm', + symbol: 'WFTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wftm-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + ] + }, + { + description: "Circle's stablecoin from Polygon on Axelar", + denom_units: [ + { + denom: + 'ibc/A67479BD570B60E62F8B53043ECF131ED471C7835AC146828904C7097AF30D0B', + exponent: 0, + aliases: ['polygon-uusdc'] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + base: 'ibc/A67479BD570B60E62F8B53043ECF131ED471C7835AC146828904C7097AF30D0B', + name: 'USD Coin from Polygon', + display: 'polygon-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'polygon-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Circle's stablecoin from Avalanche on Axelar", + denom_units: [ + { + denom: + 'ibc/4AF49824065A2EB5F05E5AD5823178E595577D26500592615E3E8746EBDA5652', + exponent: 0, + aliases: ['avalanche-uusdc'] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + base: 'ibc/4AF49824065A2EB5F05E5AD5823178E595577D26500592615E3E8746EBDA5652', + name: 'USD Coin from Avalanche', + display: 'avalanche-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'avalanche-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: 'Wrapped FIL on Axelar', + denom_units: [ + { + denom: + 'ibc/11238441686A79C76DF0FE654527021E74DC7113CF84FADA03882FD53FFB5998', + exponent: 0, + aliases: ['wfil-wei'] + }, + { + denom: 'fil', + exponent: 18 + } + ], + base: 'ibc/11238441686A79C76DF0FE654527021E74DC7113CF84FADA03882FD53FFB5998', + name: 'Wrapped FIL from Filecoin', + display: 'fil', + symbol: 'axlFIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wfil-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + } + ] + }, + { + description: 'Arbitrum on Axelar', + denom_units: [ + { + denom: + 'ibc/D35774A7E5C3D52146C03DF1F458C7E81EA7E633FAE36BA58E0012ECFD77A127', + exponent: 0, + aliases: ['arb-wei'] + }, + { + denom: 'arb', + exponent: 18 + } + ], + base: 'ibc/D35774A7E5C3D52146C03DF1F458C7E81EA7E633FAE36BA58E0012ECFD77A127', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'arb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/10807457AB2AF2C5F6FCE648CC894EA6E8953497203F8517A94C4FDB340F4A14', + exponent: 0, + aliases: ['pepe-wei'] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + base: 'ibc/10807457AB2AF2C5F6FCE648CC894EA6E8953497203F8517A94C4FDB340F4A14', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'pepe-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/C9C39FC15FCE59FFD07E3F7FC7036465B6D41019387F4B8296657B53E3A6A796', + exponent: 0, + aliases: ['cbeth-wei'] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + base: 'ibc/C9C39FC15FCE59FFD07E3F7FC7036465B6D41019387F4B8296657B53E3A6A796', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'cbeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/E4CEBE54F4B294BA314A4403724FE2D20B25A4CC2F495208A2DBC78B33C568BF', + exponent: 0, + aliases: ['reth-wei'] + }, + { + denom: 'reth', + exponent: 18 + } + ], + base: 'ibc/E4CEBE54F4B294BA314A4403724FE2D20B25A4CC2F495208A2DBC78B33C568BF', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'reth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xae78736cd615f374d3085123a210448e74fc6393' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/C1D794405A8C2585DA98C52EBD31A700E6BADF9F1C3413A28B4E52BE6CE52103', + exponent: 0, + aliases: ['sfrxeth-wei'] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + base: 'ibc/C1D794405A8C2585DA98C52EBD31A700E6BADF9F1C3413A28B4E52BE6CE52103', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'sfrxeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xac3e018457b222d93114458476f3e3416abbe38f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/38D142F182413E7B44A3EBA2DA1FDBDE2B08BFC44A91DBD21A5D3583D99F47F6', + exponent: 0, + aliases: ['wsteth-wei'] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + base: 'ibc/38D142F182413E7B44A3EBA2DA1FDBDE2B08BFC44A91DBD21A5D3583D99F47F6', + name: 'Wrapped Lido Staked Ether', + display: 'wsteth', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'wsteth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/AD8342772C24FCB5CC4B009E2A61AE176B72C60EF518D6273978435FC98DA85E', + exponent: 0, + aliases: ['yieldeth-wei'] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + base: 'ibc/AD8342772C24FCB5CC4B009E2A61AE176B72C60EF518D6273978435FC98DA85E', + name: 'Real Yield Eth', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'yieldeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/5F89561DF33736F6CF5F42C5900DE61F0BF668E1EE5870F481DCCFF70B049F68', + exponent: 0, + aliases: ['ox-wei'] + }, + { + denom: 'ox', + exponent: 18 + } + ], + base: 'ibc/5F89561DF33736F6CF5F42C5900DE61F0BF668E1EE5870F481DCCFF70B049F68', + name: 'Open Exchange Token', + display: 'ox', + symbol: 'OX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-138', + base_denom: 'ox-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x78a0A62Fba6Fb21A83FE8a3433d44C73a4017A6f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229', + exponent: 0, + aliases: ['utia'] + }, + { + denom: 'tia', + exponent: 6 + } + ], + base: 'ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + coingecko_id: 'celestia', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-27', + base_denom: 'utia', + chain_name: 'celestia' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6 + } + ], + base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + coingecko_id: 'cosmos', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-794', + base_denom: 'uatom', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Tether USDt on the Cosmos Hub', + denom_units: [ + { + denom: + 'ibc/A377C4989C1735CDFBEEBF723D005E51AC893FF2B147BB18377C44234233D622', + exponent: 0, + aliases: [ + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A377C4989C1735CDFBEEBF723D005E51AC893FF2B147BB18377C44234233D622', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-794', + base_denom: + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'FX on Cosmos Hub', + denom_units: [ + { + denom: + 'ibc/E9C8AB9A4970104FB2DF8C897ECF5B3BC0915654EA3F3A5868AF726845395814', + exponent: 0, + aliases: [ + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/E9C8AB9A4970104FB2DF8C897ECF5B3BC0915654EA3F3A5868AF726845395814', + name: 'Function X', + display: 'FX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-794', + base_denom: + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'fxcore', + base_denom: 'FX' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/567D01F41E7047F60174CD64D10E8D85E09E1B831023BC75622A8F67C540DCD4', + exponent: 0, + aliases: ['ukava'] + }, + { + denom: 'kava', + exponent: 6 + } + ], + base: 'ibc/567D01F41E7047F60174CD64D10E8D85E09E1B831023BC75622A8F67C540DCD4', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + coingecko_id: 'kava', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'ukava', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/1462FB472FB073743BD33FE401926B9230CF532894B0A448F739CC7A4A524867', + exponent: 0, + aliases: ['hard'] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + base: 'ibc/1462FB472FB073743BD33FE401926B9230CF532894B0A448F739CC7A4A524867', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + coingecko_id: 'kava-lend', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'hard', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/0DA3522636CF37C11E1EAFA89CCA65AB7291C31D9CC6558BC496CF76C07CE459', + exponent: 0, + aliases: ['swp'] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + base: 'ibc/0DA3522636CF37C11E1EAFA89CCA65AB7291C31D9CC6558BC496CF76C07CE459', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + coingecko_id: 'kava-swap', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'swp', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/0E15445735D739EA562E8D125B76355BAD54E263B2276BA2775469511F494742', + exponent: 0, + aliases: ['usdx'] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + base: 'ibc/0E15445735D739EA562E8D125B76355BAD54E263B2276BA2775469511F494742', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + coingecko_id: 'usdx', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'usdx', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B72B5B3F7AD44783584921DC33354BCE07C8EB0A7F0349247C3DAD38C3B6E6A5', + exponent: 0, + aliases: ['erc20/tether/usdt'] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + base: 'ibc/B72B5B3F7AD44783584921DC33354BCE07C8EB0A7F0349247C3DAD38C3B6E6A5', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + coingecko_id: 'tether', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'erc20/tether/usdt', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/B22B4DD21586965DAEF42A7600BA371EA77C02E90FC8A7F2330BF9F9DE129B07', + exponent: 0, + aliases: ['ukuji'] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + base: 'ibc/B22B4DD21586965DAEF42A7600BA371EA77C02E90FC8A7F2330BF9F9DE129B07', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + coingecko_id: 'kujira', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: 'ukuji', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/064760EBACCE86C3789222B211A91F235D6AE1F3E502A2B41139159367DDAF9E', + exponent: 0, + aliases: [ + 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + base: 'ibc/064760EBACCE86C3789222B211A91F235D6AE1F3E502A2B41139159367DDAF9E', + name: 'USK', + display: 'usk', + symbol: 'USK', + coingecko_id: 'usk', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: "Quark's auto-compounding KUJI derivative", + denom_units: [ + { + denom: + 'ibc/4F6B7EFA2D7D0A41FE57AE71F6A6E25C6946869A3258E302E89EB5DA4AC05B5C', + exponent: 0, + aliases: [ + 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt' + ] + }, + { + denom: 'qcKUJI', + exponent: 6 + } + ], + base: 'ibc/4F6B7EFA2D7D0A41FE57AE71F6A6E25C6946869A3258E302E89EB5DA4AC05B5C', + name: 'qcKUJI', + display: 'qcKUJI', + symbol: 'qcKUJI', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'ampKUJI', + denom_units: [ + { + denom: + 'ibc/6EFF29339976D6BE9131059FBC03957C8FF6866A4FD559D315440FA03408AD74', + exponent: 0, + aliases: [ + 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI' + ] + }, + { + denom: 'ampKUJI', + exponent: 6 + } + ], + base: 'ibc/6EFF29339976D6BE9131059FBC03957C8FF6866A4FD559D315440FA03408AD74', + name: 'ampKUJI', + display: 'ampKUJI', + symbol: 'ampKUJI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/B52BB7A9F5E251207CE1082F1FC88D0F6A1DA0ADEE0EA733B833259F822028A0', + exponent: 0, + aliases: [ + 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + base: 'ibc/B52BB7A9F5E251207CE1082F1FC88D0F6A1DA0ADEE0EA733B833259F822028A0', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + coingecko_id: 'mantadao', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: "Quark's auto-compounding MNTA derivative", + denom_units: [ + { + denom: + 'ibc/80D9E1590AC0996E3D1CC66E51516711CEF5F285ECCF288A94E90E4F740A7396', + exponent: 0, + aliases: [ + 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt' + ] + }, + { + denom: 'qcMNTA', + exponent: 6 + } + ], + base: 'ibc/80D9E1590AC0996E3D1CC66E51516711CEF5F285ECCF288A94E90E4F740A7396', + name: 'qcMNTA', + display: 'qcMNTA', + symbol: 'qcMNTA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'ERIS Liquid Staked MNTA', + denom_units: [ + { + denom: + 'ibc/4F963EA43250D3324BCD0C868ECC11AB0D392C096A1BED5AD5B0DB344BDF1ABC', + exponent: 0, + aliases: [ + 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA' + ] + }, + { + denom: 'ampMNTA', + exponent: 6 + } + ], + base: 'ibc/4F963EA43250D3324BCD0C868ECC11AB0D392C096A1BED5AD5B0DB344BDF1ABC', + name: 'ERIS Amplified MNTA', + display: 'ampMNTA', + symbol: 'ampMNTA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'The content house of Kujira', + denom_units: [ + { + denom: + 'ibc/8569884AF81B9F7FC864ADFCF441E2CDD740A90DF25987F6C8AEAC99B907EBCC', + exponent: 0, + aliases: [ + 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink' + ] + }, + { + denom: 'wink', + exponent: 6 + } + ], + base: 'ibc/8569884AF81B9F7FC864ADFCF441E2CDD740A90DF25987F6C8AEAC99B907EBCC', + name: 'WINK', + display: 'wink', + symbol: 'WINK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'Blend Token', + denom_units: [ + { + denom: + 'ibc/F8945C1E432754DA5DBFB0A6C8CE2167C5D47E0D6F92A04CFE8C2424038D0FEF', + exponent: 0, + aliases: [ + 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend' + ] + }, + { + denom: 'blend', + exponent: 6 + } + ], + base: 'ibc/F8945C1E432754DA5DBFB0A6C8CE2167C5D47E0D6F92A04CFE8C2424038D0FEF', + name: 'BLEND', + display: 'blend', + symbol: 'BLEND', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'Tether USDt on Kujira', + denom_units: [ + { + denom: + 'ibc/E62BD8B044D74A4E725796162F06301D8CA86FFC8FB103EA8651B99E50F92804', + exponent: 0, + aliases: [ + 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E62BD8B044D74A4E725796162F06301D8CA86FFC8FB103EA8651B99E50F92804', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'The staking and governance token of Fuzion', + denom_units: [ + { + denom: + 'ibc/08A257D8100D24665F7F18770F1114D66D0457A11E138E511934739B7E0B8E70', + exponent: 0, + aliases: [ + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn' + ] + }, + { + denom: 'fuzn', + exponent: 6 + } + ], + base: 'ibc/08A257D8100D24665F7F18770F1114D66D0457A11E138E511934739B7E0B8E70', + name: 'Fuzion', + display: 'fuzn', + symbol: 'FUZN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'The receipt token of Fuzion', + denom_units: [ + { + denom: + 'ibc/C83FE7E3C1C2603EE6479A566987A7E7305B7D094828AE257B3DE0A8FF49C937', + exponent: 0, + aliases: [ + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn' + ] + }, + { + denom: 'rfuzn', + exponent: 6 + } + ], + base: 'ibc/C83FE7E3C1C2603EE6479A566987A7E7305B7D094828AE257B3DE0A8FF49C937', + name: 'Fuzion Receipt', + display: 'rfuzn', + symbol: 'rFUZN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'The yield token of Fuzion', + denom_units: [ + { + denom: + 'ibc/D023A46BF58C42223C89B5D68E736232727019B185F8A497C3229046FE59D53C', + exponent: 0, + aliases: [ + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn' + ] + }, + { + denom: 'yfuzn', + exponent: 6 + } + ], + base: 'ibc/D023A46BF58C42223C89B5D68E736232727019B185F8A497C3229046FE59D53C', + name: 'Fuzion Yield', + display: 'yfuzn', + symbol: 'yFUZN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: "Quark's auto-compounding FUZN derivative", + denom_units: [ + { + denom: + 'ibc/4E81108116576B4CC429FD5EB38D349F8529475ED4F63E77231A7E6599A7A3C9', + exponent: 0, + aliases: [ + 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt' + ] + }, + { + denom: 'qcFUZN', + exponent: 6 + } + ], + base: 'ibc/4E81108116576B4CC429FD5EB38D349F8529475ED4F63E77231A7E6599A7A3C9', + name: 'qcFUZN', + display: 'qcFUZN', + symbol: 'qcFUZN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/83E5B7C857F1E07115E29F9F81D0473D614F02C8070547BF2E4201BACF920A02', + exponent: 0, + aliases: [ + 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + base: 'ibc/83E5B7C857F1E07115E29F9F81D0473D614F02C8070547BF2E4201BACF920A02', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + coingecko_id: 'unstake-fi', + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'Local Money', + denom_units: [ + { + denom: + 'ibc/5050E1EDCAD2206E84F8C6DEA638CFC7F239955C658B46078F0715295E662C14', + exponent: 0, + aliases: [ + 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local' + ] + }, + { + denom: 'local', + exponent: 6 + } + ], + base: 'ibc/5050E1EDCAD2206E84F8C6DEA638CFC7F239955C658B46078F0715295E662C14', + name: 'LOCAL', + display: 'local', + symbol: 'LOCAL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'Food for whales', + denom_units: [ + { + denom: + 'ibc/4E98D101DC9A543C604610A087118701D81301A019CBACEE8B6E5B435EFB3C5E', + exponent: 0, + aliases: [ + 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk' + ] + }, + { + denom: 'PLNK', + exponent: 6 + } + ], + base: 'ibc/4E98D101DC9A543C604610A087118701D81301A019CBACEE8B6E5B435EFB3C5E', + name: 'Plankton', + display: 'PLNK', + symbol: 'PLNK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F2BE49171670C895E0B3919D5C396665244642506C200339FD27F5E40E4776EA', + exponent: 0, + aliases: [ + 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3' + ] + }, + { + denom: 'sol', + exponent: 8 + } + ], + base: 'ibc/F2BE49171670C895E0B3919D5C396665244642506C200339FD27F5E40E4776EA', + name: 'Wormhole Solana', + display: 'sol', + symbol: 'whSOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'gateway', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/34E33680F4E9DD2D0163CF4D029871B55C3281AA211828C8122F48046ED5E0BA', + exponent: 0, + aliases: [ + 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + base: 'ibc/34E33680F4E9DD2D0163CF4D029871B55C3281AA211828C8122F48046ED5E0BA', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'evmos', + base_denom: 'aevmos' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/173BC8BBC924713272B6F3E2F78E48AFD9A065C3654193BE3036B2EEA08D1EBD', + exponent: 0, + aliases: [ + 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/173BC8BBC924713272B6F3E2F78E48AFD9A065C3654193BE3036B2EEA08D1EBD', + name: 'Axelar Wrapped AVAX', + display: 'avax', + symbol: 'wAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/5414A792DE2A310682DA8C35C1F5D07B5F2571E7AF62017D7C6CE9B9F019E13C', + exponent: 0, + aliases: [ + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5414A792DE2A310682DA8C35C1F5D07B5F2571E7AF62017D7C6CE9B9F019E13C', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/7D13D3A6E3FB8DD686E0C052C0699329E33B8630C2D779056E52981DE93DE260', + exponent: 0, + aliases: [ + 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23' + ] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7D13D3A6E3FB8DD686E0C052C0699329E33B8630C2D779056E52981DE93DE260', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: 'uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/192CE21811502C16A6E34BE14F9263721EBAB6C8F0798F42AD5DE6385D6BF846', + exponent: 0, + aliases: [ + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/192CE21811502C16A6E34BE14F9263721EBAB6C8F0798F42AD5DE6385D6BF846', + name: 'Axelar USD Coin', + display: 'usdc', + symbol: 'axlUSDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/C6380C79C86D6D5EA580A3AAE7D8DAEAF13998D2F18A0B1F2A2FB8D29C343997', + exponent: 0, + aliases: [ + 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C6380C79C86D6D5EA580A3AAE7D8DAEAF13998D2F18A0B1F2A2FB8D29C343997', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'comdex', + base_denom: 'ucmdx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/178972FBD54E75AC07BBF55925D861F78DF65336DEFFB8D19C74A03D1465D758', + exponent: 0, + aliases: [ + 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + base: 'ibc/178972FBD54E75AC07BBF55925D861F78DF65336DEFFB8D19C74A03D1465D758', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: 'ujuno' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/82FB2079A938946C0A545DB9CC19BEB148F9145D2C091AB5E7E71AAFD5B8710C', + exponent: 0, + aliases: [ + 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/82FB2079A938946C0A545DB9CC19BEB148F9145D2C091AB5E7E71AAFD5B8710C', + name: 'Axelar Wrapped Ether', + display: 'weth', + symbol: 'wETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/2CA7FA605E0E3AF2E30FF14B7AC2474F2A8533835A16041A044277AED0A8E614', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2CA7FA605E0E3AF2E30FF14B7AC2474F2A8533835A16041A044277AED0A8E614', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/41FCD89744CE60F040B8E0192D4C1CF27511A0DD077E44721D434B967CC71779', + exponent: 0, + aliases: [ + 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + base: 'ibc/41FCD89744CE60F040B8E0192D4C1CF27511A0DD077E44721D434B967CC71779', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'luna', + base_denom: 'uluna' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/B8417648B2321FEBB7387D69DEDAA7BA15641FE9983BB7E370BCB3F4C44D4A7E', + exponent: 0, + aliases: [ + 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B8417648B2321FEBB7387D69DEDAA7BA15641FE9983BB7E370BCB3F4C44D4A7E', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/30D2779B2D021A919DF3ACEDB31D5B118A3FDF8B13CA44A1454FA839A00AE14B', + exponent: 0, + aliases: [ + 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + base: 'ibc/30D2779B2D021A919DF3ACEDB31D5B118A3FDF8B13CA44A1454FA839A00AE14B', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'scrt', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/5BA3FB486A77F9272E248BA5D6025A50CF4505C767D3BC763AFAC23435BA0001', + exponent: 0, + aliases: [ + 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/5BA3FB486A77F9272E248BA5D6025A50CF4505C767D3BC763AFAC23435BA0001', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: + 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8', + chain_name: 'kujira' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/2F2F132E47342479A8B7A8DB241F276609C53A1478CEB9A57411A910C9B061DB', + exponent: 0, + aliases: ['untrn'] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + base: 'ibc/2F2F132E47342479A8B7A8DB241F276609C53A1478CEB9A57411A910C9B061DB', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + coingecko_id: 'neutron-3', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: 'untrn', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'IBC uatom through cosmoshub-4 transfer/channel-1', + denom_units: [ + { + denom: + 'ibc/AF7439A784AE797BB9FC3621B363C287086324D97657DB0EDAD507CBC0CC469A', + exponent: 0, + aliases: [ + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AF7439A784AE797BB9FC3621B363C287086324D97657DB0EDAD507CBC0CC469A', + name: 'IBC atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + description: 'IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2', + denom_units: [ + { + denom: + 'ibc/2AF119C9F0FB6BD3F947821F317FE875EEAD703E0BEAFC13D394BDC7F6C405DA', + exponent: 0, + aliases: [ + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2AF119C9F0FB6BD3F947821F317FE875EEAD703E0BEAFC13D394BDC7F6C405DA', + name: 'IBC usdc', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + }, + { + description: 'Tia on Neutron', + denom_units: [ + { + denom: + 'ibc/9F673E558AF1D4EE72F4F80D2A7A6FD26F49C764231D597B993021E291DBC4BB', + exponent: 0, + aliases: [ + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F673E558AF1D4EE72F4F80D2A7A6FD26F49C764231D597B993021E291DBC4BB', + name: 'Celestia TIA', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + }, + { + description: 'Astropepe meme coin', + denom_units: [ + { + denom: + 'ibc/8E0EE407EC974036679B134932184587F7D7EDA87B1A2E502ECAE39C9276E9D7', + exponent: 0, + aliases: [ + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe' + ] + }, + { + denom: 'ASTROPEPE', + exponent: 6 + } + ], + base: 'ibc/8E0EE407EC974036679B134932184587F7D7EDA87B1A2E502ECAE39C9276E9D7', + name: 'AstroPepe', + display: 'ASTROPEPE', + symbol: 'ASTROPEPE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'wstETH on Neutron', + denom_units: [ + { + denom: + 'ibc/EE01F9EB2F4115D8509E07C89EC2228ABF4F329C5D0B16AD6FD68040BE97F7D2', + exponent: 0, + aliases: [ + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + base: 'ibc/EE01F9EB2F4115D8509E07C89EC2228ABF4F329C5D0B16AD6FD68040BE97F7D2', + name: 'wstETH', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + }, + { + description: 'NBTC on Neutron', + denom_units: [ + { + denom: + 'ibc/8AE61BF7BB1876B1848A89E1287BEBD66E1B9E844F4D4D4EF87623CC647ABEF3', + exponent: 0, + aliases: [ + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920' + ] + }, + { + denom: 'sat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8AE61BF7BB1876B1848A89E1287BEBD66E1B9E844F4D4D4EF87623CC647ABEF3', + name: 'Nomic NBTC', + display: 'sat', + symbol: 'SAT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + }, + { + description: 'DYDX on Neutron', + denom_units: [ + { + denom: + 'ibc/508D8BF3A57F260C03FD0E86DB24915E9626B57104E4EE4C402AB28719274AE3', + exponent: 0, + aliases: [ + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/508D8BF3A57F260C03FD0E86DB24915E9626B57104E4EE4C402AB28719274AE3', + name: 'DYDX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/D9DF33ED00559ECE347019E1383B19FB922EA69CC43B5FDB232E1761FCD66B73', + exponent: 0, + aliases: [ + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + base: 'ibc/D9DF33ED00559ECE347019E1383B19FB922EA69CC43B5FDB232E1761FCD66B73', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + coingecko_id: 'newt', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'ASTRO on Neutron', + denom_units: [ + { + denom: + 'ibc/FFA0CC9EBA85FEF1EC64434F407A75ABB06451BD451C923F2BBBEF2368A40017', + exponent: 0, + aliases: [ + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A' + ] + }, + { + denom: 'astro', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FFA0CC9EBA85FEF1EC64434F407A75ABB06451BD451C923F2BBBEF2368A40017', + name: 'Astroport token', + display: 'astro', + symbol: 'ASTRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'terra2', + base_denom: + 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + } + }, + { + description: 'Baby Corgi is the real doggo of Neutron!', + denom_units: [ + { + denom: + 'ibc/B44899C2657037029211846C21BF87203BC1CFC7DFAD6919387A5EEE98878669', + exponent: 0, + aliases: [ + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi' + ] + }, + { + denom: 'corgi', + exponent: 6 + } + ], + base: 'ibc/B44899C2657037029211846C21BF87203BC1CFC7DFAD6919387A5EEE98878669', + name: 'Baby Corgi', + display: 'corgi', + symbol: 'CORGI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/17DB1BA7CC19713BFBEAB2D2EC28D17E5F32CEF4E14FF2C5DF89B5798362B95D', + exponent: 0, + aliases: [ + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + base: 'ibc/17DB1BA7CC19713BFBEAB2D2EC28D17E5F32CEF4E14FF2C5DF89B5798362B95D', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'Jimmy Neutron Finance', + denom_units: [ + { + denom: + 'ibc/DE932122E8CFB995BA68B5E6B205C44B3593C3AD8811E22C228281C5BBA5A351', + exponent: 0, + aliases: [ + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY' + ] + }, + { + denom: 'jimmy', + exponent: 6 + } + ], + base: 'ibc/DE932122E8CFB995BA68B5E6B205C44B3593C3AD8811E22C228281C5BBA5A351', + name: 'jimmy', + display: 'jimmy', + symbol: 'JIMMY', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/DA8D20FB85E3AD72D40D91E913762D55CAAE70C8CED773AE6C60B1D718E32BAA', + exponent: 0, + aliases: [ + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + base: 'ibc/DA8D20FB85E3AD72D40D91E913762D55CAAE70C8CED773AE6C60B1D718E32BAA', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'BITCOSMOS', + denom_units: [ + { + denom: + 'ibc/43BE84DBB801E0620A0789EB9492501BDCB28B2D587B533F8F0EBB190D79A535', + exponent: 0, + aliases: [ + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj' + ] + }, + { + denom: 'bitcosmos', + exponent: 6 + } + ], + base: 'ibc/43BE84DBB801E0620A0789EB9492501BDCB28B2D587B533F8F0EBB190D79A535', + name: 'Bitcosmos', + display: 'bitcosmos', + symbol: 'BTC', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'What the Fuck', + denom_units: [ + { + denom: + 'ibc/CD1BC6A7D6F50523BF38BFA5BDB7346B0A3A71CC2D294F42C53BD4D627D36AEF', + exponent: 0, + aliases: [ + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf' + ] + }, + { + denom: 'wtf', + exponent: 6 + } + ], + base: 'ibc/CD1BC6A7D6F50523BF38BFA5BDB7346B0A3A71CC2D294F42C53BD4D627D36AEF', + name: 'wtf', + display: 'wtf', + symbol: 'WTF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'NLS on Neutron', + denom_units: [ + { + denom: + 'ibc/D70B9AE36037B5E507C268E12CC68466068B4B8525F9C10B83FFB4A02C4AF4DA', + exponent: 0, + aliases: [ + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D70B9AE36037B5E507C268E12CC68466068B4B8525F9C10B83FFB4A02C4AF4DA', + name: 'Nolus NLS', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + }, + { + description: 'A Mechanical Canine', + denom_units: [ + { + denom: + 'ibc/FEFB7B5DF226DA0708B0E481C526810B71A5C35B3BE39153708D745965394103', + exponent: 0, + aliases: [ + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard' + ] + }, + { + denom: 'goddard', + exponent: 6 + } + ], + base: 'ibc/FEFB7B5DF226DA0708B0E481C526810B71A5C35B3BE39153708D745965394103', + name: 'Goddard', + display: 'goddard', + symbol: 'GODRD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/5344911D6D6029DBA1003A074E933255E10B4C0037520191443448D19ABFDE01', + exponent: 0, + aliases: [ + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + base: 'ibc/5344911D6D6029DBA1003A074E933255E10B4C0037520191443448D19ABFDE01', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'NEWTROLL', + denom_units: [ + { + denom: + 'ibc/6A8D39D8AA315A5FB834D4EA3B75FFBD015022B15B05DFF7F195E393946E3A86', + exponent: 0, + aliases: [ + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll' + ] + }, + { + denom: 'newtroll', + exponent: 6 + } + ], + base: 'ibc/6A8D39D8AA315A5FB834D4EA3B75FFBD015022B15B05DFF7F195E393946E3A86', + name: 'Newtroll', + display: 'newtroll', + symbol: 'NTRL', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'Retro Game', + denom_units: [ + { + denom: + 'ibc/82AF8D8BF8789647954129B72A264B5A9208822FCDF8A649BDA7CF0C88568904', + exponent: 0, + aliases: [ + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro' + ] + }, + { + denom: 'retro', + exponent: 6 + } + ], + base: 'ibc/82AF8D8BF8789647954129B72A264B5A9208822FCDF8A649BDA7CF0C88568904', + name: 'Retro', + display: 'retro', + symbol: 'RETRO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON', + denom_units: [ + { + denom: + 'ibc/2FD0A4C54A79C51D99134B534B0E03F157DA1D256DD0E8369F9101F138DED490', + exponent: 0, + aliases: [ + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD' + ] + }, + { + denom: 'goddard', + exponent: 6 + } + ], + base: 'ibc/2FD0A4C54A79C51D99134B534B0E03F157DA1D256DD0E8369F9101F138DED490', + name: 'Goddard', + display: 'goddard', + symbol: 'GODDARD', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'The first memecoin on osmosis.', + denom_units: [ + { + denom: + 'ibc/2D8ACD0837353BA768EA2C220939B8B5BDD719B404CC1F0F1E5071438503052D', + exponent: 0, + aliases: [ + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958' + ] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2D8ACD0837353BA768EA2C220939B8B5BDD719B404CC1F0F1E5071438503052D', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + }, + { + description: 'Astro BOY', + denom_units: [ + { + denom: + 'ibc/FD4BF44CE3D5B5716BDD82849EBE46C6F04EADFD6D17E240E90C98F860E557FE', + exponent: 0, + aliases: [ + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv' + ] + }, + { + denom: 'boy', + exponent: 6 + } + ], + base: 'ibc/FD4BF44CE3D5B5716BDD82849EBE46C6F04EADFD6D17E240E90C98F860E557FE', + name: 'boy', + display: 'boy', + symbol: 'BOY', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/5A665CE7CEB4BACE322CE952AB1B6B7C21E44094FF14E5E28C0B282C5031E41C', + exponent: 0, + aliases: [ + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5A665CE7CEB4BACE322CE952AB1B6B7C21E44094FF14E5E28C0B282C5031E41C', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + }, + { + description: 'Reflections of cartel activity on Cosmos.', + denom_units: [ + { + denom: + 'ibc/30DB3922A424DCFA5CB8066BBB5064CE56C352AEEEC7D4A7B5E0F4BEE2F0010E', + exponent: 0, + aliases: [ + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel' + ] + }, + { + denom: 'cartel', + exponent: 6 + } + ], + base: 'ibc/30DB3922A424DCFA5CB8066BBB5064CE56C352AEEEC7D4A7B5E0F4BEE2F0010E', + name: 'cartel', + display: 'cartel', + symbol: 'CARTEL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-675', + base_denom: + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, + { + description: 'The permissioned staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/B73E9196C59EB34F42BECE5EA20511B33A0B1286B23210FDEEAA1AE876C037C7', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } + ], + base: 'ibc/B73E9196C59EB34F42BECE5EA20511B33A0B1286B23210FDEEAA1AE876C037C7', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: 'ustake', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-6' + } + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/1A14CD454D073C3BE9AE2B8617CB5259911A711E4066C0146AB7FE1B50A5F811', + exponent: 0, + aliases: ['ufrienzies'] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + base: 'ibc/1A14CD454D073C3BE9AE2B8617CB5259911A711E4066C0146AB7FE1B50A5F811', + display: 'frienzies', + name: 'Frienzies', + symbol: 'FRNZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: 'ufrienzies', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-6' + } + } + ] + }, + { + description: 'ATOM token on Noble', + denom_units: [ + { + denom: + 'ibc/321CFD4F7FA7E2660C51C073877D79FEE4115BE457277F372486CBB35FC3026A', + exponent: 0, + aliases: [ + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' + ] + }, + { + denom: 'atom', + exponent: 6, + aliases: ['ATOM'] + } + ], + type_asset: 'ics20', + base: 'ibc/321CFD4F7FA7E2660C51C073877D79FEE4115BE457277F372486CBB35FC3026A', + name: 'Atom Staking Coin', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + coingecko_id: 'usd-coin', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: 'uusdc', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/EAFC16C9228D3D8423D93CB2259B7AE7F504B8454060A3E43E5A5D5E595C4854', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EAFC16C9228D3D8423D93CB2259B7AE7F504B8454060A3E43E5A5D5E595C4854', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/3693A6786B2CD5794A6C38ECBD0DC82DBAB9A2BF0074FB1BF8DD8B102AC6CA4D', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3693A6786B2CD5794A6C38ECBD0DC82DBAB9A2BF0074FB1BF8DD8B102AC6CA4D', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/916B6D90CA7F3697FC5D05F794656B04CB7934940AD201000252EC2897ABB9AF', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/916B6D90CA7F3697FC5D05F794656B04CB7934940AD201000252EC2897ABB9AF', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/AD734821D7D05C13979937811421C8D4FEB3F50BCE970D58B58CC86F9A34AD1E', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AD734821D7D05C13979937811421C8D4FEB3F50BCE970D58B58CC86F9A34AD1E', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/5F78C42BCC76287AE6B3185C6C1455DFFF8D805B1847F94B9B625384B93885C7', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F78C42BCC76287AE6B3185C6C1455DFFF8D805B1847F94B9B625384B93885C7', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/3D7EBE58FD23398381555EDB0AF2E4EF98287D5F8CA210C9E0DA5C240FD60A42', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/3D7EBE58FD23398381555EDB0AF2E4EF98287D5F8CA210C9E0DA5C240FD60A42', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/C5BC238F3E9F2308941A45C3454D6169EE71528F830DA826D6DFED53C4AB55CC', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C5BC238F3E9F2308941A45C3454D6169EE71528F830DA826D6DFED53C4AB55CC', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/A7D5E4247F766C4C5C1A1F2874CC526BA8DD458DB73E188C9584ABF30652C578', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A7D5E4247F766C4C5C1A1F2874CC526BA8DD458DB73E188C9584ABF30652C578', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/63E97C66717CC4B0D01C5C6DC059C9CD30E9F34ABC0F8DF6A39C4E50C4971D9E', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/63E97C66717CC4B0D01C5C6DC059C9CD30E9F34ABC0F8DF6A39C4E50C4971D9E', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/558F9B6FE9C9B907752A2F08C2EFE85A2DE444C6B6F8A34C63B8EDE38497FA9D', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/558F9B6FE9C9B907752A2F08C2EFE85A2DE444C6B6F8A34C63B8EDE38497FA9D', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/2716B3FFEAA9B701193FD9D02D546B841E16B46309BEAF151C2EA9502440B115', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2716B3FFEAA9B701193FD9D02D546B841E16B46309BEAF151C2EA9502440B115', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/F128A4E77403D41126553F8533584EC90937F78895C707606AC960775B0B6EE0', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/F128A4E77403D41126553F8533584EC90937F78895C707606AC960775B0B6EE0', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/56BD4E7860D18C6A8565CCE8F1ECD381CC49ACB407D2A54E6D6A8673123A83BF', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/56BD4E7860D18C6A8565CCE8F1ECD381CC49ACB407D2A54E6D6A8673123A83BF', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/4364631C5B83EA126A30789CB7A5BA73342F7A82A4D17C32D75F7AD358474BD3', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4364631C5B83EA126A30789CB7A5BA73342F7A82A4D17C32D75F7AD358474BD3', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/82E1C16B0EB48AED31E74DEFFC6B0C4C4527C2FDF99548501365C54815FE2733', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/82E1C16B0EB48AED31E74DEFFC6B0C4C4527C2FDF99548501365C54815FE2733', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/DF67BE8721747A1B5A381E923A64860696E6F721C4A60963F6A6E89E8280906A', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/DF67BE8721747A1B5A381E923A64860696E6F721C4A60963F6A6E89E8280906A', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/5B5C6253F505A05809C899CDB26FAD6464657889F15D5699DC6F6B6AFFE9FDA4', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5B5C6253F505A05809C899CDB26FAD6464657889F15D5699DC6F6B6AFFE9FDA4', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/F21ECB1BAF5178FDD29275155AD7A6BCF5A1516A684B7DE6036F1FD8C459CDD3', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F21ECB1BAF5178FDD29275155AD7A6BCF5A1516A684B7DE6036F1FD8C459CDD3', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/E6504FE2C6E452270CD0A31694477A07D24F9DC3793DB068AFDE18C33C98DCC2', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E6504FE2C6E452270CD0A31694477A07D24F9DC3793DB068AFDE18C33C98DCC2', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/20FB0527017607F0E59AC2279D3410AD7A3FBCBDFAF4A71434BBA07C7B799836', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/20FB0527017607F0E59AC2279D3410AD7A3FBCBDFAF4A71434BBA07C7B799836', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/1F2A2A5E4DBE9ACCD495D024A0B2BA14E7C1D7F4C14803CF1895B195264C9C22', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1F2A2A5E4DBE9ACCD495D024A0B2BA14E7C1D7F4C14803CF1895B195264C9C22', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/0E1BCB2A120B23DF8204C1B8F9C8ADC4F0E32BF5DDFC7AC00DFF852E984BED21', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E1BCB2A120B23DF8204C1B8F9C8ADC4F0E32BF5DDFC7AC00DFF852E984BED21', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/1CAEF86C48DF2106894AFB91008DA22C61DDF342CE4F5FF02157AAA11905C772', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1CAEF86C48DF2106894AFB91008DA22C61DDF342CE4F5FF02157AAA11905C772', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/C543AC9121407ADC8B9AF34CFDF4F57C014826C104B64576CAEF64B2725CD351', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C543AC9121407ADC8B9AF34CFDF4F57C014826C104B64576CAEF64B2725CD351', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/8633E4F366C769CACDA3EC756B10518ADC3947C4C1C5AF84D8322D3DCA960168', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8633E4F366C769CACDA3EC756B10518ADC3947C4C1C5AF84D8322D3DCA960168', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/2D3DAE79196C554F7757AD3F4D9FC82FE1A20078B7C5B204DC4E9FF9D2CF52FB', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2D3DAE79196C554F7757AD3F4D9FC82FE1A20078B7C5B204DC4E9FF9D2CF52FB', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/1901852B020FDCFD8B320B75CF98ACF71C1FB4409DBE6576B28CA6B4EE36E031', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1901852B020FDCFD8B320B75CF98ACF71C1FB4409DBE6576B28CA6B4EE36E031', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/D49ED1BD5AB588AEBC1206B68BF425811671637922996E9E1B819778D3798D54', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/D49ED1BD5AB588AEBC1206B68BF425811671637922996E9E1B819778D3798D54', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/6AD4C134732C1ED5253ED393636C54384240DD3B675F9E3700591BC3B9C58391', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6AD4C134732C1ED5253ED393636C54384240DD3B675F9E3700591BC3B9C58391', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/90FE91DD51A0F8121FEA4C72C02412BF8EF08F7A36ECE4302909D244148AACAF', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/90FE91DD51A0F8121FEA4C72C02412BF8EF08F7A36ECE4302909D244148AACAF', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/792498682F09D83F0C4AC1A3B50DF5D4B22F47045CF6A00CECB57E6473FDC887', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/792498682F09D83F0C4AC1A3B50DF5D4B22F47045CF6A00CECB57E6473FDC887', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/246039F5B367BD2082EAF08D7693AA86CD227990E1634FCA5BEA8427382C54F4', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/246039F5B367BD2082EAF08D7693AA86CD227990E1634FCA5BEA8427382C54F4', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/584ACBF06EA000393045BF641571E2D9D50174ACA5CD20C3586FBD003A8E309A', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/584ACBF06EA000393045BF641571E2D9D50174ACA5CD20C3586FBD003A8E309A', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/290633E33B226A84D6F520772793E3A17E5A4E3E168CD83F017321CDD5CFA14F', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/290633E33B226A84D6F520772793E3A17E5A4E3E168CD83F017321CDD5CFA14F', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/C4EFC55B20FCB465128BCE82432A41B01AA86F2A5E91C4379727F52F3467405F', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C4EFC55B20FCB465128BCE82432A41B01AA86F2A5E91C4379727F52F3467405F', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/8801FC1AAC93AF081835FCB1EA80520DB603E451BC85E7060154FBA8CA7DC7B1', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/8801FC1AAC93AF081835FCB1EA80520DB603E451BC85E7060154FBA8CA7DC7B1', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/169365A51A5BACE84A5D8133C873BC8293F2D965CD665E659B7538DDF4A6770D', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/169365A51A5BACE84A5D8133C873BC8293F2D965CD665E659B7538DDF4A6770D', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/A0DCC9A862B2DDBB40429EA55A2A206AC88B43C8E1F2C7555DB4087160695E2A', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A0DCC9A862B2DDBB40429EA55A2A206AC88B43C8E1F2C7555DB4087160695E2A', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/4520A1894FFF6242C79E18BF3616E4B32BFB99C96B94645A5C50067CFAFB25A4', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4520A1894FFF6242C79E18BF3616E4B32BFB99C96B94645A5C50067CFAFB25A4', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/84C00AC833E2DCA8B1B0A4736BE78793CB14354DAA8C5A185D6E66A9A493D459', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/84C00AC833E2DCA8B1B0A4736BE78793CB14354DAA8C5A185D6E66A9A493D459', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/40A19DA7BB2E2275ABC84D0823D6C30E6F49FF541E111395A97CFA019BFED6CA', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/40A19DA7BB2E2275ABC84D0823D6C30E6F49FF541E111395A97CFA019BFED6CA', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/557233793CF0ED2CB2BFD418DD78A61E260AFA4D0F7054E5CEC65F54A5168728', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/557233793CF0ED2CB2BFD418DD78A61E260AFA4D0F7054E5CEC65F54A5168728', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/B30FE4D55A076EC5876A986A087E17ECD4F6646E54EECB764523EE71C032D069', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B30FE4D55A076EC5876A986A087E17ECD4F6646E54EECB764523EE71C032D069', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/D2ED8BA7652AB613C3CBA79213D5ABB77468A6713B151CFB622C25EC5DE64BF7', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D2ED8BA7652AB613C3CBA79213D5ABB77468A6713B151CFB622C25EC5DE64BF7', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/30FAA865A6425EF2A0F26EE393870D1F9E81A6D2DE28DEEDFAB193E0AD25C640', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30FAA865A6425EF2A0F26EE393870D1F9E81A6D2DE28DEEDFAB193E0AD25C640', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/08A2DFB41A3CE0B6F51C0B75112662887634266531CED4063EF71BDAFC3066CB', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/08A2DFB41A3CE0B6F51C0B75112662887634266531CED4063EF71BDAFC3066CB', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/12894D6C622685B9C3CB1BED3941E90EF103288D585AB052B74803D2B3359E1B', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/12894D6C622685B9C3CB1BED3941E90EF103288D585AB052B74803D2B3359E1B', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/09467C5F32E01C7CAAF50D45872263F995938937C8A473C5D1F370C79D7B171A', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/09467C5F32E01C7CAAF50D45872263F995938937C8A473C5D1F370C79D7B171A', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/B7D2504D7CFB8B93E205E7C133DD37AD4C14F2404C54CD71CDBF1E519803C92C', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B7D2504D7CFB8B93E205E7C133DD37AD4C14F2404C54CD71CDBF1E519803C92C', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/62F3824C199C3CBD045540DB1200FB5144D7569A1677D155444DFA0A2A0EE09D', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/62F3824C199C3CBD045540DB1200FB5144D7569A1677D155444DFA0A2A0EE09D', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/1C897E5351F024E03A953CF0975921B4509F763897883D99AFA54561E256AEC4', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1C897E5351F024E03A953CF0975921B4509F763897883D99AFA54561E256AEC4', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/295AD25159C6EA8069C4F467F4D5F0EB4BC0726358242E08994A54AF75746DA9', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/295AD25159C6EA8069C4F467F4D5F0EB4BC0726358242E08994A54AF75746DA9', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/3505E524FE294E77E33004FC27E2AD5B7F28EB51D1A87C37F2942B9EEB622440', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3505E524FE294E77E33004FC27E2AD5B7F28EB51D1A87C37F2942B9EEB622440', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/B76A6194010000CD261550587F5940371EA301CAAB85BD7F3D3A4AB07AFBFE49', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/B76A6194010000CD261550587F5940371EA301CAAB85BD7F3D3A4AB07AFBFE49', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/DB8216CA8BAF65CFA484FF3EC42D6857CBCB97FB07A1D8541DBBE985FFAC1523', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DB8216CA8BAF65CFA484FF3EC42D6857CBCB97FB07A1D8541DBBE985FFAC1523', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/2B63C4A08A1A5E0FD567E3D12BAA59FBC8A8D0C66F7EC3EEAD20C142414BDC24', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2B63C4A08A1A5E0FD567E3D12BAA59FBC8A8D0C66F7EC3EEAD20C142414BDC24', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/45C4313771874DC11BCCFC3D421859C91B40673B8352B0867EE48666E14F1AFA', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45C4313771874DC11BCCFC3D421859C91B40673B8352B0867EE48666E14F1AFA', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/5B53C9DFEC12654627F1CBC90C3D4A2EB0F51CEB0FA716C34E2DD189329B200B', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5B53C9DFEC12654627F1CBC90C3D4A2EB0F51CEB0FA716C34E2DD189329B200B', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/C4CEC1FB34C9AABFBAF40F1049851A369EE667BA51E80AB8EEC9E80D4082F78F', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C4CEC1FB34C9AABFBAF40F1049851A369EE667BA51E80AB8EEC9E80D4082F78F', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/A281F6978DD03E87DB665ADD28F7CB5215E8B04CF75E0DACD91790F0A38EAB3B', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A281F6978DD03E87DB665ADD28F7CB5215E8B04CF75E0DACD91790F0A38EAB3B', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/5AE5CDC4F7BE5C6A18CC194782C502D73F4ACB81BE057C965FE32647F9ACFEC3', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/5AE5CDC4F7BE5C6A18CC194782C502D73F4ACB81BE057C965FE32647F9ACFEC3', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/83C4F71AA298014D55AFF6EDD832DAA88B3A726354EBA131C43C82ECDC20AE69', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/83C4F71AA298014D55AFF6EDD832DAA88B3A726354EBA131C43C82ECDC20AE69', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/B9EAA704866C86D516967EC865B0DD3D27E81D99FDB167B09FCD33DA25AEF331', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B9EAA704866C86D516967EC865B0DD3D27E81D99FDB167B09FCD33DA25AEF331', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/C8F8EE4F8D4D3A2A4FF90AA184E2D18FDCB2320792042B1BE513C85815ED23A3', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C8F8EE4F8D4D3A2A4FF90AA184E2D18FDCB2320792042B1BE513C85815ED23A3', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/C73024CFD77526736935FCFD041966289E0DC0A4E66353A124D598DCE7190BF0', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C73024CFD77526736935FCFD041966289E0DC0A4E66353A124D598DCE7190BF0', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/8C5A5DF087D19CE961DDB7B30CF69C64E11AF93075CA9DEE1C58ECFD397F614E', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8C5A5DF087D19CE961DDB7B30CF69C64E11AF93075CA9DEE1C58ECFD397F614E', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/C6D4C3E0683CCA53E900D5554905C3527563F58242156BA5BE6901DC375C1CD4', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/C6D4C3E0683CCA53E900D5554905C3527563F58242156BA5BE6901DC375C1CD4', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/FB6AF3A98C52F157D9394C2DA110463501E1935B61F9D5B229D1740475559A5A', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB6AF3A98C52F157D9394C2DA110463501E1935B61F9D5B229D1740475559A5A', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/10B1ED11C429315C944C11A8DBB9B21272F1BBC643399FF047EB7200AB5216E0', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/10B1ED11C429315C944C11A8DBB9B21272F1BBC643399FF047EB7200AB5216E0', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/227AFB9B7355DA4068EED38036D03ADEC9CD5AE96E114F36E391DF9666B9A1C3', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/227AFB9B7355DA4068EED38036D03ADEC9CD5AE96E114F36E391DF9666B9A1C3', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/FECC8DD045AD8A9C3C3EC412D0A3D24745631281DF42ADD14E544E8A55EE6887', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FECC8DD045AD8A9C3C3EC412D0A3D24745631281DF42ADD14E544E8A55EE6887', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/98725093899F8E4DBDD8CE2D4AB309A5CAF94B6DEB52EED179CB086E9024A777', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/98725093899F8E4DBDD8CE2D4AB309A5CAF94B6DEB52EED179CB086E9024A777', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/081EB10A339510CD63784CC612DCFAF3214983B7EF00B10B88C00A6B4FFD57EF', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/081EB10A339510CD63784CC612DCFAF3214983B7EF00B10B88C00A6B4FFD57EF', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/2BAF90837DEE766349687E6D93A29750922091A5F28F294C150468C6258E39D6', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2BAF90837DEE766349687E6D93A29750922091A5F28F294C150468C6258E39D6', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/2E84612A0D5D7A5BEB40D2BD839397AF22D44BA9A28B5684F6F8D30B25031F80', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2E84612A0D5D7A5BEB40D2BD839397AF22D44BA9A28B5684F6F8D30B25031F80', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/36F0AC84225A5583039587F5C2736520BA0FDFE47ADC42E53844FCE53858391D', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/36F0AC84225A5583039587F5C2736520BA0FDFE47ADC42E53844FCE53858391D', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/2AED47DA35E52805A7CC8EDA5CAE30A7E066C2FAE9C5572E7DDAAC839300481B', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2AED47DA35E52805A7CC8EDA5CAE30A7E066C2FAE9C5572E7DDAAC839300481B', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/17CB83CBF57639248398CE7D8BC6884988E431219B4D9907DC677F82D050C3F1', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/17CB83CBF57639248398CE7D8BC6884988E431219B4D9907DC677F82D050C3F1', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/09A0603C5E403FF9204A4D2C0FEA6D714CB37198602820E6258A4299DB00EDED', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/09A0603C5E403FF9204A4D2C0FEA6D714CB37198602820E6258A4299DB00EDED', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/7F1DE59F778C803CCB82E3BE54C9362D410FFF2682CBD9F3FE1D9081BF33A76E', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7F1DE59F778C803CCB82E3BE54C9362D410FFF2682CBD9F3FE1D9081BF33A76E', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/DFC48DE665CA22F9BCF9E1D4572B3725C781015019298441AA3FBD7DC98DAD8A', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DFC48DE665CA22F9BCF9E1D4572B3725C781015019298441AA3FBD7DC98DAD8A', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/6D52D7BE776ED0F74879D834FFA876833ACB2BF6FE64FCCA96E1830055956926', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6D52D7BE776ED0F74879D834FFA876833ACB2BF6FE64FCCA96E1830055956926', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/8AE0085ADFDB35210AEB339A4A08D7768791A666F7A8B0042B2C509D2E4655E4', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8AE0085ADFDB35210AEB339A4A08D7768791A666F7A8B0042B2C509D2E4655E4', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/4A5F8F58FEEBAF52211324F77EFED5274B0998B91DCB3CF4F3B6C5B3A96CF3B2', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4A5F8F58FEEBAF52211324F77EFED5274B0998B91DCB3CF4F3B6C5B3A96CF3B2', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/692B2F9CC6FDA3B2954480F0E2BC672854BB8729E0CF85F5206B8CB8CCEF885A', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/692B2F9CC6FDA3B2954480F0E2BC672854BB8729E0CF85F5206B8CB8CCEF885A', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/AFE84A4EF109C5D45E7EFA32A52FB9060360042AA34FE556FC0DB781D7BF8FD9', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AFE84A4EF109C5D45E7EFA32A52FB9060360042AA34FE556FC0DB781D7BF8FD9', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/D4375ED5C3A8769E0C893742175AB0C63371A1237C82F17C444A1A388202E7D8', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D4375ED5C3A8769E0C893742175AB0C63371A1237C82F17C444A1A388202E7D8', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/B95AA0670A1073A278BE1C28FBAE1509ACEFE0207AB3F3E92156324DECA2225A', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B95AA0670A1073A278BE1C28FBAE1509ACEFE0207AB3F3E92156324DECA2225A', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/17F5447A5C08F631700976DDF561B415DE0767713EE9F0FB726EDA767330A612', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/17F5447A5C08F631700976DDF561B415DE0767713EE9F0FB726EDA767330A612', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/1C0C01DEBFA1618F734E67846B4E8CBB3E00B9F1BAB16050CBA2B98F99FEFE2E', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1C0C01DEBFA1618F734E67846B4E8CBB3E00B9F1BAB16050CBA2B98F99FEFE2E', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/E7F1860E43692DEE815852047E02E1B09EEDE5077B1378AB1A9BB58EA9F02A8D', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E7F1860E43692DEE815852047E02E1B09EEDE5077B1378AB1A9BB58EA9F02A8D', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/34417AD68A6121346688240188601369CC979B2A759D81705D3DC1661484EBDA', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/34417AD68A6121346688240188601369CC979B2A759D81705D3DC1661484EBDA', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/0F4AC79EAFB81BFDE35A6C9549DA3FD0293F48C422963AB50E42891B03609F14', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F4AC79EAFB81BFDE35A6C9549DA3FD0293F48C422963AB50E42891B03609F14', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/D9F572EE9AA7DB6B3472593F528990F9972F96442F077FD193FD5804368CBDCE', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D9F572EE9AA7DB6B3472593F528990F9972F96442F077FD193FD5804368CBDCE', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/66AD9A81BE2F5A555D1F9A4F7B2A9669A000BE48F3E9A32B92E81982F491D8C9', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/66AD9A81BE2F5A555D1F9A4F7B2A9669A000BE48F3E9A32B92E81982F491D8C9', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/8CBF87B2DA5FEC902AED2312B330481DA6D7AA789212FCF7B2A60F326AF4DB2A', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8CBF87B2DA5FEC902AED2312B330481DA6D7AA789212FCF7B2A60F326AF4DB2A', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/17AC414BDA856A6C0BC18FE38177F636C8CEB96C51028E7DADFD77AB02B1F09E', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/17AC414BDA856A6C0BC18FE38177F636C8CEB96C51028E7DADFD77AB02B1F09E', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/4716031E7942FDCD22013F8F652FFEC8A7ED205EB62B48B11CCEA03643172CA0', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4716031E7942FDCD22013F8F652FFEC8A7ED205EB62B48B11CCEA03643172CA0', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/19DB71A0EBEF5BC923C609867C5632855CECA9AD940C0E1B115332E91C9501F1', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/19DB71A0EBEF5BC923C609867C5632855CECA9AD940C0E1B115332E91C9501F1', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/6F3866516A68AE366C09E220202FC9F3089F0479C9CC9547D4BA1B848E1F6FD1', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6F3866516A68AE366C09E220202FC9F3089F0479C9CC9547D4BA1B848E1F6FD1', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/31AF732B994EEFC2769C749AABD10D6CE41A67C98D6AF0EE42F3EB9014AAB637', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/31AF732B994EEFC2769C749AABD10D6CE41A67C98D6AF0EE42F3EB9014AAB637', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/2FEA37EB5C44A11F9101805AF911FC3DFF5F98D1BC891938364C299CB88368F6', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2FEA37EB5C44A11F9101805AF911FC3DFF5F98D1BC891938364C299CB88368F6', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/569114212A3E99360439041F9C5F351D69D997D73BEBCC72CE025A2EBF12D252', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/569114212A3E99360439041F9C5F351D69D997D73BEBCC72CE025A2EBF12D252', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/6D3E5319A182C24AD22A5CCED97B040B29C8F6213262AF551E4AF66F2B93DF62', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6D3E5319A182C24AD22A5CCED97B040B29C8F6213262AF551E4AF66F2B93DF62', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/0F7930B63244CA4BCC01C08F85697131884A24CD87A8DD970DE968E4477035F8', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F7930B63244CA4BCC01C08F85697131884A24CD87A8DD970DE968E4477035F8', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/A6EF12C9F18944589034B1C20B8A3B09725811572641BA2FA2512F93BDE5F578', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A6EF12C9F18944589034B1C20B8A3B09725811572641BA2FA2512F93BDE5F578', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/06EDC5D447D6F4ED20BFFAC149018C94E1F044DF16E97DF02EFADE18EB48D271', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/06EDC5D447D6F4ED20BFFAC149018C94E1F044DF16E97DF02EFADE18EB48D271', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/87444F2028A35FA0B13ECB91B707DAD176F6EDB0A0A5B99882BC7546AF03EA2C', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/87444F2028A35FA0B13ECB91B707DAD176F6EDB0A0A5B99882BC7546AF03EA2C', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/F63C324E7A80BF26765906391FC40FCF41E99C349A9BF681441E99BDC8E7781E', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F63C324E7A80BF26765906391FC40FCF41E99C349A9BF681441E99BDC8E7781E', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/B7A31DABBE007A2888E68031221BD29466822F2ECB8F0A50AD505E909361FDA5', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B7A31DABBE007A2888E68031221BD29466822F2ECB8F0A50AD505E909361FDA5', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/B385B0D0D1808F88B25FA5387E6556F05BFCE19D43DD838715255EB0BB61E5F1', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B385B0D0D1808F88B25FA5387E6556F05BFCE19D43DD838715255EB0BB61E5F1', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/FDFB8E8B4C1B6C9074845AC142B8195507D6BCE98A6B04465C6E77354CC1AFBF', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FDFB8E8B4C1B6C9074845AC142B8195507D6BCE98A6B04465C6E77354CC1AFBF', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B76B340588564A49387A7B22A24CFFE3F873B61B461AD95A242E1D76138B6BBD', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B76B340588564A49387A7B22A24CFFE3F873B61B461AD95A242E1D76138B6BBD', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/C404E1F03C99A5D77FB35671416DC39C09B8EF6305B36F1BDE868150D21A9012', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C404E1F03C99A5D77FB35671416DC39C09B8EF6305B36F1BDE868150D21A9012', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/412DFF78C323ABC94A93DA4B7FBFE4AD923219F6EC5CD6953750678028A6BFD7', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/412DFF78C323ABC94A93DA4B7FBFE4AD923219F6EC5CD6953750678028A6BFD7', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/6FEA7853D1EB6D46467D8181C313AE816046104D8B9C532A1ED02E9FE647DE4E', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6FEA7853D1EB6D46467D8181C313AE816046104D8B9C532A1ED02E9FE647DE4E', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/9D4AA773925596140AEB0C83CDEBE97F02F0B1AA3083F581E3064DD0AC270452', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/9D4AA773925596140AEB0C83CDEBE97F02F0B1AA3083F581E3064DD0AC270452', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/2631E601C9A50387E3CEE7E240FB1707758D9D15F9C3DD488D3D0CB676122500', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2631E601C9A50387E3CEE7E240FB1707758D9D15F9C3DD488D3D0CB676122500', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/FBD3D5217A6A540F23529D709B232DA4AFCC0B6C2FD643CCF7F317148B86907F', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FBD3D5217A6A540F23529D709B232DA4AFCC0B6C2FD643CCF7F317148B86907F', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/1D688799DE22258802861260E642917D174F57F7A428FC0451609573BFC54741', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D688799DE22258802861260E642917D174F57F7A428FC0451609573BFC54741', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/94716987C75684E636CB143240F56F644AC607B330E9C5CA5CCDE5F8AA4C3F29', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/94716987C75684E636CB143240F56F644AC607B330E9C5CA5CCDE5F8AA4C3F29', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/0076FCDC521B8BC631C4C80F615883B85EE14F59B8905969D378125EE864F3DA', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0076FCDC521B8BC631C4C80F615883B85EE14F59B8905969D378125EE864F3DA', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/7C6A11BF1FE238DB3EBB78FEF70B1E08A2EECF961081454C3DDE070E5CDFB270', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7C6A11BF1FE238DB3EBB78FEF70B1E08A2EECF961081454C3DDE070E5CDFB270', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/A5941FFF3E8E99AF68A85ED62481E4D2F483C1F960D8941BDE491056AA3321F9', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A5941FFF3E8E99AF68A85ED62481E4D2F483C1F960D8941BDE491056AA3321F9', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/BB066336F021575DC26CA7815D3CA64C40E61E4A0D989059193209DE338BD912', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BB066336F021575DC26CA7815D3CA64C40E61E4A0D989059193209DE338BD912', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/FEC744AEB27C60DA8622AD400EFC2C1510C27A9382485274E9FE1979AAF6CED6', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FEC744AEB27C60DA8622AD400EFC2C1510C27A9382485274E9FE1979AAF6CED6', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/C999DE507B8409060A13AE7927DA3C999C54DF7938666EA962055E2B047A3F79', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C999DE507B8409060A13AE7927DA3C999C54DF7938666EA962055E2B047A3F79', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/812B399233FD9DE5CAC1CA0BD38A83B1616EF7D527DA8ED9D759C02CF67B0C3B', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/812B399233FD9DE5CAC1CA0BD38A83B1616EF7D527DA8ED9D759C02CF67B0C3B', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/4F738B156A91F692CDB34CE73FE65A3F2709ECEC718C766E2EF9AC32887171B0', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4F738B156A91F692CDB34CE73FE65A3F2709ECEC718C766E2EF9AC32887171B0', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/28C34C44CB0D0C51F983C26B005EBA1D043DC23469041168654A00F833E2A1BF', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/28C34C44CB0D0C51F983C26B005EBA1D043DC23469041168654A00F833E2A1BF', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/860056AA96EF303CD59A8F2A10CF7BBAEEA1809331DE4EEBF36949AA9606880E', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/860056AA96EF303CD59A8F2A10CF7BBAEEA1809331DE4EEBF36949AA9606880E', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/F8E5A8C2FE146E961EBB5F239C2F86E502BB863B2B23E0C25F483BF0AFC77A78', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F8E5A8C2FE146E961EBB5F239C2F86E502BB863B2B23E0C25F483BF0AFC77A78', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/00967EA9C1EAEB56EDFBCBD0D952B64141D783540465880B8CB0895FF7FFBE79', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/00967EA9C1EAEB56EDFBCBD0D952B64141D783540465880B8CB0895FF7FFBE79', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/E9DF230D891326F345BEC7D46BC8876713FCB72D57000A04F49B8BC8EDF401B8', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/E9DF230D891326F345BEC7D46BC8876713FCB72D57000A04F49B8BC8EDF401B8', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/D12BAD12BAF4DCFF936FDFAB3967A9B91CE37F3AF5E238B92D2F3726BC695D84', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D12BAD12BAF4DCFF936FDFAB3967A9B91CE37F3AF5E238B92D2F3726BC695D84', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/41C5F7D348716D4AC354DA088351354FD90070E75DFF5B5007708D5164325E40', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/41C5F7D348716D4AC354DA088351354FD90070E75DFF5B5007708D5164325E40', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/747D9DED1908CDFE8453A988AEC7BD8FDC5E577768D01A713702B7D34856BD98', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/747D9DED1908CDFE8453A988AEC7BD8FDC5E577768D01A713702B7D34856BD98', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/2309A8723CA3D4DEC75F4306FB9AEF9FDA6AC009676B9D0213965EEB3909355D', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2309A8723CA3D4DEC75F4306FB9AEF9FDA6AC009676B9D0213965EEB3909355D', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/D2826D0622755EADC205277312C207826B5F684EA6F71F232308ECDA01E9E629', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D2826D0622755EADC205277312C207826B5F684EA6F71F232308ECDA01E9E629', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/25679987938AA2B6170A5EE532DAB64393642C4159F153A336CF47DD6019BD2B', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/25679987938AA2B6170A5EE532DAB64393642C4159F153A336CF47DD6019BD2B', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/DCB277743356667EB38113950C0E54488A884D30146975C0FA48D101B38E9A0C', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DCB277743356667EB38113950C0E54488A884D30146975C0FA48D101B38E9A0C', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/E837AE487266E851BF5140D8C622E9AC52E733F75015A4FA2EE375A7B2238C77', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E837AE487266E851BF5140D8C622E9AC52E733F75015A4FA2EE375A7B2238C77', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/B1CF3E74BE95F65F183135915FFF944A04C1DF7C11D9607F365131BF9AF9012D', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B1CF3E74BE95F65F183135915FFF944A04C1DF7C11D9607F365131BF9AF9012D', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/316D1466DD592CB787116A1648C35EB49D98D2DFF0CB514CCC9D249A68F9A103', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/316D1466DD592CB787116A1648C35EB49D98D2DFF0CB514CCC9D249A68F9A103', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/FF6E5A9351A2689AB75381C30EA5765F1E04EC9353880797334AD3F56A259A12', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FF6E5A9351A2689AB75381C30EA5765F1E04EC9353880797334AD3F56A259A12', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6A4C01899FCE59E148AE27BEB48D8DF085EB5AE2EBD50C298E49B7FB8471A45C', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A4C01899FCE59E148AE27BEB48D8DF085EB5AE2EBD50C298E49B7FB8471A45C', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CFF2F8A06DF6C48A94EA54CC94408C285B7736C86BFB68200072BDCA2095E515', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CFF2F8A06DF6C48A94EA54CC94408C285B7736C86BFB68200072BDCA2095E515', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/C5F0637206A95921F7B2AE602F23B338A32466C473D4F0247F70A9343AAAC3E3', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C5F0637206A95921F7B2AE602F23B338A32466C473D4F0247F70A9343AAAC3E3', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/9A893BE907CE8697D59A1A0CEB50DAF09CBCD6424E5F16C448792BA887963E6A', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9A893BE907CE8697D59A1A0CEB50DAF09CBCD6424E5F16C448792BA887963E6A', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/A5519DF79C89B539A3C9721C7820BC964A38B24270A47D542A96966B53BD4F23', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A5519DF79C89B539A3C9721C7820BC964A38B24270A47D542A96966B53BD4F23', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/804B2C2A56DC8FB5812C6F77410C625D4DAEC31E16006DA06AD4CC47BC8506A2', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/804B2C2A56DC8FB5812C6F77410C625D4DAEC31E16006DA06AD4CC47BC8506A2', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/A2D6DCFFB09B03CC1D4B41FDDCE666902B1953E32CE21975B68D8675B0B1BAAC', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A2D6DCFFB09B03CC1D4B41FDDCE666902B1953E32CE21975B68D8675B0B1BAAC', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/3176F44BB57E34C0682FEE235A40BD6012BA3D34943B37CE128E1C290B97BB1E', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3176F44BB57E34C0682FEE235A40BD6012BA3D34943B37CE128E1C290B97BB1E', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/DDB9C3B73720E6DC4C93BCFB4643291EB25CA2E3C38F14DCCCEED8BE6813BF0F', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/DDB9C3B73720E6DC4C93BCFB4643291EB25CA2E3C38F14DCCCEED8BE6813BF0F', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/44EE7CDD013B39DC7E0E8D79FB8F206120C6193772501DB67A666232AADC0AE8', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/44EE7CDD013B39DC7E0E8D79FB8F206120C6193772501DB67A666232AADC0AE8', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/64A23431E8995AAEF79231D17F38925EAFEDD6D9D8E099A1F1D97BCC9337DDBE', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/64A23431E8995AAEF79231D17F38925EAFEDD6D9D8E099A1F1D97BCC9337DDBE', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/C9E04820D51AA06DA729583269FC1A37CF94FF15C05E2620F8DFB00D9F49FABA', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C9E04820D51AA06DA729583269FC1A37CF94FF15C05E2620F8DFB00D9F49FABA', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/9427EF9F49E9783D640755BC88B60A6ABDCF408EAE3F6FC63FE0B9F47252B869', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9427EF9F49E9783D640755BC88B60A6ABDCF408EAE3F6FC63FE0B9F47252B869', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/6D6BA300D877AC3AB8EC4F05A84DC0FE47D03E914490BBFBFB421D4E888082BC', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6D6BA300D877AC3AB8EC4F05A84DC0FE47D03E914490BBFBFB421D4E888082BC', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/BD1455D697208399029695BB3DA8E0FC7A92FEF2509A9448D2C7FB5BCDBAB4BB', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD1455D697208399029695BB3DA8E0FC7A92FEF2509A9448D2C7FB5BCDBAB4BB', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/3F82142264D4A69ABE53E33D66B5CD338E68B20A768A86184811EEDEC74A8746', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3F82142264D4A69ABE53E33D66B5CD338E68B20A768A86184811EEDEC74A8746', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/A23855FF7A656714F23ADADAF85568F383B179A3A8C63F26246D5241F99ABDEC', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A23855FF7A656714F23ADADAF85568F383B179A3A8C63F26246D5241F99ABDEC', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/52E4491551AD28A330C676A2E0B220064FADCE23D9905EEB96539B58448D6791', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/52E4491551AD28A330C676A2E0B220064FADCE23D9905EEB96539B58448D6791', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/9AB3622AE63CD344C0E4661C6805BA954D43FC764B9CE2A57787205515A3E662', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9AB3622AE63CD344C0E4661C6805BA954D43FC764B9CE2A57787205515A3E662', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/EFF2067E3131BDFAE1266E94C58315CFAEEC383A1496D196EF57357C27E6F0F2', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFF2067E3131BDFAE1266E94C58315CFAEEC383A1496D196EF57357C27E6F0F2', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/5A6ECC6BB51DF73A563068FD6F821B5EBBF415E6576947EDEC25BFE3A720529C', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5A6ECC6BB51DF73A563068FD6F821B5EBBF415E6576947EDEC25BFE3A720529C', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/A6D13575341A2F7A9CDB009E0756FC1DDED6A491C50D62946FEE10E4036478F8', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A6D13575341A2F7A9CDB009E0756FC1DDED6A491C50D62946FEE10E4036478F8', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/8B1DEA286693EC25043FD123B9BB5B4549E42BF3591A6A70C42B4AB78C92805F', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8B1DEA286693EC25043FD123B9BB5B4549E42BF3591A6A70C42B4AB78C92805F', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/876C3ECEB99CF762D95E3D80FFD292BD54627EE49B662F58C3C3154FC1F8F678', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/876C3ECEB99CF762D95E3D80FFD292BD54627EE49B662F58C3C3154FC1F8F678', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/ECE97C990E8C7396E0A2BAFF9676F090DBEA7008D8BC15A396CFB4A295210355', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECE97C990E8C7396E0A2BAFF9676F090DBEA7008D8BC15A396CFB4A295210355', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/3604A325BC494AF734B3BD1D4F0279F0477AC6B04F56F44D56D74FEC66EB30BF', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3604A325BC494AF734B3BD1D4F0279F0477AC6B04F56F44D56D74FEC66EB30BF', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/BCB31BED5181B44DA806546FCD523F4908EF44EC85E546550A4A79295F44BCF7', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BCB31BED5181B44DA806546FCD523F4908EF44EC85E546550A4A79295F44BCF7', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/88C5E95B55D1FF55B7EDD25568F676D7FD7277CF0B3CA3817AC697870377AFA0', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/88C5E95B55D1FF55B7EDD25568F676D7FD7277CF0B3CA3817AC697870377AFA0', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/F578817EC8B64B82E4AF314FD4D5D4EB16DD496A0706591F40C7925192E1B1B7', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F578817EC8B64B82E4AF314FD4D5D4EB16DD496A0706591F40C7925192E1B1B7', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/92F972D460F4FCC36801CA63AA3A7D48F880DFB5E17623A5E2F05FEF92FC5FEB', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92F972D460F4FCC36801CA63AA3A7D48F880DFB5E17623A5E2F05FEF92FC5FEB', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/E5FC8B84D67761D5C130BBA61DC580325E6374F85BA48E34BB9ECF4E42E0E791', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5FC8B84D67761D5C130BBA61DC580325E6374F85BA48E34BB9ECF4E42E0E791', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/5B1B132D609301E6A698C1BEF17961401A43B928B9C950DF0B1D620BB7D0B0A0', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5B1B132D609301E6A698C1BEF17961401A43B928B9C950DF0B1D620BB7D0B0A0', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/CEA9875B2D1DA95D8E390F864197A0A09DC6B85337C0D809C4BD6FCF6D5FD70D', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CEA9875B2D1DA95D8E390F864197A0A09DC6B85337C0D809C4BD6FCF6D5FD70D', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/272B31E29A026A6F8D0E7519E37E1734ED6550533CD917323C00C72935C1908E', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/272B31E29A026A6F8D0E7519E37E1734ED6550533CD917323C00C72935C1908E', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/9612FB5393B5AD0B7E8CB0562342756E3C2C40F5FBA9F63065154311F1A238C4', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/9612FB5393B5AD0B7E8CB0562342756E3C2C40F5FBA9F63065154311F1A238C4', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/6518E047CB80F5C00CF37C180E214A3809C7125DBFC0DB3E0CC74383168D0E9E', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6518E047CB80F5C00CF37C180E214A3809C7125DBFC0DB3E0CC74383168D0E9E', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/5749A9F7D7C49CD8A1E435F9FEBCB956CC64F8F7C1792671257FE29277D11EF4', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5749A9F7D7C49CD8A1E435F9FEBCB956CC64F8F7C1792671257FE29277D11EF4', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/DCF9DBD929B54F0CEA0632E963D32503E99EE55C58746D6F66F64C9E2A65DB0C', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DCF9DBD929B54F0CEA0632E963D32503E99EE55C58746D6F66F64C9E2A65DB0C', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/A14172CCA6695205839331F9580D695FA4A6ECA4295B32E8DFEF1FB231776DE2', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A14172CCA6695205839331F9580D695FA4A6ECA4295B32E8DFEF1FB231776DE2', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/2C050CF57DE908B3E90585A944F564DFD5E3AA6AA7668BA853CE00D527CDE1E6', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/1A7E4652098373D82C580983C5C469BF23AFF87974BAD0F55A891545BDC9BA24', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1A7E4652098373D82C580983C5C469BF23AFF87974BAD0F55A891545BDC9BA24', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/886F4337B5A20EFC6A06DDFE0537DD205DF1211BEC7E9FF66C430315FAF3DC59', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/886F4337B5A20EFC6A06DDFE0537DD205DF1211BEC7E9FF66C430315FAF3DC59', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/041DB8840810541854003F2E6660F5127300C9645C9093947A8C6F1B512E888E', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/041DB8840810541854003F2E6660F5127300C9645C9093947A8C6F1B512E888E', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/69709D2799631FA1BBD84D87F843CB1CDCA5054B4987CB42EC45063E08BAA4F7', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/69709D2799631FA1BBD84D87F843CB1CDCA5054B4987CB42EC45063E08BAA4F7', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/E08FF5E7033AA00EED53A6F1847CE83B2D54A0C2CFC15C251DA3A48174C5130B', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E08FF5E7033AA00EED53A6F1847CE83B2D54A0C2CFC15C251DA3A48174C5130B', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/F93DBA5690AF03F65BA8F188447E434067CF8D98322679BA00B423321B82EA0C', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F93DBA5690AF03F65BA8F188447E434067CF8D98322679BA00B423321B82EA0C', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/1EDB1586EA1202956879B1730C1460B804638A0DA9D6612AE3B7EA46740C4734', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1EDB1586EA1202956879B1730C1460B804638A0DA9D6612AE3B7EA46740C4734', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/37EB0BEEB1902310C0CDCA69E548CCD3CB8CF6EAB002B7D2F1A2647E16A63B51', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/9F9C7A8536694BA28EC379AF050DAB2D274A2548E054C8B2687E975E3536B8F5', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F9C7A8536694BA28EC379AF050DAB2D274A2548E054C8B2687E975E3536B8F5', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/9B8C5261D9B95F9497AF576892E2BC9C928FAB8FDD71A49DF2F1A80C678F8A14', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9B8C5261D9B95F9497AF576892E2BC9C928FAB8FDD71A49DF2F1A80C678F8A14', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/1FE1735CEEE53DD8DE93CC440F0E61349E6BCD092D3FB75C5E2A465FBD199F2F', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1FE1735CEEE53DD8DE93CC440F0E61349E6BCD092D3FB75C5E2A465FBD199F2F', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/594FC925741A45EC08F8413953C6B37AAAD0541C4262C941BD59A961CD764BE9', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/594FC925741A45EC08F8413953C6B37AAAD0541C4262C941BD59A961CD764BE9', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/E6F3965069660E05C717C80B1460030E59425267A2F38DC29E388DA3DE1D641A', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E6F3965069660E05C717C80B1460030E59425267A2F38DC29E388DA3DE1D641A', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/ECE701965165260FB73233AA21D81741455A95BD74D5910BEA2A5792691AF32A', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/ECE701965165260FB73233AA21D81741455A95BD74D5910BEA2A5792691AF32A', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/3FFA55D17F6B945B01A68786EDF87AE083C4509FAAE51A1CEE1FA16E45F107FE', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/3FFA55D17F6B945B01A68786EDF87AE083C4509FAAE51A1CEE1FA16E45F107FE', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/C9CF6E1969B29459234D0576C0FB324AA0C93E94A483E842A5E162502980D800', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/C9CF6E1969B29459234D0576C0FB324AA0C93E94A483E842A5E162502980D800', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/E9C87E649EF4D20635D302FB46B29AA9AA3AAD84CA4E422CD377E3E5151D0C1B', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E9C87E649EF4D20635D302FB46B29AA9AA3AAD84CA4E422CD377E3E5151D0C1B', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/60C601EB4C4C8949CB99930A4CAEA2FD1A10988B49168152A6E9DD0624674CE3', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/60C601EB4C4C8949CB99930A4CAEA2FD1A10988B49168152A6E9DD0624674CE3', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/8BA1E8794E29D3E17600395C1378EB20ADAE547A2440ACE900321102B3D800E3', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BA1E8794E29D3E17600395C1378EB20ADAE547A2440ACE900321102B3D800E3', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/B43A2BF87C09ACF4C90E533DA30598E69570D9F907C6BE26A44A261FAB6D1133', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B43A2BF87C09ACF4C90E533DA30598E69570D9F907C6BE26A44A261FAB6D1133', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/CC9501809531F9BCB844563C21CC434C8BB202B4F66F8F5371BF940AF098E207', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC9501809531F9BCB844563C21CC434C8BB202B4F66F8F5371BF940AF098E207', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/591EFBCEDAE6CE54652FD099434D57E054CF0302697DB44C75271E197B3DDCCB', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/591EFBCEDAE6CE54652FD099434D57E054CF0302697DB44C75271E197B3DDCCB', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/7D8E6D16E337AF14528AB7851098260844A2ADA4244F3D33F62333F785CCAFBF', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7D8E6D16E337AF14528AB7851098260844A2ADA4244F3D33F62333F785CCAFBF', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/92B5743727828B24A89DC904E6AC39FB15CA1B06745FF4518AE6EDFB09FBD22E', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/92B5743727828B24A89DC904E6AC39FB15CA1B06745FF4518AE6EDFB09FBD22E', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/B2F9EA058BAC5EF6ED17AC3A53CC2290ACE08F92984969F1B0747A5EFADB38BE', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B2F9EA058BAC5EF6ED17AC3A53CC2290ACE08F92984969F1B0747A5EFADB38BE', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/DB8638D6A96B822ED5D40661097DA414ABD12D66E3CEA2A5462E53A467F602D4', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DB8638D6A96B822ED5D40661097DA414ABD12D66E3CEA2A5462E53A467F602D4', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/CC0A89AB09C0A6CF196B761A0861C33DE19A0C42D7D5B1548C2D1C6A16640214', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/CC0A89AB09C0A6CF196B761A0861C33DE19A0C42D7D5B1548C2D1C6A16640214', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/A8269794877C5F866E4C0C21C2CDFDA312030635ED84D7B340DFDCABC185D573', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A8269794877C5F866E4C0C21C2CDFDA312030635ED84D7B340DFDCABC185D573', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/784C0539D3737EF2D9E8EE55A03E900A09B908224045A25091BB6BA1B8F56012', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/784C0539D3737EF2D9E8EE55A03E900A09B908224045A25091BB6BA1B8F56012', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/9AF56FE943FDC840AB3076D5D5FDCEAF0351005B5BE897F1429E8F431C0B9E58', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9AF56FE943FDC840AB3076D5D5FDCEAF0351005B5BE897F1429E8F431C0B9E58', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/F4A39E4FA3E2E84BEC784F2DBAE0F733AACC4E23E854A799D46AB5083E0BF510', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/F4A39E4FA3E2E84BEC784F2DBAE0F733AACC4E23E854A799D46AB5083E0BF510', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/A41FCB5031B214B90FDE14EF2C4C84792F42BD61AEEAFB6A5A94CF032FFC0218', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A41FCB5031B214B90FDE14EF2C4C84792F42BD61AEEAFB6A5A94CF032FFC0218', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/032AF6BE092C7F5EBC5448148513E227CC9B8FBA0C531CEE2D216361D7D9F9B2', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/032AF6BE092C7F5EBC5448148513E227CC9B8FBA0C531CEE2D216361D7D9F9B2', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/256CAAD2DB12D1F6143468A25958BC1BA2A2202BBF4956B84E46662CFCC0818D', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/256CAAD2DB12D1F6143468A25958BC1BA2A2202BBF4956B84E46662CFCC0818D', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/038DC9ACD88B782F84F2A1C65005FD1C379CA166F458DDC9614337642FC182B0', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/038DC9ACD88B782F84F2A1C65005FD1C379CA166F458DDC9614337642FC182B0', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/0E8595C44285144325A131C9A451E63B8E7467914DA5BC194F191151ED27DF30', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E8595C44285144325A131C9A451E63B8E7467914DA5BC194F191151ED27DF30', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/19A959F35B4ABA76C9FC9C8585FD2D098FB1C366D14D07FBE4D1F9F4E3FE671C', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/19A959F35B4ABA76C9FC9C8585FD2D098FB1C366D14D07FBE4D1F9F4E3FE671C', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/F9DCE7AF1ED9B74C7F4555F0D5B45AD0E16F2B186803BCEDE858EB0904315F23', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F9DCE7AF1ED9B74C7F4555F0D5B45AD0E16F2B186803BCEDE858EB0904315F23', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/1D9FC9833A6D963E520FE8F20893092CA1D52338E345FBF21C442B44F0760E0A', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D9FC9833A6D963E520FE8F20893092CA1D52338E345FBF21C442B44F0760E0A', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/E453AA75C99E0AF2C9AEBEF6630979074F672BFC4FD3A08D213971B603556B07', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E453AA75C99E0AF2C9AEBEF6630979074F672BFC4FD3A08D213971B603556B07', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/E69AF2A9C68A5F2E8C93E63E666F442D63FF653FB2293FD358A6367BB6F4E113', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E69AF2A9C68A5F2E8C93E63E666F442D63FF653FB2293FD358A6367BB6F4E113', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/2E4E61E6E600E2E3ABA83A65179D9F36CFA98AD6EDDD52A9E45A4D2C842E4016', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/2E4E61E6E600E2E3ABA83A65179D9F36CFA98AD6EDDD52A9E45A4D2C842E4016', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/A38747EE1A3E2A3DEF42FDA5E177C6B59FC72EB00DE705956EFBAFA41BBE106D', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/A38747EE1A3E2A3DEF42FDA5E177C6B59FC72EB00DE705956EFBAFA41BBE106D', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/A88CCF3AA8BD9FC1D25DD450E3673FEDE706019EF1252B13431E919F0A4BF87F', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A88CCF3AA8BD9FC1D25DD450E3673FEDE706019EF1252B13431E919F0A4BF87F', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/4393A3D64A8A0F8C6260FAFBA8D21BDEA26150CFA1DBF4E2B58BD7D573915BFD', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4393A3D64A8A0F8C6260FAFBA8D21BDEA26150CFA1DBF4E2B58BD7D573915BFD', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/1C60EB379975CCFA464272B06101444603803AD0EB8F41B577FC69D1CA549E24', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1C60EB379975CCFA464272B06101444603803AD0EB8F41B577FC69D1CA549E24', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/5E24E7733AAA70846D244378B7EDFCEEF25A4A256DC9122FCEED1277F933B285', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5E24E7733AAA70846D244378B7EDFCEEF25A4A256DC9122FCEED1277F933B285', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/483F2CFC449EEFB3B17BF2252EE210F8ACFDB414343482C7DC64B89615A9E5EB', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/483F2CFC449EEFB3B17BF2252EE210F8ACFDB414343482C7DC64B89615A9E5EB', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/BD453609A2A1B978FF5C7135375B6F500D74FEB6F4DD0DA6C0AC77038AB28B48', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD453609A2A1B978FF5C7135375B6F500D74FEB6F4DD0DA6C0AC77038AB28B48', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/DC5A969358D9155B238B0822BE34CC216FE6B94D39975216DE5501365DFD0C84', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DC5A969358D9155B238B0822BE34CC216FE6B94D39975216DE5501365DFD0C84', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/CCD578A6F703C6230B7870C9D1DC77E30005FA8B811765901233983830810DE6', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CCD578A6F703C6230B7870C9D1DC77E30005FA8B811765901233983830810DE6', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/2A13F9319BACC1AA23A5B8B481542A5BA5FD0B63E099A6F5CB07CE719A2F347A', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2A13F9319BACC1AA23A5B8B481542A5BA5FD0B63E099A6F5CB07CE719A2F347A', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/F92661AA1B265A25242F148ADAB6FC709D648679EE71B57D3E511E91AF5B4227', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/F92661AA1B265A25242F148ADAB6FC709D648679EE71B57D3E511E91AF5B4227', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/C6A97D88DC642F9B8420D09BB333C60F89F672827D9795ED84003A2774DA1601', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C6A97D88DC642F9B8420D09BB333C60F89F672827D9795ED84003A2774DA1601', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/6906B8D2981F8CA4FB77E73658967BFC8185BEAAFCE966B81A07AA4EA813C3BE', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/6906B8D2981F8CA4FB77E73658967BFC8185BEAAFCE966B81A07AA4EA813C3BE', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/3758854AD86DBDA3D046E99422814DC7CF4A6B1165871BE76DDBD2CEA02488A5', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3758854AD86DBDA3D046E99422814DC7CF4A6B1165871BE76DDBD2CEA02488A5', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/FDAAA92AFC96DE26F127E739739BAF7DD8D4814D3CB36D7C8F7D82BB861BE195', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FDAAA92AFC96DE26F127E739739BAF7DD8D4814D3CB36D7C8F7D82BB861BE195', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/329F0F52D7E97585CD62A5E30FE4DE3F4E3759F010D01DAD7F05DBE9F1960F43', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/329F0F52D7E97585CD62A5E30FE4DE3F4E3759F010D01DAD7F05DBE9F1960F43', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/39CFEA876435224EDD79A0D392D94C0A549B0072FDAB518F6812D8531D98F983', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/39CFEA876435224EDD79A0D392D94C0A549B0072FDAB518F6812D8531D98F983', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/2B80C6D67DBD4A2BCB068AEA6D920A689F51BFF1A5DF9AA2CB6B730B2A094083', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/2B80C6D67DBD4A2BCB068AEA6D920A689F51BFF1A5DF9AA2CB6B730B2A094083', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/20C53D3435EF93AD4F4579E1B0659AB25134C93B4B16DCDFD68040A667A4427D', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/20C53D3435EF93AD4F4579E1B0659AB25134C93B4B16DCDFD68040A667A4427D', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/B80DCD60608D8318E5B3372FFA75A2EE68194ED1CC71919DF4A8F3FBD6BF4615', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/B80DCD60608D8318E5B3372FFA75A2EE68194ED1CC71919DF4A8F3FBD6BF4615', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/3DA672931FDD647EF53A1C8935BCABEEE4941729E27ABC13BA15EDEC3F9902C2', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/3DA672931FDD647EF53A1C8935BCABEEE4941729E27ABC13BA15EDEC3F9902C2', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/62BC5817936C9C5676E26D396F6509F0CA700FF384B02DB0646998F6CD19A933', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/62BC5817936C9C5676E26D396F6509F0CA700FF384B02DB0646998F6CD19A933', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/CCFC814AD80CB0E76BE89991E8685D8F0958A307B1A8AC2B59E40F0C80624C3F', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/CCFC814AD80CB0E76BE89991E8685D8F0958A307B1A8AC2B59E40F0C80624C3F', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/040CD9CDF43B6CD2DE638F3D605C51F0C06C3DED062E5A310C5C66C612FB7560', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/040CD9CDF43B6CD2DE638F3D605C51F0C06C3DED062E5A310C5C66C612FB7560', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/50EC89487E3C23FEAEE37BDFA99C33CB30E16FED6E8C8179498F017D210F640C', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/50EC89487E3C23FEAEE37BDFA99C33CB30E16FED6E8C8179498F017D210F640C', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/9F05D96E65285EAE5F596D94D6A6C80A78B5D189027BD024D6C2BF6E2475A8F0', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/9F05D96E65285EAE5F596D94D6A6C80A78B5D189027BD024D6C2BF6E2475A8F0', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/EBF2E86CF9F2344EA3EAFE6A97E46CC935B48EFEE312D58A120337B2DDC84E56', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EBF2E86CF9F2344EA3EAFE6A97E46CC935B48EFEE312D58A120337B2DDC84E56', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/6CA829DB7514F2F09CCD1C0C8DC5E159E467620C381CC5E5EA06F3621FCCCFED', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6CA829DB7514F2F09CCD1C0C8DC5E159E467620C381CC5E5EA06F3621FCCCFED', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/B42A2A6F5A9713B6D52AAF07E44F97D5DA16500F962FF2B1EDC2292BF89DDB9B', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B42A2A6F5A9713B6D52AAF07E44F97D5DA16500F962FF2B1EDC2292BF89DDB9B', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/F428C5D24BEF8CA22EE74810A583422C12F02865ADAC185678C73015A88227B3', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/F428C5D24BEF8CA22EE74810A583422C12F02865ADAC185678C73015A88227B3', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/F495EF1E6FF8376DC6EDEE1D1C6A3F3204794AA1BEA99A1D9E0A9B8F730AD34A', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F495EF1E6FF8376DC6EDEE1D1C6A3F3204794AA1BEA99A1D9E0A9B8F730AD34A', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/7F323D36FBE3649FC0D392847A3017B2CE3261A1DC55C635DE12399DE514E669', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F323D36FBE3649FC0D392847A3017B2CE3261A1DC55C635DE12399DE514E669', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/E5B38DD11D4693B5BF3B2DB775E222B05B73B567CE0400E0D334F5BD4091097A', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5B38DD11D4693B5BF3B2DB775E222B05B73B567CE0400E0D334F5BD4091097A', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/A21888C2406185A296DC72BC15F0BBB57D010D979A38CB6417A6E36F6AF8C744', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A21888C2406185A296DC72BC15F0BBB57D010D979A38CB6417A6E36F6AF8C744', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/6489DAAD6DAF49BFDEE385F8BBACED1CDF04ECA51528EDB9A586D6CA44CA1232', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6489DAAD6DAF49BFDEE385F8BBACED1CDF04ECA51528EDB9A586D6CA44CA1232', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/09025D4A54A072E7B2BEE40DF8B91AEF02DC0CB49A9D6310970BE300E2599F96', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/09025D4A54A072E7B2BEE40DF8B91AEF02DC0CB49A9D6310970BE300E2599F96', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/8004DD727C91AC4D246E600C04BD619A4457CB7FA911F41BCD9E0C8BAA69044D', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8004DD727C91AC4D246E600C04BD619A4457CB7FA911F41BCD9E0C8BAA69044D', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/F8D95F29C097E9993D57A74A9800ECD4B3EB151B2F023026D9647DDB3EF5C5B4', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F8D95F29C097E9993D57A74A9800ECD4B3EB151B2F023026D9647DDB3EF5C5B4', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/4612D67ABF5CDCD337311C9E4E70D5787D340529B93AD9ECD76467891C146B56', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4612D67ABF5CDCD337311C9E4E70D5787D340529B93AD9ECD76467891C146B56', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/CF5C53CF115B3990AC384D817E863CC47FE1D7A55449CE41EF23D8594415298D', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CF5C53CF115B3990AC384D817E863CC47FE1D7A55449CE41EF23D8594415298D', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/870DBE835DD0688C7E5A9F348A1AF47D3B35A2516C2C0E9CD46B1E710A9848A6', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/870DBE835DD0688C7E5A9F348A1AF47D3B35A2516C2C0E9CD46B1E710A9848A6', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/E181D3E1A9036189DA2CC1F5D75CB1197069CF20E01FEEBBC19FABEB34FAECDE', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E181D3E1A9036189DA2CC1F5D75CB1197069CF20E01FEEBBC19FABEB34FAECDE', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/F15603B2DC8C5A1BA4505C31FE000B2C109E396CC3721A0182C18966E157F494', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F15603B2DC8C5A1BA4505C31FE000B2C109E396CC3721A0182C18966E157F494', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/81422EAADDF33DA37A7FACAFA5EFA354F1B3BC94F92AB5E67FB104AA64EC39ED', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/81422EAADDF33DA37A7FACAFA5EFA354F1B3BC94F92AB5E67FB104AA64EC39ED', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/EA62784B1F801D2C82AD27A1FA2DD2E2449ABCA9DD39A68C99A9BF057C725BD7', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EA62784B1F801D2C82AD27A1FA2DD2E2449ABCA9DD39A68C99A9BF057C725BD7', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/E5A4A837E98EAF9272701F8B2CDAC46B48BA0B72018B3C6D3298A467D4AAE876', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5A4A837E98EAF9272701F8B2CDAC46B48BA0B72018B3C6D3298A467D4AAE876', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BEE9A8F835D60717548FFE9AC9E90F18AB8096574EB1211F88074CB3511B7860', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/BEE9A8F835D60717548FFE9AC9E90F18AB8096574EB1211F88074CB3511B7860', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/87DFB27F9AD10381DE2B86346F60C26271EA5A09DA317EDDF405669F49D5B1AD', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/87DFB27F9AD10381DE2B86346F60C26271EA5A09DA317EDDF405669F49D5B1AD', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/FC6AE7F961195E7DBEAECC503D988F2114EFE53B3DE53A870E08B3A724E504EC', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FC6AE7F961195E7DBEAECC503D988F2114EFE53B3DE53A870E08B3A724E504EC', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/061226CF8A346CB5B5F0AFA10BEE31D1AACC48723E4E4781C5D7606BE9D8C21A', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/061226CF8A346CB5B5F0AFA10BEE31D1AACC48723E4E4781C5D7606BE9D8C21A', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/EF40E3F76FBD1F60543F71CC8F56F3276C6AB765A090BF048C4B4D6A265525F4', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EF40E3F76FBD1F60543F71CC8F56F3276C6AB765A090BF048C4B4D6A265525F4', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/9ECDBC49140328481703E1858385C2C325FA0911B7DD7A7E1E61D2D45730C6BE', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9ECDBC49140328481703E1858385C2C325FA0911B7DD7A7E1E61D2D45730C6BE', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/937324F985D229492B79CB312BDAA45A40C6DBBE12E8DAD86A29BBF857043F9C', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/937324F985D229492B79CB312BDAA45A40C6DBBE12E8DAD86A29BBF857043F9C', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/1DD0FA29C8AC3330C3DDA00671E3DEB1CA8BCB4F9F4D5E57539C0058B1D7C0CF', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DD0FA29C8AC3330C3DDA00671E3DEB1CA8BCB4F9F4D5E57539C0058B1D7C0CF', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/0DD484DA512CA23F34A55A6E84EDB24B7E2BDE72FC306C88DB7DD4AECA5832B1', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0DD484DA512CA23F34A55A6E84EDB24B7E2BDE72FC306C88DB7DD4AECA5832B1', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/CCFAB647568BC6F3F1EC2D36ED9849370EDAC7D14F09A881BCD5238E5D0D260B', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CCFAB647568BC6F3F1EC2D36ED9849370EDAC7D14F09A881BCD5238E5D0D260B', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/A63A8005315073CF81CE1C83D8D401BA3C7CA71D1A4310CF3619217A551CA25B', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/A63A8005315073CF81CE1C83D8D401BA3C7CA71D1A4310CF3619217A551CA25B', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D548681BAC4DB2735D6F17E191FBB1DF8AF2A1ACA481D37CCB7E385C45351DE0', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D548681BAC4DB2735D6F17E191FBB1DF8AF2A1ACA481D37CCB7E385C45351DE0', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/C87A988C60DE234F90AC945ED00B894893C9CD60CEB221E7C76CE61B86CB14DB', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/C87A988C60DE234F90AC945ED00B894893C9CD60CEB221E7C76CE61B86CB14DB', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/9F43B05C2700AD85E2233F3FEFAA3262AA70FF1F23DC09B01FB188DB0A64A1FA', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F43B05C2700AD85E2233F3FEFAA3262AA70FF1F23DC09B01FB188DB0A64A1FA', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/3D62649CE712B3BD85EE718F427A4D84024F6F45B2252FDEB598F7B9F7D32B6A', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/3D62649CE712B3BD85EE718F427A4D84024F6F45B2252FDEB598F7B9F7D32B6A', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/27A5DE18D796A595123D97078F9AB9EAEFC23540724384F219EACED2BD5511F5', + exponent: 0, + aliases: ['uscrt'] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + base: 'ibc/27A5DE18D796A595123D97078F9AB9EAEFC23540724384F219EACED2BD5511F5', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + coingecko_id: 'secret', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-130', + base_denom: 'uscrt', + chain_name: 'secretnetwork' + }, + chain: { + channel_id: 'channel-35' + } + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/FF6C2E86490C1C4FBBD24F55032831D2415B9D7882F85C3CC9C2401D79362BEA', + exponent: 0, + aliases: ['ustrd'] + }, + { + denom: 'strd', + exponent: 6 + } + ], + base: 'ibc/FF6C2E86490C1C4FBBD24F55032831D2415B9D7882F85C3CC9C2401D79362BEA', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + coingecko_id: 'stride', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'ustrd', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/054A44EC8D9B68B9A6F0D5708375E00A5569A28F21E0064FF12CADC3FEF1D04F', + exponent: 0, + aliases: ['stuatom'] + }, + { + denom: 'statom', + exponent: 6 + } + ], + base: 'ibc/054A44EC8D9B68B9A6F0D5708375E00A5569A28F21E0064FF12CADC3FEF1D04F', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stuatom', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + coingecko_id: 'stride-staked-atom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/1B216B3FC63B5A9A90A3C44BBBEE4C1AADA43C9DA020025537BE2677E6E00C55', + exponent: 0, + aliases: ['stustars'] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + base: 'ibc/1B216B3FC63B5A9A90A3C44BBBEE4C1AADA43C9DA020025537BE2677E6E00C55', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stustars', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + coingecko_id: 'stride-staked-stars', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/4263C1D1EEEA066572F679EF212BDD522ADF0E57C86819AF260C8BC82BD87602', + exponent: 0, + aliases: ['stuosmo'] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + base: 'ibc/4263C1D1EEEA066572F679EF212BDD522ADF0E57C86819AF260C8BC82BD87602', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stuosmo', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + coingecko_id: 'stride-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C4385BAF25938E02B0EA90D512CE43BFACA892F7FAD81D63CC82BD8EBFA21857', + exponent: 0, + aliases: ['stujuno'] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + base: 'ibc/C4385BAF25938E02B0EA90D512CE43BFACA892F7FAD81D63CC82BD8EBFA21857', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stujuno', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + coingecko_id: 'stride-staked-juno', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/0E42296D09755A081C28C04A4409998EB4285C6C8BF2A24D50DF266E62A601DD', + exponent: 0, + aliases: ['stuluna'] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + base: 'ibc/0E42296D09755A081C28C04A4409998EB4285C6C8BF2A24D50DF266E62A601DD', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stuluna', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + coingecko_id: 'stride-staked-luna', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C5E245652F3A58860617FD58912B2321345167399B652821F0F0562707A163F1', + exponent: 0, + aliases: ['stinj'] + }, + { + denom: 'stINJ', + exponent: 18 + } + ], + base: 'ibc/C5E245652F3A58860617FD58912B2321345167399B652821F0F0562707A163F1', + name: 'Stride Staked INJ', + display: 'stINJ', + symbol: 'stINJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stinj', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/04CDA5EBB8A7E94BB60879B7F43EF0EDD2604990D8AB5BA18ADCB173F66FF874', + exponent: 0, + aliases: ['staevmos'] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + base: 'ibc/04CDA5EBB8A7E94BB60879B7F43EF0EDD2604990D8AB5BA18ADCB173F66FF874', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'staevmos', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + coingecko_id: 'stride-staked-evmos', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/C6BE35C03177D2959156FD22A76DE8006F4F7DE9E7B90CCA937C51872D862D41', + exponent: 0, + aliases: ['stadydx'] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + base: 'ibc/C6BE35C03177D2959156FD22A76DE8006F4F7DE9E7B90CCA937C51872D862D41', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stadydx', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/F46BA5EDCA6DAA5F7EFD3838430E03647CDC786BB1B89BC9FDD1CBE16B099645', + exponent: 0, + aliases: ['stutia'] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + base: 'ibc/F46BA5EDCA6DAA5F7EFD3838430E03647CDC786BB1B89BC9FDD1CBE16B099645', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stutia', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/92CE5F0DE7FAF6B1CF48C92EDD4878BF3F7099FEAA0ACCE9BB4FB2F7523D209E', + exponent: 0, + aliases: ['stuumee'] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + base: 'ibc/92CE5F0DE7FAF6B1CF48C92EDD4878BF3F7099FEAA0ACCE9BB4FB2F7523D209E', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stuumee', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + coingecko_id: 'stride-staked-umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/48F9132D7497A534E15ACC9CDB8FD36EE93D397EFC5B2E22866287893FC8D360', + exponent: 0, + aliases: ['stucmdx'] + }, + { + denom: 'stcmdx', + exponent: 6 + } + ], + base: 'ibc/48F9132D7497A534E15ACC9CDB8FD36EE93D397EFC5B2E22866287893FC8D360', + name: 'Stride Staked CMDX', + display: 'stcmdx', + symbol: 'stCMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stucmdx', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9BCF0F77276359B4AC0328701DFE4F9BC3BA8829E0A853CFF69D8998A591BEEC', + exponent: 0, + aliases: ['stusomm'] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + base: 'ibc/9BCF0F77276359B4AC0328701DFE4F9BC3BA8829E0A853CFF69D8998A591BEEC', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stusomm', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + coingecko_id: 'stride-staked-sommelier', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/gravitybridge.ts b/packages/assets/src/mainnet/gravitybridge.ts index 24fe5a375..4d9e591dd 100644 --- a/packages/assets/src/mainnet/gravitybridge.ts +++ b/packages/assets/src/mainnet/gravitybridge.ts @@ -2241,12 +2241,25 @@ const assets: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + theme: { + dark_mode: false, + circle: true + } + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + theme: { + dark_mode: true, + circle: true + } } ], traces: [ diff --git a/packages/assets/src/mainnet/humans.ts b/packages/assets/src/mainnet/humans.ts new file mode 100644 index 000000000..753cbf4c7 --- /dev/null +++ b/packages/assets/src/mainnet/humans.ts @@ -0,0 +1,13603 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'humans', + assets: [ + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/05AC4BBA78C5951339A47DD1BC1E7FC922A9311DF81C85745B1C162F516FF2F1', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/05AC4BBA78C5951339A47DD1BC1E7FC922A9311DF81C85745B1C162F516FF2F1', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B1468D7420773B5D59561CC0E91D6A5F75415E216DCF2966D657E23B97322B36', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/B1468D7420773B5D59561CC0E91D6A5F75415E216DCF2966D657E23B97322B36', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/A01367FF44D9DE359A984FC14EC5227AA96ED08B8B4B31B539BB63B9B9305F80', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A01367FF44D9DE359A984FC14EC5227AA96ED08B8B4B31B539BB63B9B9305F80', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/D14BB8072492C2CEB48469F2BBE1EBC5FEE176C0EB92A139570581A1C6B8BF33', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D14BB8072492C2CEB48469F2BBE1EBC5FEE176C0EB92A139570581A1C6B8BF33', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/A1DDBB67F675F9495404AF1C94FC07CB37B6679349705E84931235960D679213', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/A1DDBB67F675F9495404AF1C94FC07CB37B6679349705E84931235960D679213', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/2C55EC67CAEEE90420F20FB3D841E2BAC43BA3C8DAC37DDFB691FE3D74A63955', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2C55EC67CAEEE90420F20FB3D841E2BAC43BA3C8DAC37DDFB691FE3D74A63955', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/87FF70786D0A5D507968E8C7707D8EE03AEE765D740B35D1DEE6D7C94833161D', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/87FF70786D0A5D507968E8C7707D8EE03AEE765D740B35D1DEE6D7C94833161D', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/F92E2942BF3C5E2253C9CD0DCCD5B5CF60A9914B15DD19C5DCA784BB14CA72BF', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F92E2942BF3C5E2253C9CD0DCCD5B5CF60A9914B15DD19C5DCA784BB14CA72BF', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/20D06D04E1BC1FAC482FECC06C2E2879A596904D64D8BA3285B4A3789DEAF910', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/20D06D04E1BC1FAC482FECC06C2E2879A596904D64D8BA3285B4A3789DEAF910', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/656B7500701F726A0A1E0EC55D0B478DA5FB4CC722E666D73DEEAA1DA220C35E', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/656B7500701F726A0A1E0EC55D0B478DA5FB4CC722E666D73DEEAA1DA220C35E', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/3F44901BDA97E89EF3333C57586D1AAA6369614A42B3F49A2A5F5D188F5EFE82', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3F44901BDA97E89EF3333C57586D1AAA6369614A42B3F49A2A5F5D188F5EFE82', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/D4F80BD04AA40697A2CD3296991D91973A799AE3D1223DFE8471B5A91D9B23C7', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D4F80BD04AA40697A2CD3296991D91973A799AE3D1223DFE8471B5A91D9B23C7', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/38F8ED525A62E418FCB005FF377076B180E2DF6F24F9006414B9FC9D05181F9E', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/38F8ED525A62E418FCB005FF377076B180E2DF6F24F9006414B9FC9D05181F9E', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/88C2207A43349ECA6B6F73C15226BF4C0EE0C9A01E1D7F9FE36770BD31206DFC', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/88C2207A43349ECA6B6F73C15226BF4C0EE0C9A01E1D7F9FE36770BD31206DFC', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/76D3A2C76D66F98B55D11BFFB1063A1CE469B8DAC7EEB26CF55DE299ADE48577', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76D3A2C76D66F98B55D11BFFB1063A1CE469B8DAC7EEB26CF55DE299ADE48577', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/EAA7001D12EFC59A0334A34944B944D1DBA043A29740732A63E27E7C0EE4B948', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/EAA7001D12EFC59A0334A34944B944D1DBA043A29740732A63E27E7C0EE4B948', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/497C48AD6DF37E6432D326726886A314FEBB16224DB115E6CA96E93413A0569C', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/497C48AD6DF37E6432D326726886A314FEBB16224DB115E6CA96E93413A0569C', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/C2397808EB5E356684888EAE1FEC8A2742C41F9EEB6BDB8C52EBFF50C05C6CB6', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2397808EB5E356684888EAE1FEC8A2742C41F9EEB6BDB8C52EBFF50C05C6CB6', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/5AAA9E11D2DE3F25EB62B5E8592F4EAA35F0BC379A30ADBC13499E95F5422406', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5AAA9E11D2DE3F25EB62B5E8592F4EAA35F0BC379A30ADBC13499E95F5422406', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/D36554439ECC962C7BE25D159F5E2FCAE3B5852AD9D16666CCD65019090605BA', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/D36554439ECC962C7BE25D159F5E2FCAE3B5852AD9D16666CCD65019090605BA', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/38E5FB5AE865F3C34A89A3384A184ECD6A3D50FE2EB863BC9E290DB6DD9FCBCE', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38E5FB5AE865F3C34A89A3384A184ECD6A3D50FE2EB863BC9E290DB6DD9FCBCE', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/732EF98308C9ED6A74AC751094B301E6C58C903AAD51F88340E4610F1A741AEA', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/732EF98308C9ED6A74AC751094B301E6C58C903AAD51F88340E4610F1A741AEA', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/B06E0B1F35CCB68457A50D1A36E74E813595B2FFD515132D4F4DC2B8AA87A250', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B06E0B1F35CCB68457A50D1A36E74E813595B2FFD515132D4F4DC2B8AA87A250', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/C56631F628CC2EDEBDE141D7450105B52889E6DD0D76176035928A09B25A84BD', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C56631F628CC2EDEBDE141D7450105B52889E6DD0D76176035928A09B25A84BD', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/CA6B469517203E6F3365DDEC3A8FBD337824EB539F7002DA88C5F4A1376D250F', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CA6B469517203E6F3365DDEC3A8FBD337824EB539F7002DA88C5F4A1376D250F', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/2F285F55EA236B766324E0BD7711107A4737A9374DF6B847A8807C5A8655C275', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2F285F55EA236B766324E0BD7711107A4737A9374DF6B847A8807C5A8655C275', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/EB52B2FBC3EE3E1482BE3B6E5C96B6C33FB7C3C8BA912DCB9E210B9038ED115C', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB52B2FBC3EE3E1482BE3B6E5C96B6C33FB7C3C8BA912DCB9E210B9038ED115C', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/207D0A0959106AE3AFCD9B6864486F6FBD1C5E8C7FEA4ED6A9B06D697E957FE8', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/207D0A0959106AE3AFCD9B6864486F6FBD1C5E8C7FEA4ED6A9B06D697E957FE8', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/7F2D2672E321683D69B870EB7FDABE8B53FE1BAF3A1E6D2B9CC82B19DFF25C93', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F2D2672E321683D69B870EB7FDABE8B53FE1BAF3A1E6D2B9CC82B19DFF25C93', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/BFF3F8917654C7FEDD463051CD5ED530DC6F35CD05A52E25F32B11E3D1CF5F92', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BFF3F8917654C7FEDD463051CD5ED530DC6F35CD05A52E25F32B11E3D1CF5F92', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/E5D72882B400AD2682BE2365AD133297EAA28928B2248333E45725984FCCCF99', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5D72882B400AD2682BE2365AD133297EAA28928B2248333E45725984FCCCF99', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/F2C5418CCCF5B20806196E7C01B8D35EA9CC4E73634E1787FD52A4B538E31DBC', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/F2C5418CCCF5B20806196E7C01B8D35EA9CC4E73634E1787FD52A4B538E31DBC', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/FFBFE6B5965CCA39EE0E8E1DE58399C0CF63463AACBA12382378B158ACB1BE88', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FFBFE6B5965CCA39EE0E8E1DE58399C0CF63463AACBA12382378B158ACB1BE88', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/2F839730B7CDF8FE162E0438AF1CAEBD592A76D2529CDD4FB9336ABBCDD8B963', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2F839730B7CDF8FE162E0438AF1CAEBD592A76D2529CDD4FB9336ABBCDD8B963', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/00A58CB410F852D6B765A24407E13AEB6201445D6B438286781D9B3D41CBFBE4', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/00A58CB410F852D6B765A24407E13AEB6201445D6B438286781D9B3D41CBFBE4', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/EFCDD4C4BE40A6162F97DBFE7D834294061E7D8CC62AFB44A96BDD4C2978C366', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFCDD4C4BE40A6162F97DBFE7D834294061E7D8CC62AFB44A96BDD4C2978C366', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/09ECEA8A4051DE86C8C99626B5FCD260357D84F6EBDC8F5DB69424CEDAEFC911', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09ECEA8A4051DE86C8C99626B5FCD260357D84F6EBDC8F5DB69424CEDAEFC911', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/725CC047EADFAEB5379F7A8C827450A67149D3F40B5A686DD78AF25B1DE27563', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/725CC047EADFAEB5379F7A8C827450A67149D3F40B5A686DD78AF25B1DE27563', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/4C061A2F90A88AA7423D044393429003672E91E88A1BBAA5AC9667FCD2AB31EB', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4C061A2F90A88AA7423D044393429003672E91E88A1BBAA5AC9667FCD2AB31EB', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/E2ED6913E68A2BDC631D189DD29BC664D9751EB7C4DAAB06BC6514472963E669', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/E2ED6913E68A2BDC631D189DD29BC664D9751EB7C4DAAB06BC6514472963E669', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/9F97F311AE4AD18236452E8F670F871C67C07AA9D358BD502E36774944149644', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F97F311AE4AD18236452E8F670F871C67C07AA9D358BD502E36774944149644', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/E8B73E60AACA894E6E33C9AB6ECE81DD38F276856412BD6B78E8E88CD8B21BC6', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E8B73E60AACA894E6E33C9AB6ECE81DD38F276856412BD6B78E8E88CD8B21BC6', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/4D65EEBFCBB59A410BF1DB8E0AF2ED3489AFACABD206BFCCD23835A6113EA3F2', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4D65EEBFCBB59A410BF1DB8E0AF2ED3489AFACABD206BFCCD23835A6113EA3F2', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/0F54C3CE51A233D09F0E088A84314341B8D3E8BE295AF1823F881457F9C03EA6', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F54C3CE51A233D09F0E088A84314341B8D3E8BE295AF1823F881457F9C03EA6', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/03105069A6E0310158E52C31088C15C1B8624DC64302D76FDC4F922EAD45C497', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03105069A6E0310158E52C31088C15C1B8624DC64302D76FDC4F922EAD45C497', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/205DD687A823089A567E6AA29500C56F1BB3A8A900B9996E0F1A3B716794CB51', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/205DD687A823089A567E6AA29500C56F1BB3A8A900B9996E0F1A3B716794CB51', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/B72273A388629FE7B46ECE058C64E33D8197F86D8A04692C21DD12D6ABFA309A', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B72273A388629FE7B46ECE058C64E33D8197F86D8A04692C21DD12D6ABFA309A', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/4530E1036AEA60652130A10D1581E9D0B50AF964244F89CA48169814B00BFBF8', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4530E1036AEA60652130A10D1581E9D0B50AF964244F89CA48169814B00BFBF8', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/251D8B36556F64027A70606DBFA944CA1868AD10BFF77011BA8A2C805553DE6E', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/251D8B36556F64027A70606DBFA944CA1868AD10BFF77011BA8A2C805553DE6E', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/797E2992022CE580B65720F37D3BBA4A93CEDAA123AC160AF22673742A7DDC51', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/797E2992022CE580B65720F37D3BBA4A93CEDAA123AC160AF22673742A7DDC51', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/924A6E58E435219605FE378740ECE6948E2A4DCD16DA7DF3E7CB7B6B691FE64E', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/924A6E58E435219605FE378740ECE6948E2A4DCD16DA7DF3E7CB7B6B691FE64E', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/EED292AA631880E4841A6A55D6F1E4E59A56E94A149B6E40B031214E16E01F84', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/EED292AA631880E4841A6A55D6F1E4E59A56E94A149B6E40B031214E16E01F84', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/67472B5512F384554A8D07D9E924152A9611FA75E8C6ABCEEFE4AEC3B20F0607', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/67472B5512F384554A8D07D9E924152A9611FA75E8C6ABCEEFE4AEC3B20F0607', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/EA3B112F89A97F5FE7E4082EBED2E8B7373D2FDAB68944A8C67D11AC9147AAA2', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EA3B112F89A97F5FE7E4082EBED2E8B7373D2FDAB68944A8C67D11AC9147AAA2', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/8B95466C75FC296F1CC9EAEC6B69C67096E63406FFEFB9020C93576844F2244A', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8B95466C75FC296F1CC9EAEC6B69C67096E63406FFEFB9020C93576844F2244A', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/255F9CDD735810D454D14143F99381F75142A1883C441C445F1992AB3D8B5F2D', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/255F9CDD735810D454D14143F99381F75142A1883C441C445F1992AB3D8B5F2D', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/4B564CE8584D6101A377EE1576B9B495CE5DCB45FDF05F2855FF7BF756271699', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4B564CE8584D6101A377EE1576B9B495CE5DCB45FDF05F2855FF7BF756271699', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/3E87721E33F1699E9D53C8BEFE4EE492212177497A66589D2E44A9847457F94F', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/3E87721E33F1699E9D53C8BEFE4EE492212177497A66589D2E44A9847457F94F', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/1B617850C2FB106777E4E8547345A9DCFA3B898D37868E79508FFAC5B36FF0A7', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1B617850C2FB106777E4E8547345A9DCFA3B898D37868E79508FFAC5B36FF0A7', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/7543A46EC976273396EB0C8B48D6EEEF32516BA6BF99B790580EF3C8E5B366BB', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7543A46EC976273396EB0C8B48D6EEEF32516BA6BF99B790580EF3C8E5B366BB', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/6FB30E2F2ED27E70B57717DE0E22244077C4A4BAFCFEE2BE70428A4C1C437D3A', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6FB30E2F2ED27E70B57717DE0E22244077C4A4BAFCFEE2BE70428A4C1C437D3A', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/CED40FF24EA3C95874E4B742E66EFB550199BED10B6284F97BB22DDFAF7560EA', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CED40FF24EA3C95874E4B742E66EFB550199BED10B6284F97BB22DDFAF7560EA', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/B36C9A8FDB48FAE0A6F88AF89066BFD3359B19B76E5D7526F6F7490AD35C010B', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B36C9A8FDB48FAE0A6F88AF89066BFD3359B19B76E5D7526F6F7490AD35C010B', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/1DB8A2DC14A472DF17587019D2A69634980646C9CC03B87DA235878B820D7524', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1DB8A2DC14A472DF17587019D2A69634980646C9CC03B87DA235878B820D7524', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/4AFD3D25D242BD85721DD7DDE8DC42E1B0E9A377792ED4924D0F696FCF2F7AB5', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/4AFD3D25D242BD85721DD7DDE8DC42E1B0E9A377792ED4924D0F696FCF2F7AB5', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/9B3D442874075F2649394AFDBD120DE8C0AA85EFE20FB04B4DF6179C559E460D', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9B3D442874075F2649394AFDBD120DE8C0AA85EFE20FB04B4DF6179C559E460D', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/1617DA1261DA954C75EEEF240CC86A0DE1627B39B886A61DB2D6225AAD0B55F9', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1617DA1261DA954C75EEEF240CC86A0DE1627B39B886A61DB2D6225AAD0B55F9', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/A6DB48697BCAB77CB13864F037812006E023D487D977CB83B3E99106B4E36629', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A6DB48697BCAB77CB13864F037812006E023D487D977CB83B3E99106B4E36629', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/E17C4F99F2F477EDD590CA88EA599E32820EA5FAA0D8EC6F31024F3FFB2AD63C', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E17C4F99F2F477EDD590CA88EA599E32820EA5FAA0D8EC6F31024F3FFB2AD63C', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/055613C382438CBAD6FBDD34B07A1E148224DABB98DDFF3EAC56AC5D71B52A3D', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/055613C382438CBAD6FBDD34B07A1E148224DABB98DDFF3EAC56AC5D71B52A3D', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/719AA23E4B992E67BBB968F0FF36486299C7059BA660692F2EB8DF6E221DA1F7', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/719AA23E4B992E67BBB968F0FF36486299C7059BA660692F2EB8DF6E221DA1F7', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/91C434EFA5848E600B68FED888DDD2EF7F9B718717AAA571D1C45B76AB66929F', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/91C434EFA5848E600B68FED888DDD2EF7F9B718717AAA571D1C45B76AB66929F', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/4064242D0B691EF131600CFE87E589C19DBAD589687E75ED298FF0FE532AC884', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/4064242D0B691EF131600CFE87E589C19DBAD589687E75ED298FF0FE532AC884', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/AE4935C42CD13CC392E615FD406A47EFE411328FF1814F547318E8F61D73CA38', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AE4935C42CD13CC392E615FD406A47EFE411328FF1814F547318E8F61D73CA38', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/0EF3E1C9E94B9A1C87C3A2CEB52858C5FFD03F742BA64BFBD0F6CEB318F6C80B', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0EF3E1C9E94B9A1C87C3A2CEB52858C5FFD03F742BA64BFBD0F6CEB318F6C80B', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/E138421A9959C2D9B36579EFAD63D1E5089C1C64406EFE7468AC5A77E8543840', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E138421A9959C2D9B36579EFAD63D1E5089C1C64406EFE7468AC5A77E8543840', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/E7D60BBF0EE62D6D98DB1C0D9885690A23C5F2F7969D52AF27B8ACCBAADFC9CE', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E7D60BBF0EE62D6D98DB1C0D9885690A23C5F2F7969D52AF27B8ACCBAADFC9CE', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/F81C57083A5F63E048A4C615B80D60B3D34420991AD3DCBCC1D0EA32C8D5E0B8', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F81C57083A5F63E048A4C615B80D60B3D34420991AD3DCBCC1D0EA32C8D5E0B8', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/26229CAF4DC6FC131AE959CEC74B5FB8B3F69C7AFADD4FC97B15A9D4EC35DE8E', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/26229CAF4DC6FC131AE959CEC74B5FB8B3F69C7AFADD4FC97B15A9D4EC35DE8E', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/F7DB8E6793DAC6923290A8F9C49C56E9D381FEBB6368489EB91C1B3ECE1EEC13', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F7DB8E6793DAC6923290A8F9C49C56E9D381FEBB6368489EB91C1B3ECE1EEC13', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/11F74BF975ADACD1D3509B6370D8C5DFB35A27E1EEB6969F7B6A82DCFCECFAC1', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/11F74BF975ADACD1D3509B6370D8C5DFB35A27E1EEB6969F7B6A82DCFCECFAC1', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/C674E5B48789458DFDB912136986B464FCF353791472FD0AB7864D2BFC58D9DD', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C674E5B48789458DFDB912136986B464FCF353791472FD0AB7864D2BFC58D9DD', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/7742D459368DDC81236BA74EE632FC932F245E6F0F41FE486F34D09D0B551A72', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7742D459368DDC81236BA74EE632FC932F245E6F0F41FE486F34D09D0B551A72', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/8F8E6B1EB1D2B47B1CB57C44DE604CA1283083238E971FB2FF37A5FF53D4DAFB', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8F8E6B1EB1D2B47B1CB57C44DE604CA1283083238E971FB2FF37A5FF53D4DAFB', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/9F9E88376B349BD40A8FC054CB4A62A66D9C8A3B267B34297B58395FEB8B19A8', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9F9E88376B349BD40A8FC054CB4A62A66D9C8A3B267B34297B58395FEB8B19A8', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/656CD9FE07EEDD96E4B857A8F31FED9507188093FE3C7583BD74FF158459F904', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/656CD9FE07EEDD96E4B857A8F31FED9507188093FE3C7583BD74FF158459F904', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/D3FB5C1541AA6FE9076F2F56883AD74EDEE1439DA3233A7B02E447BF6253846A', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D3FB5C1541AA6FE9076F2F56883AD74EDEE1439DA3233A7B02E447BF6253846A', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/C3727C302D3B94D177587C997CA5BBE125CBDF6699D4AD15CD95F46B76E1F56B', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C3727C302D3B94D177587C997CA5BBE125CBDF6699D4AD15CD95F46B76E1F56B', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/A1EB0FC0173553CCFB48DC2DF140706CB15057983C1337F7195B809362A3665A', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A1EB0FC0173553CCFB48DC2DF140706CB15057983C1337F7195B809362A3665A', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/40E72CE2E1F5608F9C8DE54352868A01887FDD2FF1F9B08567F79DD8A66FCF60', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/40E72CE2E1F5608F9C8DE54352868A01887FDD2FF1F9B08567F79DD8A66FCF60', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/F71180E992D359854B008759B83D10CB2A9DFBDA0A45D3198F37C6A037C91DE9', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F71180E992D359854B008759B83D10CB2A9DFBDA0A45D3198F37C6A037C91DE9', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/75A42F231B708FDFD723D3794F47551B388F23C58716C85C960AC2D56AFFCB66', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75A42F231B708FDFD723D3794F47551B388F23C58716C85C960AC2D56AFFCB66', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/6A769751F36E7B1AE5D2CA9C35F72D7F02CDDA31BDF433169792861855D40962', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A769751F36E7B1AE5D2CA9C35F72D7F02CDDA31BDF433169792861855D40962', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/8E6078F6E30B78D6C64A4F8545D3B557B0DE927B7EBA8313397D25660001D62C', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8E6078F6E30B78D6C64A4F8545D3B557B0DE927B7EBA8313397D25660001D62C', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/8350B5A6359488076125F3B48BFE71F575F28DC36F657212BCCCCD797E4BE9DF', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8350B5A6359488076125F3B48BFE71F575F28DC36F657212BCCCCD797E4BE9DF', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/0B31B887F31B59A1FAEF82369739689ED3AC0483B5C9A0583D2DF57338994472', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0B31B887F31B59A1FAEF82369739689ED3AC0483B5C9A0583D2DF57338994472', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/E95E4CCBDB87F5E8FB07F3650346A3914A8BEA8737AA27CEA0081BD83F4A185A', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E95E4CCBDB87F5E8FB07F3650346A3914A8BEA8737AA27CEA0081BD83F4A185A', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/134407566ABAA59B719FB82CF840A4F91392091FD1B79262185FEF48E1071D56', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/134407566ABAA59B719FB82CF840A4F91392091FD1B79262185FEF48E1071D56', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/569B51CFFBDC2F6F7EAB6D4B5577CF682427B8BD7BC534A39DAA86737EFEF412', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/569B51CFFBDC2F6F7EAB6D4B5577CF682427B8BD7BC534A39DAA86737EFEF412', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/51372083A0AD1DA35DB7482BE1BBA9865E0684631D326A36960E439138F3F76D', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/51372083A0AD1DA35DB7482BE1BBA9865E0684631D326A36960E439138F3F76D', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/1B811B437939DB26A76303E4AD34442F47C2288152EC096AD86F542D1B5B111F', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1B811B437939DB26A76303E4AD34442F47C2288152EC096AD86F542D1B5B111F', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/D84182093C546B7116CB94570E62DCFFBF115B4F6D3A875D7FDC9B6408ADF7FC', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D84182093C546B7116CB94570E62DCFFBF115B4F6D3A875D7FDC9B6408ADF7FC', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/881DFF838CB8ABC7B0B3E3DCF214E354F3BFB49406B9B3AE83F7B8BF4BFE5B25', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/881DFF838CB8ABC7B0B3E3DCF214E354F3BFB49406B9B3AE83F7B8BF4BFE5B25', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/0F70E275D8D3B5A94BA8FEC2EC2D085CCD50EF5FF09FE6AF9FA1F47EBE116AC2', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F70E275D8D3B5A94BA8FEC2EC2D085CCD50EF5FF09FE6AF9FA1F47EBE116AC2', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/E04FC33F8868CB0457F64AFA320902547A3FB686A9FE52D02E8856DC39EAB76E', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E04FC33F8868CB0457F64AFA320902547A3FB686A9FE52D02E8856DC39EAB76E', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/90982F69508D0D567D4C4AAF94254AED9214D6F46E485DB7CCCB4FE7696F5E6F', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/90982F69508D0D567D4C4AAF94254AED9214D6F46E485DB7CCCB4FE7696F5E6F', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/9C63D29397537092759CC7288D052045047D77E9492F737FDFBE76E07C784809', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C63D29397537092759CC7288D052045047D77E9492F737FDFBE76E07C784809', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/9D7CAD0645FB84DD0BE2450F3A4910D9D9F08D7B838468F0E030DBCC87B0BE4C', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9D7CAD0645FB84DD0BE2450F3A4910D9D9F08D7B838468F0E030DBCC87B0BE4C', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D93596D0A06982E28574E1D9D07165003B1FB5C35E21D3C0F6A9EC4722C9E685', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D93596D0A06982E28574E1D9D07165003B1FB5C35E21D3C0F6A9EC4722C9E685', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/30328954698F7C77426B964439ADB6D84FB2AF080FD4A94AC815F936D95716FB', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30328954698F7C77426B964439ADB6D84FB2AF080FD4A94AC815F936D95716FB', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/487028382510D08671FFF94D8E0B6B00E3C61300879A81D692D1506A54631596', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/487028382510D08671FFF94D8E0B6B00E3C61300879A81D692D1506A54631596', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/196C72F585F311B6F14EE6CD027552DAE459146CDFFE73AA93545D1D4FFD8752', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/196C72F585F311B6F14EE6CD027552DAE459146CDFFE73AA93545D1D4FFD8752', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/303488C5E826C639571CA90DEBD9ECC97DF091812215C34DD8903C30D397A2C4', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/303488C5E826C639571CA90DEBD9ECC97DF091812215C34DD8903C30D397A2C4', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/60F4FB692A3B6CA3FBC0F06D8E5AF21737582A5A0B338AD83DC731DA7EC992B8', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/60F4FB692A3B6CA3FBC0F06D8E5AF21737582A5A0B338AD83DC731DA7EC992B8', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/AF9159E03F4D0FB83140236A8C131CD310CA72D78652AE6E109E3AACF8393358', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AF9159E03F4D0FB83140236A8C131CD310CA72D78652AE6E109E3AACF8393358', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CE9F7A4CDDCC1C1ABC4906FB3A7E1928A074F3517B7AB12A3010F221035C0CD1', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE9F7A4CDDCC1C1ABC4906FB3A7E1928A074F3517B7AB12A3010F221035C0CD1', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/661462D67925D710D139AC0980BA92B072288BE3B24C7F2415CCB97E0B447FAE', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/661462D67925D710D139AC0980BA92B072288BE3B24C7F2415CCB97E0B447FAE', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/CE165DF035EFA9D04C01E254EF9705A53ACE927FF11349A18476C99379B4DFA9', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE165DF035EFA9D04C01E254EF9705A53ACE927FF11349A18476C99379B4DFA9', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/E917172716EA839784C5915401D281691472066EBEB9406D3BF131E098949566', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E917172716EA839784C5915401D281691472066EBEB9406D3BF131E098949566', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/DE92DDC253AF6F363972C32E17512293B613714288E9ED54831E114F3F50E00C', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DE92DDC253AF6F363972C32E17512293B613714288E9ED54831E114F3F50E00C', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/881C6291140519C327B90C061F6CB299DCDDAFEDC5561C94F3F86858310A5DD1', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/881C6291140519C327B90C061F6CB299DCDDAFEDC5561C94F3F86858310A5DD1', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/64BFB6727F9FA2F356CA33CC1E5061D347F27100648E1596F221888B88F542ED', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/64BFB6727F9FA2F356CA33CC1E5061D347F27100648E1596F221888B88F542ED', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/C6F4A71109B1B417DED9C6BF9C8244C4067AB8205224E1A7A0DB20735F524C28', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C6F4A71109B1B417DED9C6BF9C8244C4067AB8205224E1A7A0DB20735F524C28', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/372A658015D9DAC0CFF02EF87B8A9FF5F16EF0EDE4CAE6778D7EDAD36807C37B', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/372A658015D9DAC0CFF02EF87B8A9FF5F16EF0EDE4CAE6778D7EDAD36807C37B', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/09E82012DEE145E60FF43B96ED282A35AAA9F03BE1E676FE0DB992F2A7C4C8DB', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/09E82012DEE145E60FF43B96ED282A35AAA9F03BE1E676FE0DB992F2A7C4C8DB', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/7EB0AEA1DF8E236AC8C6B93C18FB5A092101540AB3DF350F58007341AFFD94DF', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7EB0AEA1DF8E236AC8C6B93C18FB5A092101540AB3DF350F58007341AFFD94DF', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/A26601D0F0B82B395C14DAF15DA2EC7E64D1B2C0BF9931ACBA349231793B8018', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A26601D0F0B82B395C14DAF15DA2EC7E64D1B2C0BF9931ACBA349231793B8018', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/F169487F3CA043594AA83CFAEC67F94B4F0C81F48521E31EF877A46127756B12', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F169487F3CA043594AA83CFAEC67F94B4F0C81F48521E31EF877A46127756B12', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/7FCE350F653E6756EE2BA48047ECA8AB5A5DB02EA23E1BAA4263F27ADA5F2364', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7FCE350F653E6756EE2BA48047ECA8AB5A5DB02EA23E1BAA4263F27ADA5F2364', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/7FE54F2A0A414A5314229051F9900D46D4B88D9AA366C380E13BF24EB12BFEE7', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7FE54F2A0A414A5314229051F9900D46D4B88D9AA366C380E13BF24EB12BFEE7', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/82C8960B066B20E6C5EC8456EC9AD8C59E548DE150B91E4BBE068219C7C2E075', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/82C8960B066B20E6C5EC8456EC9AD8C59E548DE150B91E4BBE068219C7C2E075', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/C9E7124D84B231F8235C37F778E777BC983115BD7E0C4CE259127C45FD809097', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C9E7124D84B231F8235C37F778E777BC983115BD7E0C4CE259127C45FD809097', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/48C8B87A94F987F3BC02505B8CA7D966EEC2D04C429D09680E2F39D58C05F387', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/48C8B87A94F987F3BC02505B8CA7D966EEC2D04C429D09680E2F39D58C05F387', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/2D56E2A68DA8250C59C51A16F7E0554374F0F22EB29C852FCFA611A338A426D0', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2D56E2A68DA8250C59C51A16F7E0554374F0F22EB29C852FCFA611A338A426D0', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/AB9BE0DB527D59CCD1DD51EACA016A51121D7921BAF7CD93896AF68280DBA508', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AB9BE0DB527D59CCD1DD51EACA016A51121D7921BAF7CD93896AF68280DBA508', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/2A54A88287B70E456A61F99DCC652C2527A16B5CFA4CB0959D6E183FB1D943ED', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2A54A88287B70E456A61F99DCC652C2527A16B5CFA4CB0959D6E183FB1D943ED', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/821276426F0E338CC30060BB8946DDE56E35529ABA8C9E165193C90160CC542A', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/821276426F0E338CC30060BB8946DDE56E35529ABA8C9E165193C90160CC542A', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/1A78568A137770A0D8E44CA0C4A8E91929BDA5735743E2237ACE84545A4C1451', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/1A78568A137770A0D8E44CA0C4A8E91929BDA5735743E2237ACE84545A4C1451', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/2F368D48A6DCA251F0D5E80AF4B1F2F6BD43A6803C10E5E2D5ECE7B8B3A7C6F3', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2F368D48A6DCA251F0D5E80AF4B1F2F6BD43A6803C10E5E2D5ECE7B8B3A7C6F3', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/AB304741B1DE2F37310CE24248E18C227325D26F7104A8623A4F8AEE6168AC1D', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AB304741B1DE2F37310CE24248E18C227325D26F7104A8623A4F8AEE6168AC1D', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/AE9420311F2749D668EF579931398C8BFEE66734D7BC3333227382E3C1D2FE64', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AE9420311F2749D668EF579931398C8BFEE66734D7BC3333227382E3C1D2FE64', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/5256B2943F99B6CB8ABCA1F98C26C5DD64570A094618747303D64CFE09F00B20', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5256B2943F99B6CB8ABCA1F98C26C5DD64570A094618747303D64CFE09F00B20', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/A60E805B4F145A0301A296B827D9E8774F52115B29A3FBD3D26EE6141EF73FF4', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A60E805B4F145A0301A296B827D9E8774F52115B29A3FBD3D26EE6141EF73FF4', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/AC10C94C25CAA77B64BB232E077A36516A8A79851E9D0C5659816E7DD722E08A', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/AC10C94C25CAA77B64BB232E077A36516A8A79851E9D0C5659816E7DD722E08A', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/8F14901314260603C62A61B9460A3FCE7E8F75B9EC198B85EFE37108D8EFC291', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8F14901314260603C62A61B9460A3FCE7E8F75B9EC198B85EFE37108D8EFC291', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/138F985979CE9EA9A1D7F8E1466143B8D61D09A75CEE96AB2C80CAD9D11BD820', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/138F985979CE9EA9A1D7F8E1466143B8D61D09A75CEE96AB2C80CAD9D11BD820', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/6FA37CAB1CE15D2F3B418869CA2353A44B01B55C2C74F4A02A64F43A00EBE959', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6FA37CAB1CE15D2F3B418869CA2353A44B01B55C2C74F4A02A64F43A00EBE959', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/B51250EB710B7346A8798205B374726D5F8E6557291E701B3E3284CCB2246E70', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B51250EB710B7346A8798205B374726D5F8E6557291E701B3E3284CCB2246E70', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/E8FB8E8FC33ED04BEE5580F2E9712147D1BCEF672FB63D49348E9DF3DF5D4740', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E8FB8E8FC33ED04BEE5580F2E9712147D1BCEF672FB63D49348E9DF3DF5D4740', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/A9770C5AF61163FEC91DAC023C0D7D2FDAB5213935CE3680E58DD68D5050EDAD', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9770C5AF61163FEC91DAC023C0D7D2FDAB5213935CE3680E58DD68D5050EDAD', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C60C442151798AEA5C7D5E7DCA5EC4CBB706E63FE0901BA0E5316AD882FC2FB3', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C60C442151798AEA5C7D5E7DCA5EC4CBB706E63FE0901BA0E5316AD882FC2FB3', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/54861C17B1CB52C66AAF71A5EAD1667C903B12DC608C07C26F8CF86D8E88B0FA', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/54861C17B1CB52C66AAF71A5EAD1667C903B12DC608C07C26F8CF86D8E88B0FA', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/71254E353D8481B748BF1AED19CAA6EF370D47C0920F399D993B85F485CE682D', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/71254E353D8481B748BF1AED19CAA6EF370D47C0920F399D993B85F485CE682D', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/6FFC76CEABA73E3E8248611795140284E2339C19E825A000F50F38EB42FC343C', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6FFC76CEABA73E3E8248611795140284E2339C19E825A000F50F38EB42FC343C', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/4FA7EE45C9E5DEF6FBC6FB8FDE8918513E47F5122F534FEF4EA9682A7A3EE485', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4FA7EE45C9E5DEF6FBC6FB8FDE8918513E47F5122F534FEF4EA9682A7A3EE485', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/6F203A6569D021FDF3535422EE9A09ABE2E079A9050D2E120DCB948E6516F7B2', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6F203A6569D021FDF3535422EE9A09ABE2E079A9050D2E120DCB948E6516F7B2', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/C4CD644E775B7A4EB8274EC1F0155D5E884CC3773D25B2F920CD6D76345550ED', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C4CD644E775B7A4EB8274EC1F0155D5E884CC3773D25B2F920CD6D76345550ED', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/8987678B369D53ED8B0C33797D59BF26C5B2EDF0AFD769A45BE3C213CDC208FC', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8987678B369D53ED8B0C33797D59BF26C5B2EDF0AFD769A45BE3C213CDC208FC', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/817A5BC4E754CA58168A31668FE3CC70DB7B64C089D982E7FD2CFBE0527D9F46', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/817A5BC4E754CA58168A31668FE3CC70DB7B64C089D982E7FD2CFBE0527D9F46', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/50AC9D78AE04AEE956C70BF212E6ABFD4085FBFBBACE55F37B7A4C9A1C10B988', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/50AC9D78AE04AEE956C70BF212E6ABFD4085FBFBBACE55F37B7A4C9A1C10B988', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/11F3B0641EE95D3B931869BB72218C68C016B2D30E807B671414ECF02BF2EFFF', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/11F3B0641EE95D3B931869BB72218C68C016B2D30E807B671414ECF02BF2EFFF', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/8A6FFC7632D1307839A68B01099831EE441D1BC8588A30D7FAF0CD88180ABFE0', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8A6FFC7632D1307839A68B01099831EE441D1BC8588A30D7FAF0CD88180ABFE0', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/CD0E802D1FD83A4F637D231DE06F6B104B36DC364ADDBC4CB2CE010565EBC991', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CD0E802D1FD83A4F637D231DE06F6B104B36DC364ADDBC4CB2CE010565EBC991', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/771E9CA87954936812BFE5DC915A1D3FBC158F4B9E088D0385999B7CA84CAEA0', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/771E9CA87954936812BFE5DC915A1D3FBC158F4B9E088D0385999B7CA84CAEA0', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/7C736B037F6327DB882042E5E1DF3DE58C500FC0F68B33738DDEF0568892713D', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7C736B037F6327DB882042E5E1DF3DE58C500FC0F68B33738DDEF0568892713D', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/00DD3F6ECDDB4B5064C6BD7F0F545A1792B82E9A572770CA098E1CA46F038734', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/00DD3F6ECDDB4B5064C6BD7F0F545A1792B82E9A572770CA098E1CA46F038734', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/DB74030E2E25A48868FD5907A9418E409857937E8662526384C2B655E4371E38', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DB74030E2E25A48868FD5907A9418E409857937E8662526384C2B655E4371E38', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/27E4F6F9F711612B8348BDF90A9430DBE793D49992F0B7B4DEF2D24FDE9175B3', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/27E4F6F9F711612B8348BDF90A9430DBE793D49992F0B7B4DEF2D24FDE9175B3', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/75679116A56BCA614B43459E76D04527C8844A4098B5DBB3D0B24B5DBEA36CC7', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75679116A56BCA614B43459E76D04527C8844A4098B5DBB3D0B24B5DBEA36CC7', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/9AE1E15A1A8AF9E2D18B64996D34602C53B4999456E605F15A4AB2AC9135852A', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9AE1E15A1A8AF9E2D18B64996D34602C53B4999456E605F15A4AB2AC9135852A', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/F9728FE1207210835CB7F546C4AD9B85B6791412798EF55BAD0E7C8AD2EA0A6D', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F9728FE1207210835CB7F546C4AD9B85B6791412798EF55BAD0E7C8AD2EA0A6D', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/C60F2B1C8763978A097D5E954B64EACF420DC513DA8D26D7493CF2DCFF461ABE', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C60F2B1C8763978A097D5E954B64EACF420DC513DA8D26D7493CF2DCFF461ABE', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/95E3EEFE608BD25B97ABED7F290F7D520D2A7E061AB2A8D336BB726DE77FAD3A', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/95E3EEFE608BD25B97ABED7F290F7D520D2A7E061AB2A8D336BB726DE77FAD3A', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/BF749F14ABDEB2E59642C2B4F71BA8661A40528296317E138535F1A9BDF80619', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF749F14ABDEB2E59642C2B4F71BA8661A40528296317E138535F1A9BDF80619', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/E363AF095A4E7C78EFB4097526CC31141F271A45BBE203B8255F76DAE6D7DD6C', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E363AF095A4E7C78EFB4097526CC31141F271A45BBE203B8255F76DAE6D7DD6C', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/C31F7CAB2A15AAC39B1F66E0CA998C5E2D9994200DB1B156BAF3FE5B5B161CD9', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C31F7CAB2A15AAC39B1F66E0CA998C5E2D9994200DB1B156BAF3FE5B5B161CD9', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/01651867655B5028EA048D593E2D1403AA57917C17FC2384435BA9F508B36B11', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/01651867655B5028EA048D593E2D1403AA57917C17FC2384435BA9F508B36B11', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/0E21E9172B4C5E52BF123D8E9001E1D9D5F1A4EF546B248094B66F4C26206AB0', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E21E9172B4C5E52BF123D8E9001E1D9D5F1A4EF546B248094B66F4C26206AB0', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/0E13F79B87EAF28181C3688F006B8FA3A3A99591ED6F6BA2AF843C26187E5810', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E13F79B87EAF28181C3688F006B8FA3A3A99591ED6F6BA2AF843C26187E5810', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/058DAC2C832662E760EB22B08A0B8FFC554AD998C2D157604CFDD570EC2C4AFD', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/058DAC2C832662E760EB22B08A0B8FFC554AD998C2D157604CFDD570EC2C4AFD', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/DAD46B582D4EA234E32AB5EF3E1896A16ED09FA3A8B8DDCF99C1E199F4A1ABA0', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DAD46B582D4EA234E32AB5EF3E1896A16ED09FA3A8B8DDCF99C1E199F4A1ABA0', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/B23CF21E73B0F6012F42352402414C18B3ACEAA0154E3B9E6E46976FEF80BF68', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B23CF21E73B0F6012F42352402414C18B3ACEAA0154E3B9E6E46976FEF80BF68', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/A9D902B8E5581A2CC3F135AECC5B8A005C9BDF4FFE8FFAA5DDF6050E2514CC00', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/A9D902B8E5581A2CC3F135AECC5B8A005C9BDF4FFE8FFAA5DDF6050E2514CC00', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/0AF775C93989DA87B1980A210CEFA2F076B5170AD626038E35A46F440071FCF2', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/0AF775C93989DA87B1980A210CEFA2F076B5170AD626038E35A46F440071FCF2', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/A3B2398DE3F9C17259EE2B57F915E33AA2399BE15AF88FA8753909AF3E140EB1', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A3B2398DE3F9C17259EE2B57F915E33AA2399BE15AF88FA8753909AF3E140EB1', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/D7AE7C5DF2CD679E95C66F70C828BD054B87CCC6F16DC3956728BB7331609CB1', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D7AE7C5DF2CD679E95C66F70C828BD054B87CCC6F16DC3956728BB7331609CB1', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/E1A7A8198B884541A64B3AA776DAF5B710678BD70DE4479829E24E60FE59E75E', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E1A7A8198B884541A64B3AA776DAF5B710678BD70DE4479829E24E60FE59E75E', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/60079A97EA00A0E75BF058F88718AB1AA8DBC57C9078E7A646A94D76E42F71C0', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/60079A97EA00A0E75BF058F88718AB1AA8DBC57C9078E7A646A94D76E42F71C0', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/518BBC0315C272F88E71A51647052C2DE760699FBAAE3CD97254A21FA5C58993', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/518BBC0315C272F88E71A51647052C2DE760699FBAAE3CD97254A21FA5C58993', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/77A00522AEEB9753ECBAFA0B9E0E5D9993F90FB2FF6EC8721078835DC6BA4E04', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/77A00522AEEB9753ECBAFA0B9E0E5D9993F90FB2FF6EC8721078835DC6BA4E04', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/29546F53E75DF75AE001E377E72D7A0136ECD339CF348712A42BB538EAEAF220', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/29546F53E75DF75AE001E377E72D7A0136ECD339CF348712A42BB538EAEAF220', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/6C4317CC35368DAB9DB2106B078470668B27E801D64EE20BAA1BED4DB9E22FF1', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6C4317CC35368DAB9DB2106B078470668B27E801D64EE20BAA1BED4DB9E22FF1', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/DB315D61BCB8CE3CDC993DF9E945F92452A13770AA4C55CECF8A576C7B1E32A4', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DB315D61BCB8CE3CDC993DF9E945F92452A13770AA4C55CECF8A576C7B1E32A4', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/CC6BF557D3C17037E520B9B5AC44E1E23F32B9D2C7EAA8A5C23EF18EA45EF2AE', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC6BF557D3C17037E520B9B5AC44E1E23F32B9D2C7EAA8A5C23EF18EA45EF2AE', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/7EEE01B32652FCAFFBAB0FB235D1210A66F66471CF57C5582DEE550ECACBAEAC', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7EEE01B32652FCAFFBAB0FB235D1210A66F66471CF57C5582DEE550ECACBAEAC', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/7F5EE77BBBB9968E57B7FF6939947AA7FCFC4F78C12322D9F8BB3F066BDA2B5F', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F5EE77BBBB9968E57B7FF6939947AA7FCFC4F78C12322D9F8BB3F066BDA2B5F', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CEBAD254478D5EA007000ED2FC7CCFC2DCDC21D86A73C8D28406415931F4C7C9', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/CEBAD254478D5EA007000ED2FC7CCFC2DCDC21D86A73C8D28406415931F4C7C9', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/D5ABAAC6179D4CDB430523B3ED6CD3828AD9A39D161EF967D4E9C17B7A69CF95', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D5ABAAC6179D4CDB430523B3ED6CD3828AD9A39D161EF967D4E9C17B7A69CF95', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/DCBD9E9D795C5EEB7A3CE66F7955D0A0D273101698DE9C55E44CD5F1B1B52D89', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DCBD9E9D795C5EEB7A3CE66F7955D0A0D273101698DE9C55E44CD5F1B1B52D89', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/EC631A8EA49C7858E38B7EE623FABCDDCAEE2F1BD9EDA788177B9C88B05E6AA7', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EC631A8EA49C7858E38B7EE623FABCDDCAEE2F1BD9EDA788177B9C88B05E6AA7', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/BD9991500A0057C56779FD479DAADC024F070B98751C28103D0343F1C861AD44', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD9991500A0057C56779FD479DAADC024F070B98751C28103D0343F1C861AD44', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/CE738651718DF9B15FD2CA6DC6D0FD3CE056CDC0BD372DD5A3BA90277E34C3F5', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE738651718DF9B15FD2CA6DC6D0FD3CE056CDC0BD372DD5A3BA90277E34C3F5', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/4746F9F4C46EA9EEDEB47A3F34C31015371FFEAB3CC8E66286FBEF463CBE3606', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/4746F9F4C46EA9EEDEB47A3F34C31015371FFEAB3CC8E66286FBEF463CBE3606', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/42B2E1081AE0F744BB3C1D04E43D5200E5D4D55E636434AEC8DA9913228B94A2', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/42B2E1081AE0F744BB3C1D04E43D5200E5D4D55E636434AEC8DA9913228B94A2', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/27D423C5C52BF9B6DCEEF1F203FFA7E815FF48E6D7DB77025944C75163967B4B', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/27D423C5C52BF9B6DCEEF1F203FFA7E815FF48E6D7DB77025944C75163967B4B', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/9A65ECA59B1DE213EC8FFAA0AE0DA236C6DD2C7D8CBFB3AC3E835B5E2C23F1E4', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9A65ECA59B1DE213EC8FFAA0AE0DA236C6DD2C7D8CBFB3AC3E835B5E2C23F1E4', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/62786D4EB7DBC2A176DDAAB0563956BFBB54A7C4B1E0CF929A4D473DC12D61D3', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/62786D4EB7DBC2A176DDAAB0563956BFBB54A7C4B1E0CF929A4D473DC12D61D3', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/9BE41CA8164BCD48114FC895D33037DECAF3C4E5620776B1C2864057FA54454A', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BE41CA8164BCD48114FC895D33037DECAF3C4E5620776B1C2864057FA54454A', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/C425CC1D298152F167120CE9178E52190C1403BF63FE11882332D33F2C9D9DD1', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C425CC1D298152F167120CE9178E52190C1403BF63FE11882332D33F2C9D9DD1', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/4F3C15EE7E9585B9CF1E9875700919851F5834D34BA0D1C677B144C0ABA5D341', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4F3C15EE7E9585B9CF1E9875700919851F5834D34BA0D1C677B144C0ABA5D341', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/79C38C87BB2733F67437B82AF8C2BBA05014730C504D18B1B55DECAC4515E142', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/79C38C87BB2733F67437B82AF8C2BBA05014730C504D18B1B55DECAC4515E142', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/7E7AB7FBB9E4EAE87FC3CAE47DE0A28B532444806D30694350E5BF55DAEF802D', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/7E7AB7FBB9E4EAE87FC3CAE47DE0A28B532444806D30694350E5BF55DAEF802D', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/9F957BB96C5D35A674AFA257884FB47D23E0B56B44D61D129F91255F88F66734', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F957BB96C5D35A674AFA257884FB47D23E0B56B44D61D129F91255F88F66734', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/226BC4971F80C5A12DFBA09637104205E2663F7533AAFE68EFB757E49CDD78D2', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/226BC4971F80C5A12DFBA09637104205E2663F7533AAFE68EFB757E49CDD78D2', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/DDB5B22B42A1487375D15919E0B0A338A7CB9BB42C86CBEE25108AD90CC8CBC5', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DDB5B22B42A1487375D15919E0B0A338A7CB9BB42C86CBEE25108AD90CC8CBC5', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9D54F39461D32F78D8F621AE7C6FE3C13819D4B9AA5069491570586E5F97F0E3', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9D54F39461D32F78D8F621AE7C6FE3C13819D4B9AA5069491570586E5F97F0E3', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/983A46C2D93EECA6E66E1833FABA5F111E9D7E7AC658822BA6CAA5DF31067304', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/983A46C2D93EECA6E66E1833FABA5F111E9D7E7AC658822BA6CAA5DF31067304', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/47FFD69F1719B25384C9CB3E10E1079B2E3BF12A6690EC2831F74A87384C124D', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/47FFD69F1719B25384C9CB3E10E1079B2E3BF12A6690EC2831F74A87384C124D', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/594720E8959F643185F5B5067A72B87037D67B72386DDFA8633B30955691DD7C', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/594720E8959F643185F5B5067A72B87037D67B72386DDFA8633B30955691DD7C', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/2136C14D6105FC91C05A7D5097062AC2E712DFF472F640393D56E1021011C779', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/2136C14D6105FC91C05A7D5097062AC2E712DFF472F640393D56E1021011C779', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/170EC22EA9E5DADBBE3BFFB434632349318EFD4D4FC2ECD81699698200536D04', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/170EC22EA9E5DADBBE3BFFB434632349318EFD4D4FC2ECD81699698200536D04', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/F8617D18C4C20278D1BA2061865514303DAA09ED5248DFC223DDC097217F4DB6', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F8617D18C4C20278D1BA2061865514303DAA09ED5248DFC223DDC097217F4DB6', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/8A4C50076446C661F8A45A488D066340EC8B6B3A9CD3D6D20E1284827DE137FF', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8A4C50076446C661F8A45A488D066340EC8B6B3A9CD3D6D20E1284827DE137FF', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/6C587F381AD9AEF58037939FA4F2E4B9E9E35EFE0EF9CF1F36F7B77BA22C9963', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6C587F381AD9AEF58037939FA4F2E4B9E9E35EFE0EF9CF1F36F7B77BA22C9963', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/B1912221DD8C064374CFACB9F80DBDEC47B024C0A886BD70E11EC08A7D4E2480', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B1912221DD8C064374CFACB9F80DBDEC47B024C0A886BD70E11EC08A7D4E2480', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/3C58AC56E392E53BBA24A1021D9D7615CD229226111F089AE6A95F05E50C776F', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3C58AC56E392E53BBA24A1021D9D7615CD229226111F089AE6A95F05E50C776F', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/EA834E95CB603D71DD261D12FD8B86FE7F31DB1E2AE38DDC4742A38692589E7A', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EA834E95CB603D71DD261D12FD8B86FE7F31DB1E2AE38DDC4742A38692589E7A', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/8E374FDC51F237348A288E1B8AE194C0E984F6069F14B00AEDC6858B973D1AEC', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8E374FDC51F237348A288E1B8AE194C0E984F6069F14B00AEDC6858B973D1AEC', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/03A2F94D24E98EEDF0DF9F659FC6DCF5DBAD42FA5A62DD0CCB0B556ADB89B357', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03A2F94D24E98EEDF0DF9F659FC6DCF5DBAD42FA5A62DD0CCB0B556ADB89B357', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/86CA786DD068B52DC8DCFAD25034133FFAE12B3A1B2BFF2851E6B034F6CF8AB8', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/86CA786DD068B52DC8DCFAD25034133FFAE12B3A1B2BFF2851E6B034F6CF8AB8', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/DCFB8E51EE3B8CA9760CCA5A3B45072F34830D94A10E2C271576CFCF2F649665', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DCFB8E51EE3B8CA9760CCA5A3B45072F34830D94A10E2C271576CFCF2F649665', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/1C17EE5B4756B980F1C074DA8C7FF193927E4E19727B5FDCFD51ADC2FBE79EE3', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/1C17EE5B4756B980F1C074DA8C7FF193927E4E19727B5FDCFD51ADC2FBE79EE3', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/30916CCD18CF1C609D71F42B102AC1643CFB27AF690CB709AABEC99C02601564', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/30916CCD18CF1C609D71F42B102AC1643CFB27AF690CB709AABEC99C02601564', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/50870D3DE9EBDA0E4BED39BF396BD339C107F111AF7EA7094CE7389BD4DDE1AC', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/50870D3DE9EBDA0E4BED39BF396BD339C107F111AF7EA7094CE7389BD4DDE1AC', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/7B3860E2708ABC61081CA08887D847EA7FA1365CAD866CE12DA1AC96684DABBA', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7B3860E2708ABC61081CA08887D847EA7FA1365CAD866CE12DA1AC96684DABBA', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/0C9D81C441E9C4481BF3FE482AFA5C6DC28208105F1C014707517A2A2E48A4FE', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0C9D81C441E9C4481BF3FE482AFA5C6DC28208105F1C014707517A2A2E48A4FE', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/1ED66A3E22F6CAB666272975E237BC79283504A119778107D4CA0009A48C5DD8', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1ED66A3E22F6CAB666272975E237BC79283504A119778107D4CA0009A48C5DD8', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/D045B691599D3B4A313F55610BD98758E1DC117B0AB96C5AEB9E208B9E13F66A', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D045B691599D3B4A313F55610BD98758E1DC117B0AB96C5AEB9E208B9E13F66A', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/BA32EA5285A43B94A27DADF25F47103994A04FEFFB15C8A2706CD1460BD6EFA7', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BA32EA5285A43B94A27DADF25F47103994A04FEFFB15C8A2706CD1460BD6EFA7', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/BFEFAA14A57EF1BEE3BE71047D208A571C7083B0FA787D48FAD376C8C96950F0', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BFEFAA14A57EF1BEE3BE71047D208A571C7083B0FA787D48FAD376C8C96950F0', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/6D0C848F84EA3473F0F55B670088D1F8E93933AF5CA341D22B55C1F3EDCEE9AF', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6D0C848F84EA3473F0F55B670088D1F8E93933AF5CA341D22B55C1F3EDCEE9AF', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/5E25E857BBBE43DC337172D746C1D28C27D411C3B602DA44456FBC54DD65B875', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5E25E857BBBE43DC337172D746C1D28C27D411C3B602DA44456FBC54DD65B875', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/22D979AAA8AF9A0CF08DFFC08C477650A80559CAD9ADFFFEB74FA325EB9DDB03', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/22D979AAA8AF9A0CF08DFFC08C477650A80559CAD9ADFFFEB74FA325EB9DDB03', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/AE498B751D519992B8C7CB14FFBD9A90624A77F2A43CDFDAFE82AD0C52E1D542', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AE498B751D519992B8C7CB14FFBD9A90624A77F2A43CDFDAFE82AD0C52E1D542', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/90BA4482EC0B487F4DF169034C302F7E466BD1BF3A335C16223FB9155B60EC63', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/90BA4482EC0B487F4DF169034C302F7E466BD1BF3A335C16223FB9155B60EC63', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/C1BD359A2E37FEB5A18496B944AF5400051EBCA9C87B5C6E5CF9F35435207FC8', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C1BD359A2E37FEB5A18496B944AF5400051EBCA9C87B5C6E5CF9F35435207FC8', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/B67C4E73928B2B538F113E73B6E3E82F2CDCD247E144F01DD9ECBB7398977512', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B67C4E73928B2B538F113E73B6E3E82F2CDCD247E144F01DD9ECBB7398977512', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/21615997A2165D8745273BC963C009C31057F2A8541F560EC58F43B89CE9DC7C', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/21615997A2165D8745273BC963C009C31057F2A8541F560EC58F43B89CE9DC7C', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/1ECB7447A58F68B9DC21DD883DB670AD460CA9F41CBC29D77FCE9EC6F3335564', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/1ECB7447A58F68B9DC21DD883DB670AD460CA9F41CBC29D77FCE9EC6F3335564', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/FA3AC6929897D88463D9E622282EF528E099B02758E285C4B12AF4110BE50D0B', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/FA3AC6929897D88463D9E622282EF528E099B02758E285C4B12AF4110BE50D0B', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/72417F06B78F4573DD48392A60559E15E47D1EB34624125528E547035902D00C', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/72417F06B78F4573DD48392A60559E15E47D1EB34624125528E547035902D00C', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/8A4807F655BF34F8B630F3348E3A6B9B8C5DA51092907D7102D0E906FF29FFD2', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/8A4807F655BF34F8B630F3348E3A6B9B8C5DA51092907D7102D0E906FF29FFD2', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/B911FB346D83B28CF1D6D19960BBDE9CBB206EC8F793DE9CF56377A88C4BE919', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/B911FB346D83B28CF1D6D19960BBDE9CBB206EC8F793DE9CF56377A88C4BE919', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/4EC3E2DA6988C5DBD0FE00F1F41E503DF56441643693370B08C82DF7B9D21A47', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/4EC3E2DA6988C5DBD0FE00F1F41E503DF56441643693370B08C82DF7B9D21A47', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/3AFBF97F3502DE56AEF44E05CFDAF7FA0C60A3A3DAE48F2F1129C1E864CD9B64', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/3AFBF97F3502DE56AEF44E05CFDAF7FA0C60A3A3DAE48F2F1129C1E864CD9B64', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/9AF4CE0E5B5AE263E5F48B5CCA207076162AF991AD219638770B0008750E422D', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9AF4CE0E5B5AE263E5F48B5CCA207076162AF991AD219638770B0008750E422D', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/144CA9F72D88C1A81EAA5B5DF62857B5B3DF0A8625A8FA0FBD82503AD7D5DA67', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/144CA9F72D88C1A81EAA5B5DF62857B5B3DF0A8625A8FA0FBD82503AD7D5DA67', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/2B845326B8F8D7B3E34E641A50B604373E0646C95D7EF3348CACBA8246E0C517', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/2B845326B8F8D7B3E34E641A50B604373E0646C95D7EF3348CACBA8246E0C517', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/FAAC048680AECDC52B0F021B316ADEBE5451AF05E11D70AA75382D368E0EB307', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/FAAC048680AECDC52B0F021B316ADEBE5451AF05E11D70AA75382D368E0EB307', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/F60157E757E9F42F3E7798D70C830417410E15E9CCE10DF9FC869A439B2CE43D', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F60157E757E9F42F3E7798D70C830417410E15E9CCE10DF9FC869A439B2CE43D', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/88441B9E19EDE9A7960FFB862981D6CDE57346EC1A3A5826CB5DC995BBE9A2B8', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/88441B9E19EDE9A7960FFB862981D6CDE57346EC1A3A5826CB5DC995BBE9A2B8', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/1A94A676A291E2827C57A71D35743AF72B1743C4FB230779257B6FAB25C956F5', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/1A94A676A291E2827C57A71D35743AF72B1743C4FB230779257B6FAB25C956F5', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/95E5C774472B62D417AD6FF3BAB17ED81BAC85D4093A018D3E800861E52AD129', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/95E5C774472B62D417AD6FF3BAB17ED81BAC85D4093A018D3E800861E52AD129', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/A1F21ECD364F5F343960C3BA11CE3F92F6AA628D0D209802542030E5424B09EC', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A1F21ECD364F5F343960C3BA11CE3F92F6AA628D0D209802542030E5424B09EC', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/45F0E30FAA8CBB62955DEF436E129039F12CCC401A19D5B6EFD1F99244A4BA9C', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45F0E30FAA8CBB62955DEF436E129039F12CCC401A19D5B6EFD1F99244A4BA9C', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/625B7A5BC7314B59349820C97CE11F91606B8A6622C73F1D1E8A6D50D191ADD0', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/625B7A5BC7314B59349820C97CE11F91606B8A6622C73F1D1E8A6D50D191ADD0', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/8932BC4E613EC3256F9C34C3259093B11A50B931F67E5682F2AA987500094E69', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8932BC4E613EC3256F9C34C3259093B11A50B931F67E5682F2AA987500094E69', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/A793C3D28EF2E9CCC128A8515A60253878CA7A46FC197BA99E97B5AE4AF99A27', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/A793C3D28EF2E9CCC128A8515A60253878CA7A46FC197BA99E97B5AE4AF99A27', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/A68550AB39BD81AC681FEAEF276A9411AB78F357D531F57ABE35EED51C523EE1', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A68550AB39BD81AC681FEAEF276A9411AB78F357D531F57ABE35EED51C523EE1', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/D4B2C97F91D0CCFB56D93908D2CE831B113D8D6CEDB40174B48272E6FCCDE429', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D4B2C97F91D0CCFB56D93908D2CE831B113D8D6CEDB40174B48272E6FCCDE429', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/6C9ED04BBC28B9ED9CCD04BD46C3DB09E4D4FE30D8D722C7241E190BF320DFB3', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C9ED04BBC28B9ED9CCD04BD46C3DB09E4D4FE30D8D722C7241E190BF320DFB3', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/8155B2433559241C168F4E23F19601908FE4A1DEF7E9DB6D85370F558D94360D', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8155B2433559241C168F4E23F19601908FE4A1DEF7E9DB6D85370F558D94360D', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/CD843DB68CDB545F531F55E5DF50C7477256F2CA911C42E7A74687E21B3CEDA2', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CD843DB68CDB545F531F55E5DF50C7477256F2CA911C42E7A74687E21B3CEDA2', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/2A631E09FDABE15A0DED7C941D1ABAF813DC64BFECF73747326C3D264F2F9B5C', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2A631E09FDABE15A0DED7C941D1ABAF813DC64BFECF73747326C3D264F2F9B5C', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/3DE788086779C9AC0AAB30CDBAD623953C7D258CDEBE0BF1A51F49542EFD2A6A', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3DE788086779C9AC0AAB30CDBAD623953C7D258CDEBE0BF1A51F49542EFD2A6A', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/E278B2E73C3BD9306AA4F4FCBF8E29086F958FB51780F7D67EAD856D6EF3FD18', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E278B2E73C3BD9306AA4F4FCBF8E29086F958FB51780F7D67EAD856D6EF3FD18', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/E6D9297F40C871866B6C28570648E4FDB50F75019D37AA8A3A90E98594AE69E9', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E6D9297F40C871866B6C28570648E4FDB50F75019D37AA8A3A90E98594AE69E9', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/0394CDFE27F578F56D633F53C30FDB10A2F7B9DA84E57BAADFC90CAECEEC1B0C', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0394CDFE27F578F56D633F53C30FDB10A2F7B9DA84E57BAADFC90CAECEEC1B0C', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BFC228CB1A06B39A4C241BC53EB35037ED786169187D5271DA70CBCEA05EAFB3', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/BFC228CB1A06B39A4C241BC53EB35037ED786169187D5271DA70CBCEA05EAFB3', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/1636A394EF1207B70A8C370D0ABC06F4EA097F7CA0149AF8D212509869B63CC2', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1636A394EF1207B70A8C370D0ABC06F4EA097F7CA0149AF8D212509869B63CC2', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/AAA41037A2E7CA9499B1F9DA8B4E9F1CAD685A0D1F3B8B398B72291144C3F46D', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AAA41037A2E7CA9499B1F9DA8B4E9F1CAD685A0D1F3B8B398B72291144C3F46D', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/575E7E75E0FB2C2463941F1BC36BE3100F579FA082C24B6607E0588A1AF11655', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/575E7E75E0FB2C2463941F1BC36BE3100F579FA082C24B6607E0588A1AF11655', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/78E61EFC554543A4124680BB1C553CE2161CFB0C31260639E92BD377B6C6975C', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/78E61EFC554543A4124680BB1C553CE2161CFB0C31260639E92BD377B6C6975C', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/31F445B981295F859C20857034780B5399144FCA788F65AF891BD347119D0059', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/31F445B981295F859C20857034780B5399144FCA788F65AF891BD347119D0059', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/F11B94DA540057BF56B69E17D7470FB539F214B3840EE199D9162A5B9CDF37B6', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F11B94DA540057BF56B69E17D7470FB539F214B3840EE199D9162A5B9CDF37B6', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/0A392E9206C7D32C5A844300324E7EF35AC09F7BC2BC24C4CF68E57E3D4ED903', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0A392E9206C7D32C5A844300324E7EF35AC09F7BC2BC24C4CF68E57E3D4ED903', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/AF4264822D5BEF715EE346BC151A2420AE6F158CFFC655461F2EFEC50420E8BD', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AF4264822D5BEF715EE346BC151A2420AE6F158CFFC655461F2EFEC50420E8BD', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/C6095E662578C0B1D35347721B87EAC32C40304E5C0C45307E243E87D4393405', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C6095E662578C0B1D35347721B87EAC32C40304E5C0C45307E243E87D4393405', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/7E1829DDA50577DA72ECEBD90FAD441D18DC57175B6090FC29BC380E068365A1', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/7E1829DDA50577DA72ECEBD90FAD441D18DC57175B6090FC29BC380E068365A1', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/497985010EAC7CA9D1AD861EE43E3108775A6531B568323F02ABFD8D190AB88A', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/497985010EAC7CA9D1AD861EE43E3108775A6531B568323F02ABFD8D190AB88A', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/C2747971483831101424636F81C549C5DE0C7EF9E3E019F2F182E2ACF0B1FED6', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/C2747971483831101424636F81C549C5DE0C7EF9E3E019F2F182E2ACF0B1FED6', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/CEFC0CC2F1B3AA0D149DF7AD1C25A0F2D9444B9C91AEA6911DA597D34B6EC8A5', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CEFC0CC2F1B3AA0D149DF7AD1C25A0F2D9444B9C91AEA6911DA597D34B6EC8A5', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/256FE176449DCCF043E1FF7CFEF140D55D1A173830EF30E46D504AC492D1575D', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/256FE176449DCCF043E1FF7CFEF140D55D1A173830EF30E46D504AC492D1575D', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/kujira.ts b/packages/assets/src/mainnet/kujira.ts index 4f7025dbe..51f006d00 100644 --- a/packages/assets/src/mainnet/kujira.ts +++ b/packages/assets/src/mainnet/kujira.ts @@ -3187,6 +3187,50 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/9012F7E79EACC34CE81A4404ECBEED5A5DFFD61CCEE23F2B8600BAC948C483E6', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/9012F7E79EACC34CE81A4404ECBEED5A5DFFD61CCEE23F2B8600BAC948C483E6', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-160' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Evmos Hub', diff --git a/packages/assets/src/mainnet/osmosis.ts b/packages/assets/src/mainnet/osmosis.ts index f16fa6344..da40cecda 100644 --- a/packages/assets/src/mainnet/osmosis.ts +++ b/packages/assets/src/mainnet/osmosis.ts @@ -13679,12 +13679,25 @@ const assets: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + theme: { + dark_mode: false, + circle: true + } + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + theme: { + dark_mode: true, + circle: true + } } ], traces: [ @@ -22552,14 +22565,14 @@ const assets: AssetList = { 'Minerva was one of the main goddesses worshiped by the Roman Pagans and is a goddess from Roman Mythology.', type_asset: 'cw20', address: - 'juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', denom_units: [ { denom: - 'ibc/297AF7827A8D61CB77DADAF6D951D428ACAF56C37BB98079B4B32DC694A73F20', + 'ibc/9E1F8DBB64753CAB022F2BDEA0D2C3B53522F372140DDF494AEE94C3078925E8', exponent: 0, aliases: [ - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8' + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82' ] }, { @@ -22567,7 +22580,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/297AF7827A8D61CB77DADAF6D951D428ACAF56C37BB98079B4B32DC694A73F20', + base: 'ibc/9E1F8DBB64753CAB022F2BDEA0D2C3B53522F372140DDF494AEE94C3078925E8', name: 'MINERVA', display: 'minerva', symbol: 'MRVA', @@ -22586,7 +22599,56 @@ const assets: AssetList = { port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', channel_id: 'channel-47', base_denom: - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, + { + description: + 'In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.', + type_asset: 'cw20', + address: + 'juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + denom_units: [ + { + denom: + 'ibc/EF9E75F44C52D139A6C98A0E37183E1C32ED6F00BDCFA0020550D78C31A62C0E', + exponent: 0, + aliases: [ + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk' + ] + }, + { + denom: 'luno', + exponent: 6 + } + ], + base: 'ibc/EF9E75F44C52D139A6C98A0E37183E1C32ED6F00BDCFA0020550D78C31A62C0E', + name: 'LUNO', + display: 'luno', + symbol: 'LUNO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', chain_name: 'juno' }, chain: { diff --git a/packages/assets/src/mainnet/persistence.ts b/packages/assets/src/mainnet/persistence.ts index bc613c42c..a4a846797 100644 --- a/packages/assets/src/mainnet/persistence.ts +++ b/packages/assets/src/mainnet/persistence.ts @@ -18874,6 +18874,275 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + exponent: 0, + aliases: ['ustars'] + }, + { + denom: 'stars', + exponent: 6 + } + ], + base: 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + coingecko_id: 'stargaze', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: 'ustars', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/FAB9D0A5DA417BE2C76655EEE07872FEB763F7792BE3052C6534D39471C94271', + exponent: 0, + aliases: ['factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust'] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + base: 'ibc/FAB9D0A5DA417BE2C76655EEE07872FEB763F7792BE3052C6534D39471C94271', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, + { + description: 'The native meme token of stargaze.', + denom_units: [ + { + denom: + 'ibc/AC9E1FB85A18A03C0B4999C352E6E7F80A998C06DC11A2D167914BDB509EB7AD', + exponent: 0, + aliases: [ + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE' + ] + }, + { + denom: 'GAZE', + exponent: 6 + } + ], + base: 'ibc/AC9E1FB85A18A03C0B4999C352E6E7F80A998C06DC11A2D167914BDB509EB7AD', + name: 'Gaze GAZE', + display: 'GAZE', + symbol: 'GAZE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/B1CE8021FE0212DD21FD5F62769B484C1964921869E50805CA336B0810B38CB9', + exponent: 0, + aliases: [ + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + base: 'ibc/B1CE8021FE0212DD21FD5F62769B484C1964921869E50805CA336B0810B38CB9', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, + { + description: 'Social token for the ohhVAULT.', + denom_units: [ + { + denom: + 'ibc/BCAC1AFF5ADBA3ECC6D8675464E790381409BB8EEF0163058D0CA351E3E93830', + exponent: 0, + aliases: ['factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH'] + }, + { + denom: 'OHH', + exponent: 6 + } + ], + base: 'ibc/BCAC1AFF5ADBA3ECC6D8675464E790381409BB8EEF0163058D0CA351E3E93830', + name: 'ohhVAULT ohh', + display: 'OHH', + symbol: 'OHH', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/ohh.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: + 'factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/AD31AD53FF81FEF89731F9AC8FCEFD379C2346CABEAA940E6551B89073863DEE', + exponent: 0, + aliases: [ + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + base: 'ibc/AD31AD53FF81FEF89731F9AC8FCEFD379C2346CABEAA940E6551B89073863DEE', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-287', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky', + chain_name: 'stargaze' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, { description: 'IOV coin is the token for the Starname (IOV) Asset Name Service', diff --git a/packages/assets/src/mainnet/scorum.ts b/packages/assets/src/mainnet/scorum.ts new file mode 100644 index 000000000..bd473a6df --- /dev/null +++ b/packages/assets/src/mainnet/scorum.ts @@ -0,0 +1,13603 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'scorum', + assets: [ + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/37B7C1AABC243067278C28C77973A28D7844EF5465ACD0EBE6E506BE4C6816C2', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/37B7C1AABC243067278C28C77973A28D7844EF5465ACD0EBE6E506BE4C6816C2', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/DA1BE182A23423A7031255C608B68D1E54AD30087AEB7F25B48D2CF8A5FE1DDB', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/DA1BE182A23423A7031255C608B68D1E54AD30087AEB7F25B48D2CF8A5FE1DDB', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/06C84FFAEBCB82E8E6E96CB069E1884DF2986C7682A661772D30141ED93C7B4A', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/06C84FFAEBCB82E8E6E96CB069E1884DF2986C7682A661772D30141ED93C7B4A', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/F63DEC0CD762E1B258767C2D8E91362315483A638FFF8B30DCEE81C49C9725B1', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F63DEC0CD762E1B258767C2D8E91362315483A638FFF8B30DCEE81C49C9725B1', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/8ECC3F9305795023FE1F7AB4C67B338BB1A1705A298E167269626D012E467110', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8ECC3F9305795023FE1F7AB4C67B338BB1A1705A298E167269626D012E467110', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/FBA34C2BCE61066AED99D1797EB05A419F5FDB523E36F30F6C254BE61BCCAE29', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/FBA34C2BCE61066AED99D1797EB05A419F5FDB523E36F30F6C254BE61BCCAE29', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/7A115794740AAA20DF614362C13A08500064A39BEDB506281F51B270EF91C883', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7A115794740AAA20DF614362C13A08500064A39BEDB506281F51B270EF91C883', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/BB2299E1B33282B292D53764B0A121CEB7E89280E7494C22A531EAB7B741D9A4', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BB2299E1B33282B292D53764B0A121CEB7E89280E7494C22A531EAB7B741D9A4', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/7FB69AF41937DB7B6BAE96979F59C8F5D838E7CA9C5D713B6663510E473DA08B', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7FB69AF41937DB7B6BAE96979F59C8F5D838E7CA9C5D713B6663510E473DA08B', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/815FC81EB6BD612206BD9A9909A02F7691D24A5B97CDFE2124B1BDCA9D4AB14C', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/815FC81EB6BD612206BD9A9909A02F7691D24A5B97CDFE2124B1BDCA9D4AB14C', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/8C585AA7388BCD1E05DD39BFC0B1DDD12024397EC68EA6B52FB38716C3A64790', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8C585AA7388BCD1E05DD39BFC0B1DDD12024397EC68EA6B52FB38716C3A64790', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/C1317B408C60771EBD2C20F248FAD2246ED9AD6133F4FCE75C2B20BFD5DC3FCF', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/C1317B408C60771EBD2C20F248FAD2246ED9AD6133F4FCE75C2B20BFD5DC3FCF', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/D033E88EB94ADB1845E0EF65FAECB9269846EBA5B1C32831FFCFB5B270759DCD', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D033E88EB94ADB1845E0EF65FAECB9269846EBA5B1C32831FFCFB5B270759DCD', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/D171E56737981CAD5DC9EA0A931B1B89BF3AD1226FAE441350EF8D6278D27B03', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D171E56737981CAD5DC9EA0A931B1B89BF3AD1226FAE441350EF8D6278D27B03', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/2BBF3EEB88F4BB5285A5075DE1B40EF65E5028947B7751096FFF9D05585ACFD1', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2BBF3EEB88F4BB5285A5075DE1B40EF65E5028947B7751096FFF9D05585ACFD1', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/30C9FA3DF80892CF4615A84845349EAD427670CB38C6B03B0388BE8543B2AB4D', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/30C9FA3DF80892CF4615A84845349EAD427670CB38C6B03B0388BE8543B2AB4D', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/BE9116F49581FF59F018C64FB4A445B307332F77381640AAB05380473D0D7642', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BE9116F49581FF59F018C64FB4A445B307332F77381640AAB05380473D0D7642', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/D43715C51D81CBCDCE72F94476EE539BC511991EF8D65FC7E4EDA982EE6CF1E2', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D43715C51D81CBCDCE72F94476EE539BC511991EF8D65FC7E4EDA982EE6CF1E2', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/CB77DC79F829E7F15A04C34A985DDD0E77CFBB7B6887552A10FCF8028A007234', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CB77DC79F829E7F15A04C34A985DDD0E77CFBB7B6887552A10FCF8028A007234', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/D8E6DBAF07B6E5588FF589D0FE6515B1D43C9E4D949C79A0506FCEEC55C630E4', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D8E6DBAF07B6E5588FF589D0FE6515B1D43C9E4D949C79A0506FCEEC55C630E4', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/7AE2B0FD4D084438C7910E6B294E0979A422936B65EC1F4BF67DEE4EC311741B', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7AE2B0FD4D084438C7910E6B294E0979A422936B65EC1F4BF67DEE4EC311741B', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/DB9E002E57F5ED443D21D292844F9D177927DC22E59D477B03D4979E118E80F2', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DB9E002E57F5ED443D21D292844F9D177927DC22E59D477B03D4979E118E80F2', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/C986CD6163D211958B8E5CAF35E4531962B799135C4CA615F31B8692034B2538', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C986CD6163D211958B8E5CAF35E4531962B799135C4CA615F31B8692034B2538', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/1EBD0791A5F074E852E379C5AA6B5FA1A85507597C7CD908E89BC86FE8422CE3', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1EBD0791A5F074E852E379C5AA6B5FA1A85507597C7CD908E89BC86FE8422CE3', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/8499DCD3CC54614A508C22E3F98003B533549E3D361162C700DC9B62E6343133', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8499DCD3CC54614A508C22E3F98003B533549E3D361162C700DC9B62E6343133', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/3B04FAB1869B7F4CAC1093E113AB2EB15AC8E0B8D76F40A4A7D5D7E1F1E6EA8C', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B04FAB1869B7F4CAC1093E113AB2EB15AC8E0B8D76F40A4A7D5D7E1F1E6EA8C', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/1688228D9E7F3A7CFE7E09B3F7F3E3000E8D86675CFC8C8F313ACEDEB2FE2493', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1688228D9E7F3A7CFE7E09B3F7F3E3000E8D86675CFC8C8F313ACEDEB2FE2493', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/9E23CCACE78F6D57407DDD8878B8C2144E6CC775C8CC8D4806BE80222999D245', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/9E23CCACE78F6D57407DDD8878B8C2144E6CC775C8CC8D4806BE80222999D245', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/A9617497CC1AC77B54D6FE98A3412F3BDEEA189178F513B969658AB3A9A358BD', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9617497CC1AC77B54D6FE98A3412F3BDEEA189178F513B969658AB3A9A358BD', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/984C71F28AC1BE4E8D818CA66CECD7208616D25A4AC99780074ED346B92329E9', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/984C71F28AC1BE4E8D818CA66CECD7208616D25A4AC99780074ED346B92329E9', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/8FC22AC4417B45142373DA76FC4FC59AD4E08493C1CEA04F5CF2BE5CAEE7F2C0', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8FC22AC4417B45142373DA76FC4FC59AD4E08493C1CEA04F5CF2BE5CAEE7F2C0', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/9C47E3943643B9F9B60FE699832EC09F6A1EE113D140EE6BEDF8381D5CB53515', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C47E3943643B9F9B60FE699832EC09F6A1EE113D140EE6BEDF8381D5CB53515', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/22040E16543BD3C4A44DE608944B8823E5C893890F8A736896736195B205EBF5', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/22040E16543BD3C4A44DE608944B8823E5C893890F8A736896736195B205EBF5', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/3E83703D985D6EF99332CF86E79A65E4C8F856CFE7D74EBB606EF6D405762438', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/3E83703D985D6EF99332CF86E79A65E4C8F856CFE7D74EBB606EF6D405762438', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/448F9F5170C08F88D2ED1C6394D9EF08F16444EF6F08E6978DB82ABAEEAC199B', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/448F9F5170C08F88D2ED1C6394D9EF08F16444EF6F08E6978DB82ABAEEAC199B', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/C8E216C59344A5288BF0E5489DC76084736A3C396AB1DB3039C4E0026282B31A', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/C8E216C59344A5288BF0E5489DC76084736A3C396AB1DB3039C4E0026282B31A', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/FB2B636BC58823E03B61141B8358D2F2505530D708E9254B8042655947D4F774', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB2B636BC58823E03B61141B8358D2F2505530D708E9254B8042655947D4F774', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/6511CC20E9FAA95AFDFBBA8359442EDB6910E6AE842538FB078BB6EBC740F64B', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6511CC20E9FAA95AFDFBBA8359442EDB6910E6AE842538FB078BB6EBC740F64B', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/29025E8653042A0D5090D9179A3593208FDB1984C772CBA8B90C80E0650696E9', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29025E8653042A0D5090D9179A3593208FDB1984C772CBA8B90C80E0650696E9', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/F6F6CF3400D3392954448F04BE45666FDBCF439F462C7796A8BD489E0A411E0A', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6F6CF3400D3392954448F04BE45666FDBCF439F462C7796A8BD489E0A411E0A', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/4E798A14E81E318B8DE19859FFAA81B2DFEE58B47A82805748C29D7E062F6218', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4E798A14E81E318B8DE19859FFAA81B2DFEE58B47A82805748C29D7E062F6218', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/D288275376CA67229F260CBDCE5C8D996889987A40685B1112F56788B04D3488', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D288275376CA67229F260CBDCE5C8D996889987A40685B1112F56788B04D3488', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/E72C42550ACDD0E24BE48EB660F8F09F8FEC12F23692D8BF31BB9F67F26DCA60', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E72C42550ACDD0E24BE48EB660F8F09F8FEC12F23692D8BF31BB9F67F26DCA60', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/83C54E9E58122B40C483E4CA7889BB8CE168D4B88CBF46AEA94466B62A7951E6', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/83C54E9E58122B40C483E4CA7889BB8CE168D4B88CBF46AEA94466B62A7951E6', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/8EE22EF8D99ABF405B2E1FE3746263F6373B5A4062FFA90590F67AC10E4A4530', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8EE22EF8D99ABF405B2E1FE3746263F6373B5A4062FFA90590F67AC10E4A4530', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/73E5E6F833C5D4CFFDB411731DD8813D1E10AA7FEB319C427A35DC0B50F0A5A6', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/73E5E6F833C5D4CFFDB411731DD8813D1E10AA7FEB319C427A35DC0B50F0A5A6', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/0C4C1514001A38D72DFB716D77CD5F3AD20C95478780122FEE4BE7B8645D5828', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/0C4C1514001A38D72DFB716D77CD5F3AD20C95478780122FEE4BE7B8645D5828', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/FA3EBB828D88D91AC8CF3BAB1FAECDAB1C21916020291851E7AFEDD215EBA346', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/FA3EBB828D88D91AC8CF3BAB1FAECDAB1C21916020291851E7AFEDD215EBA346', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/7A6428206CBDE7B47F78A7A8CF4587CDCFD2B3BF06DD0352CEF678E88F1A501D', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7A6428206CBDE7B47F78A7A8CF4587CDCFD2B3BF06DD0352CEF678E88F1A501D', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/106DF673CFB54A8674DCB3FCCA7AE7DBF2A73E8E676752DC4891C97F10947338', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/106DF673CFB54A8674DCB3FCCA7AE7DBF2A73E8E676752DC4891C97F10947338', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/3AD5B09B0681A6AE10EE30DBF0DBA3250ED2EDF4287FC4C46013E0623F6C7CD0', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3AD5B09B0681A6AE10EE30DBF0DBA3250ED2EDF4287FC4C46013E0623F6C7CD0', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/AB24556335E872F30A84D57783387643399C61642E5E26B0330F7A6D4CAFE4F5', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AB24556335E872F30A84D57783387643399C61642E5E26B0330F7A6D4CAFE4F5', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/C43141A8F6E9CEDBFA89601B2BA910C9F58A628BF0FE67DEC8096FDCAE4214A8', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C43141A8F6E9CEDBFA89601B2BA910C9F58A628BF0FE67DEC8096FDCAE4214A8', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/8DB926E5A7B6631C3E952FCE6082F5527E96746415DD347A7737990338AE8BE7', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/8DB926E5A7B6631C3E952FCE6082F5527E96746415DD347A7737990338AE8BE7', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/22F44834C7D29138B0C62C4828C0298FB09450BDF1A2494FD35DF1505622F18D', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/22F44834C7D29138B0C62C4828C0298FB09450BDF1A2494FD35DF1505622F18D', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/EED337375E957B2E3C8675A33F5D430377594C859E93903077FAADBB530B00C8', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EED337375E957B2E3C8675A33F5D430377594C859E93903077FAADBB530B00C8', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/62231F8971DF8C87B4E56510DCA49C7407C031801971A37CCAA527C4442D63ED', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62231F8971DF8C87B4E56510DCA49C7407C031801971A37CCAA527C4442D63ED', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/83AD4CEC83F62C1418F54F0D000C08514E0F09A012BB38747F723EE4F2FA5640', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/83AD4CEC83F62C1418F54F0D000C08514E0F09A012BB38747F723EE4F2FA5640', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/A1752490658F35A1577949DC7FFC5D63F4A2F600E5042F91B3F00D7A72A355B5', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A1752490658F35A1577949DC7FFC5D63F4A2F600E5042F91B3F00D7A72A355B5', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/064DADC867DF6A15EE437D6B17584DD688CDBE9E3DD1B28C63070B74E5E71944', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/064DADC867DF6A15EE437D6B17584DD688CDBE9E3DD1B28C63070B74E5E71944', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/C50A1074819C257326AB683ED98A9A39DE8574F87319E478F894EAC2B19B4C58', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/C50A1074819C257326AB683ED98A9A39DE8574F87319E478F894EAC2B19B4C58', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/24CC85FA48AF27F07FB00FC2A08EE73C9EE16DD1A8C3A222375A9E3A7425D81A', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/24CC85FA48AF27F07FB00FC2A08EE73C9EE16DD1A8C3A222375A9E3A7425D81A', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/D43874D0F31CF9A58F40301ABC1ABD6B1EE3928F8223F854BF495D61908EC942', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D43874D0F31CF9A58F40301ABC1ABD6B1EE3928F8223F854BF495D61908EC942', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/F63C494B8936EB418C2C4B4FE7DA9D9A455ABD8E38113D377FB836AAFD26909A', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F63C494B8936EB418C2C4B4FE7DA9D9A455ABD8E38113D377FB836AAFD26909A', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/E9E47344C7D078D45372EF138E8609DE9C39FDE454E665F35F3CD990CE920C8C', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E9E47344C7D078D45372EF138E8609DE9C39FDE454E665F35F3CD990CE920C8C', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/EFEBA801AD827EB5D8C524342796F0713EBAD27C7F7800F040B8DD34C778870C', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFEBA801AD827EB5D8C524342796F0713EBAD27C7F7800F040B8DD34C778870C', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/00A6285B20010D443BA2DDF0203D29B4FC5E2582D670181BBCAC1583744BA13B', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/00A6285B20010D443BA2DDF0203D29B4FC5E2582D670181BBCAC1583744BA13B', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/0B9C892A582ABD9D948D224514CFCD9D13832F95E08F9F37CE76EEE89B61C9EB', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0B9C892A582ABD9D948D224514CFCD9D13832F95E08F9F37CE76EEE89B61C9EB', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/F8F31D0F01C301D0A9C075B79F1A3BEDBBA48F080C6F06D768E7A1D21FBA5E22', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/F8F31D0F01C301D0A9C075B79F1A3BEDBBA48F080C6F06D768E7A1D21FBA5E22', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/216D1863BD3BD82C18FC90DF20DB2F2105B5EA3009B0C13606F15FA91AFFFDBA', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/216D1863BD3BD82C18FC90DF20DB2F2105B5EA3009B0C13606F15FA91AFFFDBA', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/5BF01E8DF7D10DE632A27AC65DA8AB60F5A1FE7A548F554EDB1AC8E27F3FAEC7', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5BF01E8DF7D10DE632A27AC65DA8AB60F5A1FE7A548F554EDB1AC8E27F3FAEC7', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/F33D73E8A6FCEEF8825C2CE7034DF844E1D43242FEC51FE03422A25EB6A0C9D5', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F33D73E8A6FCEEF8825C2CE7034DF844E1D43242FEC51FE03422A25EB6A0C9D5', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/6C31DBBDB5BC133BFF5CC436E8B4A8F6311E06C9FE21612FFB9413528E0E302F', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C31DBBDB5BC133BFF5CC436E8B4A8F6311E06C9FE21612FFB9413528E0E302F', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/A2FAE707F2026CBF2B2C7E5FBACCB420F7B7548B4CD6B106EBE119174155DF03', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A2FAE707F2026CBF2B2C7E5FBACCB420F7B7548B4CD6B106EBE119174155DF03', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/4C9AB1A191F71079726CFE9DEB1541212E1F4F0A392003FF241597D5EC6326F1', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4C9AB1A191F71079726CFE9DEB1541212E1F4F0A392003FF241597D5EC6326F1', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/30D694C5D707233F36735273C998C896AECC765AF3BB43CAADDC9BD07BB09CBC', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30D694C5D707233F36735273C998C896AECC765AF3BB43CAADDC9BD07BB09CBC', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/76C119B89290360BEC0F5275D43C563958ACE22823C249C80660578BC7DE4965', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76C119B89290360BEC0F5275D43C563958ACE22823C249C80660578BC7DE4965', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/CDB21529B104D66BA2BBDBF79319A09483EC2F7A8BA4C040373DFB456B914BF2', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CDB21529B104D66BA2BBDBF79319A09483EC2F7A8BA4C040373DFB456B914BF2', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/81C56D9DCB635C5363379D6B3E617B855EC1D437D45153C744534A1B2A9F7B28', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/81C56D9DCB635C5363379D6B3E617B855EC1D437D45153C744534A1B2A9F7B28', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/7A06A8A636E2AC0DE06C6D638DCBBC434687A5846E2B5CA38FE8680B641D366D', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7A06A8A636E2AC0DE06C6D638DCBBC434687A5846E2B5CA38FE8680B641D366D', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/19A8EDFB5DDD861E3A16D066599BF29C262EE003377FE5A8DD528E7FAEE30FB6', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/19A8EDFB5DDD861E3A16D066599BF29C262EE003377FE5A8DD528E7FAEE30FB6', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/96E3007D364A8A23B391DA75EEB111492DDE85E95A01A5AFCDCA8BBC9C2483CC', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/96E3007D364A8A23B391DA75EEB111492DDE85E95A01A5AFCDCA8BBC9C2483CC', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/14614DAE0AA07826A3480314BCC7BAA6E6CFFC63A934583521077FA35423BCF3', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/14614DAE0AA07826A3480314BCC7BAA6E6CFFC63A934583521077FA35423BCF3', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/171B4F5B17E0DA923FB24C6B6BF356C4BAE510529098D18D81FCB1243373E51E', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/171B4F5B17E0DA923FB24C6B6BF356C4BAE510529098D18D81FCB1243373E51E', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/8BCCE28138180F7F7D7B9F3327DD97DE595A0DD66449FAA90D77EDC00D7F5B18', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BCCE28138180F7F7D7B9F3327DD97DE595A0DD66449FAA90D77EDC00D7F5B18', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/4075E573BB480BF9B61EFBF3820E1DC50EA6AE676F2119212B9E665D6CDE3094', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4075E573BB480BF9B61EFBF3820E1DC50EA6AE676F2119212B9E665D6CDE3094', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/1079935F1E1E046B66E461498119923DDC32E7AFCB6828E2736D5384552B8DAA', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1079935F1E1E046B66E461498119923DDC32E7AFCB6828E2736D5384552B8DAA', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/73E178692DD9B98F6DF928B2DD88F4FFFE3CCE4BC64EC9F2B599DCCE7EC83DFB', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/73E178692DD9B98F6DF928B2DD88F4FFFE3CCE4BC64EC9F2B599DCCE7EC83DFB', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/F5C682B9E1AEE4D496EDA093CC5D6D3987FC33ABDCAEA75AA59EC2ADE5761C24', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5C682B9E1AEE4D496EDA093CC5D6D3987FC33ABDCAEA75AA59EC2ADE5761C24', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/DF44EB468CE1AF2B1EA38134656C905959EA8533F10E5FF96476700F707E06F2', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DF44EB468CE1AF2B1EA38134656C905959EA8533F10E5FF96476700F707E06F2', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/F090AAD85063039F88CF80B9D866F3C22BFFEFA72D6192F718199B05560B1E3D', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F090AAD85063039F88CF80B9D866F3C22BFFEFA72D6192F718199B05560B1E3D', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/F2C20F6FD981F9D50CBFB614FB802E9914BCEFABBC9DDE5F47E9F41BEC07E6BC', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F2C20F6FD981F9D50CBFB614FB802E9914BCEFABBC9DDE5F47E9F41BEC07E6BC', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/8BC1A5D8DC754EE90568DB13D13E282D3F0BBB9B2708BC3F9F7632BC088337BD', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BC1A5D8DC754EE90568DB13D13E282D3F0BBB9B2708BC3F9F7632BC088337BD', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/DC5DCA7F3B6A126A44A9B8A61BB12EBE79D166E58183251545B74B2D70919481', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DC5DCA7F3B6A126A44A9B8A61BB12EBE79D166E58183251545B74B2D70919481', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/B35EFEE70C958DCD8D94457542716A3FABACCCC2C9441A3BA5CBDB7C9AE55DEC', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B35EFEE70C958DCD8D94457542716A3FABACCCC2C9441A3BA5CBDB7C9AE55DEC', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/09FF201F2B4C9577776688275816C4030ACDE61F9A8465FCC810259621F700F7', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09FF201F2B4C9577776688275816C4030ACDE61F9A8465FCC810259621F700F7', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/F5C7B698AE91E06541F6CD512D587638F2C6ABC7C474346FD0A34889B3C24841', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5C7B698AE91E06541F6CD512D587638F2C6ABC7C474346FD0A34889B3C24841', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/77A0411E8DF84F6A275F1E338AB57A4F47D125ED90F0A3FEDDF5F356E1FF4389', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/77A0411E8DF84F6A275F1E338AB57A4F47D125ED90F0A3FEDDF5F356E1FF4389', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/0A660D078FD76E30C23135BBE62C475502D76C996B271445F1DAD830B94EC25E', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0A660D078FD76E30C23135BBE62C475502D76C996B271445F1DAD830B94EC25E', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/EA9AF6CB40E50826EC6CD37714805BA77A4AC70C9C06F3049D91EA4814BFA84B', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EA9AF6CB40E50826EC6CD37714805BA77A4AC70C9C06F3049D91EA4814BFA84B', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/7DADDE195EB29C2479384C896DAF7543732D5991FF283F905F30C7FCA6AFAE7D', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7DADDE195EB29C2479384C896DAF7543732D5991FF283F905F30C7FCA6AFAE7D', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/61503E1AD4DE6E271E35857830F5D0AC6F78E77CFA7A1A3EC46B0F77D8B12308', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/61503E1AD4DE6E271E35857830F5D0AC6F78E77CFA7A1A3EC46B0F77D8B12308', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/2CCE060BA08D0E41EC234A58C9878F0689E23927E33F5025B0B543B54ADE2BA5', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2CCE060BA08D0E41EC234A58C9878F0689E23927E33F5025B0B543B54ADE2BA5', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/38B29F6563DDADC81C9399EB5CDF140492CC2C58FB70048BC4430567A26ED193', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38B29F6563DDADC81C9399EB5CDF140492CC2C58FB70048BC4430567A26ED193', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/74B0BDD3C0941166F5E96BFBC847219BBE609535F3A0D941C22342A60BD43A08', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/74B0BDD3C0941166F5E96BFBC847219BBE609535F3A0D941C22342A60BD43A08', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9EC903850D6BD5CB2AAAC2012FC6A2AFE084998A69A791495596B5C1A02D6F23', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9EC903850D6BD5CB2AAAC2012FC6A2AFE084998A69A791495596B5C1A02D6F23', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/3ADD67F89E78DE5009961330F1327DB6DC88165BBD6882D88623C142621FA82A', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3ADD67F89E78DE5009961330F1327DB6DC88165BBD6882D88623C142621FA82A', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/81B937923DB3D0413F5B44CDEECB251E59E32D26D5377E0DE9A3727766AB8567', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/81B937923DB3D0413F5B44CDEECB251E59E32D26D5377E0DE9A3727766AB8567', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/D9C8D7AC0DF7199BEFAE84305B070B1EC38F8AF3DA983444318CE850468C5489', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D9C8D7AC0DF7199BEFAE84305B070B1EC38F8AF3DA983444318CE850468C5489', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/D957263097D25225C4D91A70845C10EAC51E7B537522AEC08687D23B306F4F7B', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D957263097D25225C4D91A70845C10EAC51E7B537522AEC08687D23B306F4F7B', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/EFF2A9F8FB4ADC6E384041D00C10403FEEC6E0534C717807DF6B43736E25F577', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFF2A9F8FB4ADC6E384041D00C10403FEEC6E0534C717807DF6B43736E25F577', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B3D5CE13787F37533CF7A87D95BBF62F3D027815304A6CC7B6EA7030BD9709B7', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B3D5CE13787F37533CF7A87D95BBF62F3D027815304A6CC7B6EA7030BD9709B7', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9E58E47857A51FFB728EDB7DD54CDFC2AB5E8FF358B9B010BF0A92AB18930BEA', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9E58E47857A51FFB728EDB7DD54CDFC2AB5E8FF358B9B010BF0A92AB18930BEA', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/18CD772EE2D231E26DA049B70A73BA674C8A35D991E52E3AC1F5451BFEC4AF40', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/18CD772EE2D231E26DA049B70A73BA674C8A35D991E52E3AC1F5451BFEC4AF40', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/1B60E4060369045D198CD73F74DE6F7E1AD608C5FB6709C1D2B6F28D88BF4891', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1B60E4060369045D198CD73F74DE6F7E1AD608C5FB6709C1D2B6F28D88BF4891', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/CC35C0E6612E2A3568DC4C2A75F933751564AEA45B8CE5C23F08777D3E773D1B', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC35C0E6612E2A3568DC4C2A75F933751564AEA45B8CE5C23F08777D3E773D1B', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/9481CBCEFA8486819A66152E02A2653680978947A495FA489DFFD5603A8D7595', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/9481CBCEFA8486819A66152E02A2653680978947A495FA489DFFD5603A8D7595', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/CD1F9CEE1189E4E7B2FB1F2B83211B9E49C1DE591B998D3D0DA680A1018EB80D', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CD1F9CEE1189E4E7B2FB1F2B83211B9E49C1DE591B998D3D0DA680A1018EB80D', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/E4515B969CFD2DD84ED80C3DC834261D478B8ADA6C157249003998483B6943C6', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4515B969CFD2DD84ED80C3DC834261D478B8ADA6C157249003998483B6943C6', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/1DCA7A1A3F61552E4A0932AF9EF9EC967CF67406B4E206645E4F94AF44873EB1', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DCA7A1A3F61552E4A0932AF9EF9EC967CF67406B4E206645E4F94AF44873EB1', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/3F0A0C7EBDEE61C9652B8A6154D27F62483F7E60813A3ADE87D61BE751A138EF', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/3F0A0C7EBDEE61C9652B8A6154D27F62483F7E60813A3ADE87D61BE751A138EF', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/50A08F06A48FAEBF6428ED99022E3097A2CB1CB2018168D325CA25297E9860CC', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/50A08F06A48FAEBF6428ED99022E3097A2CB1CB2018168D325CA25297E9860CC', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/57D9A0BFC996E8B8EE05E4092C043F1AF92621B5B33FE1AE734252E0FFC2AE84', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57D9A0BFC996E8B8EE05E4092C043F1AF92621B5B33FE1AE734252E0FFC2AE84', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/09CE9524B2ED24958C48673EDB155D72E2F55A9A2C72127489AE359DEC82D102', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09CE9524B2ED24958C48673EDB155D72E2F55A9A2C72127489AE359DEC82D102', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/B404E805113599D269F95F1C209FA6C4EA6C0739FFF7D475108ECA4A67554748', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B404E805113599D269F95F1C209FA6C4EA6C0739FFF7D475108ECA4A67554748', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/E6D1EFD44586EFA378320D33FB45DE923941DF524065BA936FE121BED32E8CF1', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E6D1EFD44586EFA378320D33FB45DE923941DF524065BA936FE121BED32E8CF1', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/ECA2D2209BD5EA3FF7D25F25BDC5BBB50A0956713279636FF1959C6E9CBEF7CF', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECA2D2209BD5EA3FF7D25F25BDC5BBB50A0956713279636FF1959C6E9CBEF7CF', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/3B48D03641E4522A761584D994A1FFB047F0B3317EE80AB82B0E9C5B78D89947', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3B48D03641E4522A761584D994A1FFB047F0B3317EE80AB82B0E9C5B78D89947', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/FB2C72C4D53AF7375223625ADC4DAD7DEC280F4DBFD3E2E44A140DB7D9DC1F07', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB2C72C4D53AF7375223625ADC4DAD7DEC280F4DBFD3E2E44A140DB7D9DC1F07', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/CE084E848EE293441496973583E2BF14D61A208CCEA33BE204332BE12DC42110', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE084E848EE293441496973583E2BF14D61A208CCEA33BE204332BE12DC42110', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/F27FD8847ED7B19D67F586E9C81B9F562732AEFEB4FE73F4317D60D0D12132B4', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F27FD8847ED7B19D67F586E9C81B9F562732AEFEB4FE73F4317D60D0D12132B4', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/700863F83F00B418CF178ABA52ECBCDB2FB2E63CD1B53F55F20FE4C256922F0E', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/700863F83F00B418CF178ABA52ECBCDB2FB2E63CD1B53F55F20FE4C256922F0E', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/645C92C91742A3D0B1DBBACA4083AE89EEA833F90A7031CDB549ACD0996ED358', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/645C92C91742A3D0B1DBBACA4083AE89EEA833F90A7031CDB549ACD0996ED358', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/B38CBC5B312E7A4ECE74183FCDD53BE5643264063D10AAABD44B2E7B531A294F', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/B38CBC5B312E7A4ECE74183FCDD53BE5643264063D10AAABD44B2E7B531A294F', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/337AF21DD5D4596D335F2365BB1A8EE3D5DA591796E489C2305527AB350E95D3', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/337AF21DD5D4596D335F2365BB1A8EE3D5DA591796E489C2305527AB350E95D3', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/089840DAB65415404C744F09D674E2C0EC88AE3C03F60ED61C963AE2B9273C60', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/089840DAB65415404C744F09D674E2C0EC88AE3C03F60ED61C963AE2B9273C60', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/22D2E699211C72D735BB0720C11BB563602BD42251AD55729FF46501ECC63101', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/22D2E699211C72D735BB0720C11BB563602BD42251AD55729FF46501ECC63101', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/C5A6B499ED07C0960F351511061C261F6BFAB6EBDFF7F92F9C1B7B78615A1AD4', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C5A6B499ED07C0960F351511061C261F6BFAB6EBDFF7F92F9C1B7B78615A1AD4', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/9102B73AB24C6B7DFEDA59AE3C65C308F3E7205CA89830CDE0079C1E4497AA4E', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9102B73AB24C6B7DFEDA59AE3C65C308F3E7205CA89830CDE0079C1E4497AA4E', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/70D9646588FC4C0A82B29E44107D23D3E1AEE6385BF6207B39C6ED560EA5E1CE', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/70D9646588FC4C0A82B29E44107D23D3E1AEE6385BF6207B39C6ED560EA5E1CE', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/93ABF66E09207040EC1A574F5561853DE5530DEDBDC903953EEDC987F9F02591', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/93ABF66E09207040EC1A574F5561853DE5530DEDBDC903953EEDC987F9F02591', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/BF2AD03674045A1F1AA3B1456C60D52AFA141B5C097EF45BBE5C2139FD2ED701', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF2AD03674045A1F1AA3B1456C60D52AFA141B5C097EF45BBE5C2139FD2ED701', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/524D1BD0F934193640C694FE47CE4A817EF342B774E6E4BB30B3E3A9DBAD2790', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/524D1BD0F934193640C694FE47CE4A817EF342B774E6E4BB30B3E3A9DBAD2790', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/F018FA30AADFFBA09E5B7534DD3F7C1CD94091552E907741A65D98CAD941202D', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F018FA30AADFFBA09E5B7534DD3F7C1CD94091552E907741A65D98CAD941202D', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/C65036C67CDB17BBEF6DE0E0A5B8DF7E79799766EB8A3BB3AC96981A6CC22CDD', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C65036C67CDB17BBEF6DE0E0A5B8DF7E79799766EB8A3BB3AC96981A6CC22CDD', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C50A0C7F7B66DE2A0646F0AE33AF97C6E3A7F6AEBDF02139E25B964241ACDAC5', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C50A0C7F7B66DE2A0646F0AE33AF97C6E3A7F6AEBDF02139E25B964241ACDAC5', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BCBAC8643C4F9F32C579783CC06C26D9EA2BBA8BA61FDDCD8353900A14373A48', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BCBAC8643C4F9F32C579783CC06C26D9EA2BBA8BA61FDDCD8353900A14373A48', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/57D61C7ADD13CA5D92A52AB82C6A7F8AC528FBAD6DCB59E42627153E1636A2EF', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57D61C7ADD13CA5D92A52AB82C6A7F8AC528FBAD6DCB59E42627153E1636A2EF', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/92540469D61D91C858A301E1AA69561E0214206E1810A05C1DF3094451ABCBEA', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92540469D61D91C858A301E1AA69561E0214206E1810A05C1DF3094451ABCBEA', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/B503253D24ADBC5A9508AF47CAD6E912A856CB11B09279252ABBC2DD2C210E04', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B503253D24ADBC5A9508AF47CAD6E912A856CB11B09279252ABBC2DD2C210E04', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/8CB5A08BCDC4AE6738AFBFC3AD1A35D673F7A67E105B7A0E9DD668E40A47A0B5', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8CB5A08BCDC4AE6738AFBFC3AD1A35D673F7A67E105B7A0E9DD668E40A47A0B5', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/F9F40CB526C1B8EECE538F5F9A920153B6C5B31655E020ED35EC0FA646918F2B', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/F9F40CB526C1B8EECE538F5F9A920153B6C5B31655E020ED35EC0FA646918F2B', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/0C2D0BAF7C6F6F312A9010203494E8AA89585E89E9F3EE3417F2A5AC276774FC', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0C2D0BAF7C6F6F312A9010203494E8AA89585E89E9F3EE3417F2A5AC276774FC', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/21899A4BFC610CDF2F4C02EA125992E878DA50AA3443666022EBC28CCF079425', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/21899A4BFC610CDF2F4C02EA125992E878DA50AA3443666022EBC28CCF079425', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/9BCAFB4930A8AE44F1BAB2F2D9AC8DC14797C67E79D024169CF736818752044F', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BCAFB4930A8AE44F1BAB2F2D9AC8DC14797C67E79D024169CF736818752044F', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/2C4D40662C62AB77A5D5C05229E57B15B2BAD8F9699AF9874F09DABD4B86DC23', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/2C4D40662C62AB77A5D5C05229E57B15B2BAD8F9699AF9874F09DABD4B86DC23', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/5BAA588DBAC6E9BF751A0BD8278DCA9B1E26D02B4C6FE436D55E8847BD207554', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5BAA588DBAC6E9BF751A0BD8278DCA9B1E26D02B4C6FE436D55E8847BD207554', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/CC37248F74915D5B30B8C02F38147DA22680F0F462C9C5CBC434F535FF8E542F', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC37248F74915D5B30B8C02F38147DA22680F0F462C9C5CBC434F535FF8E542F', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/2A11182234F42FF340F0AE3A50AEFF1A2F7DACF2383F623215F4F497FE59521C', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2A11182234F42FF340F0AE3A50AEFF1A2F7DACF2383F623215F4F497FE59521C', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/95A003804B0BD4DED1251D4D76D7823D08ED19FA12910B7F2A8D604C7B2244BA', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/95A003804B0BD4DED1251D4D76D7823D08ED19FA12910B7F2A8D604C7B2244BA', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/3202E4FFC4C608CFB2C5824573D5838139F993EA81E70811287599013AC095F0', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3202E4FFC4C608CFB2C5824573D5838139F993EA81E70811287599013AC095F0', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/D17CA03604F1FBB6DCB3368499AE872775E0DFBFE1E8944424F41A133123A4A8', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D17CA03604F1FBB6DCB3368499AE872775E0DFBFE1E8944424F41A133123A4A8', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/BD5F5C2F76E51780E33B00759AC1749A164161284FBB8A9343B8554F6761C9E2', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD5F5C2F76E51780E33B00759AC1749A164161284FBB8A9343B8554F6761C9E2', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/CF46406B0154376911D750DBBDA2AD48EF16CBD7C3E093CF705CBB3109AAB54E', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CF46406B0154376911D750DBBDA2AD48EF16CBD7C3E093CF705CBB3109AAB54E', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/BA0EB0193F1F17D8C54F1F481E655C93332E088DC3CE5359EC5156852C8F3D9A', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BA0EB0193F1F17D8C54F1F481E655C93332E088DC3CE5359EC5156852C8F3D9A', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/ACCFC1299624B5DE70955E611E7521E8003D92FFFBB11A6AB96B6851776B7308', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ACCFC1299624B5DE70955E611E7521E8003D92FFFBB11A6AB96B6851776B7308', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/6C9211591D2E961FFE2FDF4359D67EBDE4D4804AD5935C757BDE9F837497D4F3', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C9211591D2E961FFE2FDF4359D67EBDE4D4804AD5935C757BDE9F837497D4F3', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/C61F95A2511E83E71CA4C7AA4855B19CE9E5238CF4260545310D8037B978FCFB', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C61F95A2511E83E71CA4C7AA4855B19CE9E5238CF4260545310D8037B978FCFB', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/46F93D1A8AEE06E1CE6494BE8B0D99E6D93F7AB032B3AE8AFE03C94C42719FCC', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/46F93D1A8AEE06E1CE6494BE8B0D99E6D93F7AB032B3AE8AFE03C94C42719FCC', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/ECEBBD080442596B81525D3EC51ECE6D089139E53D27B57B1A78B8E4E0ECC3C5', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECEBBD080442596B81525D3EC51ECE6D089139E53D27B57B1A78B8E4E0ECC3C5', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/D98B4CC75174B30EC0D72CDCDAE96AB629389C9D28252F6B0132C84326FD5197', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D98B4CC75174B30EC0D72CDCDAE96AB629389C9D28252F6B0132C84326FD5197', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/CC743F3F531B88E3E18AA500BF8D83BD9993C7F12C75029113BD66A5917E946D', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC743F3F531B88E3E18AA500BF8D83BD9993C7F12C75029113BD66A5917E946D', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/15A266392B2259187C3C91556D306FAC8689B23757CC8AED1D016C9B115070FA', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/15A266392B2259187C3C91556D306FAC8689B23757CC8AED1D016C9B115070FA', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/2AC9BA7B3A2D92E1F0811B0711662184EC3430FD540C1FEEFAE457C55CB95DE6', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2AC9BA7B3A2D92E1F0811B0711662184EC3430FD540C1FEEFAE457C55CB95DE6', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/91C6E3A3F195113F236722DEC4684676EEF5774A85F0D7330306D6E5DC1738C7', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/91C6E3A3F195113F236722DEC4684676EEF5774A85F0D7330306D6E5DC1738C7', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/495ED74F3ED191F8D627006BBCFCAF91730B42258C4AFD7E503A0FB27EE9B00C', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/495ED74F3ED191F8D627006BBCFCAF91730B42258C4AFD7E503A0FB27EE9B00C', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/C8D2B3EE443D0E3D221EE9FA58698441451FA2310B4FD8356CF3620971574AFB', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C8D2B3EE443D0E3D221EE9FA58698441451FA2310B4FD8356CF3620971574AFB', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/0332151F630C31DEDD6A9DBE287D73CE710DE69B8674F397F480FE6A218F9F72', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0332151F630C31DEDD6A9DBE287D73CE710DE69B8674F397F480FE6A218F9F72', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/6B5EEBFA0FF8355F4FECEA9D06C4AFE2619977BFA3E0EB65B32DCD6505EEAF1E', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/6B5EEBFA0FF8355F4FECEA9D06C4AFE2619977BFA3E0EB65B32DCD6505EEAF1E', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/2E6C9FA4B5F49763CE55BE9594E57A07CD48051E7D7B2D7AB433C39A0B0F67DC', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/2E6C9FA4B5F49763CE55BE9594E57A07CD48051E7D7B2D7AB433C39A0B0F67DC', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/F52AD13F76073B16590A47E89B698ED1D71E8B98336B6C448547D9C035468E5A', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F52AD13F76073B16590A47E89B698ED1D71E8B98336B6C448547D9C035468E5A', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/7D67EC49F4B27B99DC0856B7DA74D55870B1CEDE925F0D4B77678B81BA6E3FE0', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7D67EC49F4B27B99DC0856B7DA74D55870B1CEDE925F0D4B77678B81BA6E3FE0', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/53515CCF66EB3C8F4B32B7BC0E4E439234B73D9150AD253CD68B62F33D3E192E', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/53515CCF66EB3C8F4B32B7BC0E4E439234B73D9150AD253CD68B62F33D3E192E', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/A90CA5F2C706D5E0BEBF17A590E73B7868899BCDA5082C7832B6D5BB116561AB', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A90CA5F2C706D5E0BEBF17A590E73B7868899BCDA5082C7832B6D5BB116561AB', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/25E3F4703B0BC7BD8EF83338F83DA6617D162FE5130D9D9DAE0AF20AC5EA7F95', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/25E3F4703B0BC7BD8EF83338F83DA6617D162FE5130D9D9DAE0AF20AC5EA7F95', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/45FFBE290C088F201038C6858D6E3BF94025C99963467E7A763D3E3FC21FB5E0', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/45FFBE290C088F201038C6858D6E3BF94025C99963467E7A763D3E3FC21FB5E0', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/CD22C0DF73C38EE4C12F7958C6137C339362520FA5A2FEB106F0F21936B08171', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CD22C0DF73C38EE4C12F7958C6137C339362520FA5A2FEB106F0F21936B08171', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9A2FA00E02FBB3843FFD478043F351D817146CE4FAA556FCBC4134806F33DCB1', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9A2FA00E02FBB3843FFD478043F351D817146CE4FAA556FCBC4134806F33DCB1', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/5F82D57CEF1E43C2FB33481A6732FAEDA525A8D34AD6101F869799C9F92FB9A8', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F82D57CEF1E43C2FB33481A6732FAEDA525A8D34AD6101F869799C9F92FB9A8', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/1AC428BDB51BD1E34979FB2A1DEB9DC3DD1CCC6DE3D88D4D3E89A361EDDD3CC9', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1AC428BDB51BD1E34979FB2A1DEB9DC3DD1CCC6DE3D88D4D3E89A361EDDD3CC9', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/912BEC87E7CF0E160EE30B12F673BF47B652F47C6941000198BFE15C90C5A4E7', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/912BEC87E7CF0E160EE30B12F673BF47B652F47C6941000198BFE15C90C5A4E7', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/F722502EC90B3084DBD73589FC055E658EF9972A19ADDE61D3AA8BBF39B63883', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F722502EC90B3084DBD73589FC055E658EF9972A19ADDE61D3AA8BBF39B63883', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/E4B8C5B13B867E8E7EDD4DDFFC400CFF6D52FC1531AFE9B10343123CDE4ADB32', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4B8C5B13B867E8E7EDD4DDFFC400CFF6D52FC1531AFE9B10343123CDE4ADB32', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/7F22DC8C8982397A85B5F6E6BC328F7661519C9BE7A94592D69383A3F5D96D36', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F22DC8C8982397A85B5F6E6BC328F7661519C9BE7A94592D69383A3F5D96D36', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/C9CB30630ED403FC0D1773D4FA962331130D3DC6DAE2DF4900173B8366F4C725', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C9CB30630ED403FC0D1773D4FA962331130D3DC6DAE2DF4900173B8366F4C725', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/B2237C25865210084754C062706A3F2011E523C0C9DA43E222E0D5B8042B9541', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B2237C25865210084754C062706A3F2011E523C0C9DA43E222E0D5B8042B9541', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/81B7A23CF28714762A0EE9DA7C75D1D770F53CD4C75B82D9D07E626E731704DC', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/81B7A23CF28714762A0EE9DA7C75D1D770F53CD4C75B82D9D07E626E731704DC', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/58EC2414D627A2E406AF879FFB5FFE3504B87CF818E8B80EE30E41F23DB3CF14', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/58EC2414D627A2E406AF879FFB5FFE3504B87CF818E8B80EE30E41F23DB3CF14', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/5342070BF68732B9BEF1523DE9CDDC66890C40C0F1331AD16B4E7FA9412105B3', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/5342070BF68732B9BEF1523DE9CDDC66890C40C0F1331AD16B4E7FA9412105B3', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/74C6A071817288DE90F3FC2555B4C18816F327437EB0E825F05A6E3C62DAA2A6', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/74C6A071817288DE90F3FC2555B4C18816F327437EB0E825F05A6E3C62DAA2A6', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/80E17C2B2D0CE80BD4831B4E4E31F204A763EA045B8A4DB7EAA78637D3A1D13A', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/80E17C2B2D0CE80BD4831B4E4E31F204A763EA045B8A4DB7EAA78637D3A1D13A', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/635FEB0AB5A255B2BF417C95F40C529ADB716F6B291F98922869FB27A5C9A415', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/635FEB0AB5A255B2BF417C95F40C529ADB716F6B291F98922869FB27A5C9A415', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/E09053331EE6E980C09D841744CCD6D3150AE578BF86836A2255BB7EBF0F5F8D', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E09053331EE6E980C09D841744CCD6D3150AE578BF86836A2255BB7EBF0F5F8D', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/FDE4C3D32178E16022C1FADB9139FDDD204C8E8BF48D854735AEBC0FF3B251A4', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FDE4C3D32178E16022C1FADB9139FDDD204C8E8BF48D854735AEBC0FF3B251A4', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/C3131D228C3163DFD9068B14B920F10A4D37BE10E76CDC6C847B80AA83E40D40', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C3131D228C3163DFD9068B14B920F10A4D37BE10E76CDC6C847B80AA83E40D40', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/E0687047EA2BDEFC10A211E27502C2A78441684F624B41FD2FCFDEFDFB5AA569', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/E0687047EA2BDEFC10A211E27502C2A78441684F624B41FD2FCFDEFDFB5AA569', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/395ED4160BADDC277C5F4B62EADC1E918AF1A12ADB5B1494BEAD22514CF77171', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/395ED4160BADDC277C5F4B62EADC1E918AF1A12ADB5B1494BEAD22514CF77171', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/C15EB1B52CD0052BBE08929F9D735B4513957A5948918A8B39C2CF614281C474', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/C15EB1B52CD0052BBE08929F9D735B4513957A5948918A8B39C2CF614281C474', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/6E9637A7295EE3690456BC0212A092F169770F1D81C8D7756D9F17CD2FB615BF', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6E9637A7295EE3690456BC0212A092F169770F1D81C8D7756D9F17CD2FB615BF', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/8886AFBD1D42A03190FA8F74ABA19EAEA69DB56CE9D4F4EDBFF625DAD4EF02EC', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8886AFBD1D42A03190FA8F74ABA19EAEA69DB56CE9D4F4EDBFF625DAD4EF02EC', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/7946458E49830F854E3A6D144DF47532B92021310D0DDC45BF8B568CFDC4438A', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/7946458E49830F854E3A6D144DF47532B92021310D0DDC45BF8B568CFDC4438A', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/344A58150E329F4FF51C3C38F5528BE1A1595FB68CF818011FA1C0585E095861', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/344A58150E329F4FF51C3C38F5528BE1A1595FB68CF818011FA1C0585E095861', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/B94A65FAD6163CD47606C4BB08C696CBA6153357023B2D557933960CA149CBF0', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B94A65FAD6163CD47606C4BB08C696CBA6153357023B2D557933960CA149CBF0', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/9437BB40523C5AFD1413A1D8DEA5855EEC6E4CFE14D1DCA63341BED06BA7CD8B', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9437BB40523C5AFD1413A1D8DEA5855EEC6E4CFE14D1DCA63341BED06BA7CD8B', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/6AC8E17C1903E60B72A2B6E0697952B5A043B7AF982D71BC8FC5D5885E6712A4', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6AC8E17C1903E60B72A2B6E0697952B5A043B7AF982D71BC8FC5D5885E6712A4', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/7804DC642450E24E1A03E3695A4E6652554BFE158CDE940EDDDAD7AF7580E115', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7804DC642450E24E1A03E3695A4E6652554BFE158CDE940EDDDAD7AF7580E115', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F13514F4B347A6035E85DD565887264D2919DFB558AB303FB495592E9B8ECF33', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F13514F4B347A6035E85DD565887264D2919DFB558AB303FB495592E9B8ECF33', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/E5B0D89429F2683BD3772DC55F76C01F37EB39A3476BC4908E6C2CC4AFF0DA2F', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/E5B0D89429F2683BD3772DC55F76C01F37EB39A3476BC4908E6C2CC4AFF0DA2F', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/8109C160C0A11D72ECFE82967D90193B237D6563AAFB817C82C33F18BF39E4E3', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8109C160C0A11D72ECFE82967D90193B237D6563AAFB817C82C33F18BF39E4E3', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/6B199312B29CF047BF8B1337450EF3AA0475FE0C312DB94055F2D5B22CD1E71A', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6B199312B29CF047BF8B1337450EF3AA0475FE0C312DB94055F2D5B22CD1E71A', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/03B109DEE70C41E7D69206D670E3839BFB72891FF2FB5D7D980703953CB8E62B', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/03B109DEE70C41E7D69206D670E3839BFB72891FF2FB5D7D980703953CB8E62B', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/6622E30A321549B623A4ACCC4A599A38655F1AFEB4FA96ED6588C1BACA300C4B', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6622E30A321549B623A4ACCC4A599A38655F1AFEB4FA96ED6588C1BACA300C4B', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/D38D7BCB848EFB3804045D33FCD776867C62317FB6FF94D21A1FCC1834B3821A', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D38D7BCB848EFB3804045D33FCD776867C62317FB6FF94D21A1FCC1834B3821A', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/593518DCBEDF6A57C205903B307840B0563C9D7223B3B9F818704557494EB5B4', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/593518DCBEDF6A57C205903B307840B0563C9D7223B3B9F818704557494EB5B4', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/7B004B11E2CCC9EE7A126F0260AA90BDE9ACAC99EF89AC3F739685D6A310F9E7', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7B004B11E2CCC9EE7A126F0260AA90BDE9ACAC99EF89AC3F739685D6A310F9E7', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/CC0A5E28C584A93AB762E71DD3D5991928637042AC3E900EE94E19E46CBFE935', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/CC0A5E28C584A93AB762E71DD3D5991928637042AC3E900EE94E19E46CBFE935', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/99DA220AB0370777C45F543B5F3236992D6C402C7706660A778FE527742D4496', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/99DA220AB0370777C45F543B5F3236992D6C402C7706660A778FE527742D4496', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/E51EF0215942396CCD7F4DFAB01FB41041668E8ED9E8B39DA9B67B34796DC457', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E51EF0215942396CCD7F4DFAB01FB41041668E8ED9E8B39DA9B67B34796DC457', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/0B657A64E07FC0903D71FF24B534F699C68301FEEEF4D5A52923F8870AB695A7', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0B657A64E07FC0903D71FF24B534F699C68301FEEEF4D5A52923F8870AB695A7', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/DF2B8FA4EF3AEFC02D5520A4E886BA3D12B489011A8AC959926B27FC0D34675D', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DF2B8FA4EF3AEFC02D5520A4E886BA3D12B489011A8AC959926B27FC0D34675D', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/48920E8BB6BCA489B4DDC1CCA9694BC2A25F08F90D8E5F77A26AF94C1226E19E', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/48920E8BB6BCA489B4DDC1CCA9694BC2A25F08F90D8E5F77A26AF94C1226E19E', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/084A447714B57EDF8249627EDA6907A27A9C758133B4F47AA83A775FE1DDEF4E', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/084A447714B57EDF8249627EDA6907A27A9C758133B4F47AA83A775FE1DDEF4E', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/EB7702F7862428669576938CD8DD19FBF39F6516F1F94A1B02AC8CBAFF06858B', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB7702F7862428669576938CD8DD19FBF39F6516F1F94A1B02AC8CBAFF06858B', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/A6FAB4141ECE6F85BAAC00989FDF7F96409673735B845DE730645EC67335E1C0', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A6FAB4141ECE6F85BAAC00989FDF7F96409673735B845DE730645EC67335E1C0', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/8D8187CD0222C85079ECFEE0A7A6279AD5C98980791A17BEBB5A78778B1204B6', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8D8187CD0222C85079ECFEE0A7A6279AD5C98980791A17BEBB5A78778B1204B6', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/D5CDA64730157DB9928A8E3CEEA19526A94F933443503A90D375394CA173F829', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/D5CDA64730157DB9928A8E3CEEA19526A94F933443503A90D375394CA173F829', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/8349192BE84F63ECBCDE2E0195DAC22453C9AAC740971FE95D382CA8075E6A1C', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8349192BE84F63ECBCDE2E0195DAC22453C9AAC740971FE95D382CA8075E6A1C', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/0F23E0D7F6595F6BBE43DF8007E1AD07126111DF9166768CA9AA359E46E71D4A', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F23E0D7F6595F6BBE43DF8007E1AD07126111DF9166768CA9AA359E46E71D4A', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/01AF5CB6E8BD5C19438398865170AD47D4B22DC751D618BE07F7DC4302D3022A', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/01AF5CB6E8BD5C19438398865170AD47D4B22DC751D618BE07F7DC4302D3022A', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/05EC9470C5B94B93DAEFC52C28D87B2BEFD99A5FB3B6ABC5E1AAF7396590E84F', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/05EC9470C5B94B93DAEFC52C28D87B2BEFD99A5FB3B6ABC5E1AAF7396590E84F', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/8ACFBDDF77DA174672D246AA2083FC83067F2FB669D9F6BB00632A3F635EBAF9', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/8ACFBDDF77DA174672D246AA2083FC83067F2FB669D9F6BB00632A3F635EBAF9', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/EA3D1D169CAF4C6A1B813D41337614C5785DD018514333C301B92B981A46CE02', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EA3D1D169CAF4C6A1B813D41337614C5785DD018514333C301B92B981A46CE02', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/EDA8ACB9E26D83C1C2BDDB21F2681310B2CAF26B9139561DC00475B1A24CC56F', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EDA8ACB9E26D83C1C2BDDB21F2681310B2CAF26B9139561DC00475B1A24CC56F', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/80D18976505E22590ABD29209A1B033C7212E952540C884EB5B2CA0F324ADC70', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/80D18976505E22590ABD29209A1B033C7212E952540C884EB5B2CA0F324ADC70', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/DCDB44CB1441F2DB392518373C8D8E2B5A1EEB128913C0EF37D6A6C8C91FAC24', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/DCDB44CB1441F2DB392518373C8D8E2B5A1EEB128913C0EF37D6A6C8C91FAC24', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/CD803A46DD63A5A03C1D67067A1712DF73B4802D9D7217978EBA39D31E110C93', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/CD803A46DD63A5A03C1D67067A1712DF73B4802D9D7217978EBA39D31E110C93', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/95D36DAAB98DD33062E6CA6C88F113FD14EB835CC75FCAFFB1CD609DCC9CB973', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/95D36DAAB98DD33062E6CA6C88F113FD14EB835CC75FCAFFB1CD609DCC9CB973', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/A77CC2CB874719F10F3E8974D7D51EC85F912536127EA2009E8276FCD75B8527', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A77CC2CB874719F10F3E8974D7D51EC85F912536127EA2009E8276FCD75B8527', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/8C8B8DB27CF99925C7624A7CB3247055F3C5B59DF466B9B30E441290F0F705D7', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/8C8B8DB27CF99925C7624A7CB3247055F3C5B59DF466B9B30E441290F0F705D7', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/814F2057808DF5C7C9F9E1A513D9E6669061FF1B010CED198B3352EBA29EFBF6', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/814F2057808DF5C7C9F9E1A513D9E6669061FF1B010CED198B3352EBA29EFBF6', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/2C24C5273CD0993300F11D951366CC0E7475381A767BE65F7080BB71D96984E9', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2C24C5273CD0993300F11D951366CC0E7475381A767BE65F7080BB71D96984E9', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/9C4A76F830BA0BE71F6E1B6211D7C1121BFE47CBD22B987371155BA3FC9F90CA', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C4A76F830BA0BE71F6E1B6211D7C1121BFE47CBD22B987371155BA3FC9F90CA', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/146C6E316BDB144EE6685FE033E8DF78152B227631B9EB46C017D9D6F9AF7313', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/146C6E316BDB144EE6685FE033E8DF78152B227631B9EB46C017D9D6F9AF7313', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/9EECD783C840991747E7C7A7943EF2359A7DC77C04BCAA4C4513912AA1E5FB2D', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9EECD783C840991747E7C7A7943EF2359A7DC77C04BCAA4C4513912AA1E5FB2D', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/191EFA49A0B7821EB7E4CA9C7312042A388D86A399D9D4DC4571D334B7F4D60D', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/191EFA49A0B7821EB7E4CA9C7312042A388D86A399D9D4DC4571D334B7F4D60D', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/5DA318CF6962D9859AA9997DBAD5EFFCF1C6B760ACE9166EFD19FF82F88467DE', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5DA318CF6962D9859AA9997DBAD5EFFCF1C6B760ACE9166EFD19FF82F88467DE', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/EB87F22692D3AFC92F6062F57E020FFCFB6399BEFF09329E839FBEAF0EE1942E', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB87F22692D3AFC92F6062F57E020FFCFB6399BEFF09329E839FBEAF0EE1942E', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/F19FBC3B7778956A625EA893CD19816E113BFD84221281A2AF3737B33FEFD476', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/F19FBC3B7778956A625EA893CD19816E113BFD84221281A2AF3737B33FEFD476', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/AF48CCD843B6F2AA8E9132D9623272AF02D7AFDF4946E90618A2534179CE91C0', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AF48CCD843B6F2AA8E9132D9623272AF02D7AFDF4946E90618A2534179CE91C0', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/1AB579FDAA05FA60F8EEE0B06E5FAE21EA583670964FFF140E970846376976B7', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1AB579FDAA05FA60F8EEE0B06E5FAE21EA583670964FFF140E970846376976B7', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/F2F84C8FBAF5C5124591B8828A143B38FC2F057845E6F25107ABE1F17D937009', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F2F84C8FBAF5C5124591B8828A143B38FC2F057845E6F25107ABE1F17D937009', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/01F9DC7355BF462268B8900E24DCCF69276DA22BD836DC61521F5A0ED20129CD', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/01F9DC7355BF462268B8900E24DCCF69276DA22BD836DC61521F5A0ED20129CD', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/8019670AC918838EAE340F1EBCE37035EDD57B86C499818318772505F514B03F', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8019670AC918838EAE340F1EBCE37035EDD57B86C499818318772505F514B03F', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/680FF5EE731374BCF69B0A8DA8D2473347B64B8BF1ABD5832DF51CFB53961AA8', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/680FF5EE731374BCF69B0A8DA8D2473347B64B8BF1ABD5832DF51CFB53961AA8', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/D81C7C3E35430804B92E7EA51C3F5384341254B4BD72C25CE5D2937B13091F31', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D81C7C3E35430804B92E7EA51C3F5384341254B4BD72C25CE5D2937B13091F31', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/3679EB0FAF260324A44EF05260EB747D81CA61017AC7D2BCD1BFD29AC927DB7A', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3679EB0FAF260324A44EF05260EB747D81CA61017AC7D2BCD1BFD29AC927DB7A', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/F89F635D97BC6400E17521B4220E3E08F44CE794EB80F5CABB356D3557E72637', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F89F635D97BC6400E17521B4220E3E08F44CE794EB80F5CABB356D3557E72637', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/1D42EC448B863AF39FB6788C2201528C29B8C6362994BA41D8AAD2515B497B6D', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D42EC448B863AF39FB6788C2201528C29B8C6362994BA41D8AAD2515B497B6D', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/ECACBA0DD2F55DF08D9713BDA4923A2B6DFF9057703F528EC724E76CC2CCF258', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECACBA0DD2F55DF08D9713BDA4923A2B6DFF9057703F528EC724E76CC2CCF258', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/C975417951A4AA121B7C0A137510DBEEF3008E1DB58A8129C439C0F4FF77F684', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/C975417951A4AA121B7C0A137510DBEEF3008E1DB58A8129C439C0F4FF77F684', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/6567DAF912E3BC274D0CCE45984E7A9559BF28F4AC9D366CD6A5B6B99168A3F5', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6567DAF912E3BC274D0CCE45984E7A9559BF28F4AC9D366CD6A5B6B99168A3F5', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/59703D5A806DF13C8EA2F36232FB0944B5669CCA731B45456B3E1E05F01491F2', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/59703D5A806DF13C8EA2F36232FB0944B5669CCA731B45456B3E1E05F01491F2', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/29A094924EB4272FFCAF4CBADC69F0C2BF575D5F28D6D9267A9E10F259346C53', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29A094924EB4272FFCAF4CBADC69F0C2BF575D5F28D6D9267A9E10F259346C53', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/950A4309223A3A8F5C97A684E5252CBF5B53DB883E37585FC6E90A79522621F3', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/950A4309223A3A8F5C97A684E5252CBF5B53DB883E37585FC6E90A79522621F3', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/9EC5098DF04B24E09BF1907EC3AF4E3B2D6BF4918B1A11A3661A5F0B4007E981', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9EC5098DF04B24E09BF1907EC3AF4E3B2D6BF4918B1A11A3661A5F0B4007E981', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/866403F8335408854636C51D1C81639329EC4409FE640100FD0C7E90D316C984', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/866403F8335408854636C51D1C81639329EC4409FE640100FD0C7E90D316C984', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BD9451F387367AA88FA3D18333B2F1D56607449F20B15B4557042DA869703E25', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD9451F387367AA88FA3D18333B2F1D56607449F20B15B4557042DA869703E25', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/F5D24D849000F1EA14946E9BED504C3736E3730FB9D7008C2D78CEFDC79061DE', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5D24D849000F1EA14946E9BED504C3736E3730FB9D7008C2D78CEFDC79061DE', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/32CC7460D443ECE2EB7D505CA527E99ED90630D5B8AAF2AAA647C602EDCE2FC9', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/32CC7460D443ECE2EB7D505CA527E99ED90630D5B8AAF2AAA647C602EDCE2FC9', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/secretnetwork.ts b/packages/assets/src/mainnet/secretnetwork.ts index e8d1f7374..fa2d4a782 100644 --- a/packages/assets/src/mainnet/secretnetwork.ts +++ b/packages/assets/src/mainnet/secretnetwork.ts @@ -26158,14 +26158,14 @@ const assets: AssetList = { 'Minerva was one of the main goddesses worshiped by the Roman Pagans and is a goddess from Roman Mythology.', type_asset: 'cw20', address: - 'juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', denom_units: [ { denom: - 'ibc/5E38E31A482F616D4468F564CF8612BB6277CCFC30B210E799528582ABF36962', + 'ibc/BB3C502A386F77BD9065EF37AB094516F6471FF680CD2E5628B8F687DDD483A2', exponent: 0, aliases: [ - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8' + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82' ] }, { @@ -26173,7 +26173,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/5E38E31A482F616D4468F564CF8612BB6277CCFC30B210E799528582ABF36962', + base: 'ibc/BB3C502A386F77BD9065EF37AB094516F6471FF680CD2E5628B8F687DDD483A2', name: 'MINERVA', display: 'minerva', symbol: 'MRVA', @@ -26192,7 +26192,56 @@ const assets: AssetList = { port: 'transfer', channel_id: 'channel-163', base_denom: - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', + chain_name: 'juno' + }, + chain: { + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-45' + } + } + ] + }, + { + description: + 'In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.', + type_asset: 'cw20', + address: + 'juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + denom_units: [ + { + denom: + 'ibc/2A469DF99AA69F318A584B3E5ED0D3479F479811406977BA5FD6D955F2544C00', + exponent: 0, + aliases: [ + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk' + ] + }, + { + denom: 'luno', + exponent: 6 + } + ], + base: 'ibc/2A469DF99AA69F318A584B3E5ED0D3479F479811406977BA5FD6D955F2544C00', + name: 'LUNO', + display: 'luno', + symbol: 'LUNO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'transfer', + channel_id: 'channel-163', + base_denom: + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', chain_name: 'juno' }, chain: { diff --git a/packages/assets/src/mainnet/stargaze.ts b/packages/assets/src/mainnet/stargaze.ts index c2155f9a6..b2d9e2f35 100644 --- a/packages/assets/src/mainnet/stargaze.ts +++ b/packages/assets/src/mainnet/stargaze.ts @@ -19038,6 +19038,429 @@ const assets: AssetList = { } ] }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/B0DD091AE8F4DF06E155C0328B5098206A756766466F101CDC2F7D196C3AA572', + exponent: 0, + aliases: ['uxprt'] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + base: 'ibc/B0DD091AE8F4DF06E155C0328B5098206A756766466F101CDC2F7D196C3AA572', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + coingecko_id: 'persistence', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'uxprt', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/B72FE6CF3A688C7041B573126872368EAF241CA607AC52902845CB1F00AC1D79', + exponent: 0, + aliases: ['stk/uatom'] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + base: 'ibc/B72FE6CF3A688C7041B573126872368EAF241CA607AC52902845CB1F00AC1D79', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stk/uatom', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ + { + denom: + 'ibc/3D794C5A2143187D1E7C2AE2ED7632C2129806BBCD399F344D1109B6D6046D31', + exponent: 0, + aliases: [ + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3D794C5A2143187D1E7C2AE2ED7632C2129806BBCD399F344D1109B6D6046D31', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + keywords: ['canon'], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/30A13CC6A9F0BE97EA568660CF29413BEBB29EDB702A9DF94134CB9773D256FF', + exponent: 0, + aliases: [ + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30A13CC6A9F0BE97EA568660CF29413BEBB29EDB702A9DF94134CB9773D256FF', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + description: 'Tether USDT on Persistence', + denom_units: [ + { + denom: + 'ibc/99D9C0416A2B4F0184EA68CCD5B365F3FBEBC1D819986D1121100C31E350C83F', + exponent: 0, + aliases: [ + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/99D9C0416A2B4F0184EA68CCD5B365F3FBEBC1D819986D1121100C31E350C83F', + name: 'Tether USDT', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/76F8EF7737DA9DE4C1943E00553C669650D71D435ED7D5546C174D26FD448E9C', + exponent: 0, + aliases: [ + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76F8EF7737DA9DE4C1943E00553C669650D71D435ED7D5546C174D26FD448E9C', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + description: 'dydx staking token', + denom_units: [ + { + denom: + 'ibc/78D66445EAEE4BC5A5D13D7C44C294EB213403FCE659361069EDDAF85D00D2B0', + exponent: 0, + aliases: [ + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/78D66445EAEE4BC5A5D13D7C44C294EB213403FCE659361069EDDAF85D00D2B0', + name: 'dYdX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/1766E5264A3E23D3DDFC81C500319491310BC53268D6BCAACC2C95B23DB9CA19', + exponent: 0, + aliases: ['stk/uosmo'] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + base: 'ibc/1766E5264A3E23D3DDFC81C500319491310BC53268D6BCAACC2C95B23DB9CA19', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stk/uosmo', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ] + }, + { + description: 'PSTAKE Liquid-Staked DYDX', + denom_units: [ + { + denom: + 'ibc/7BEBE59AB8614A85EF2F2DA6A5336083FE05A7B618B2AE685B12385DFEEB7E62', + exponent: 0, + aliases: ['stk/adydx'] + }, + { + denom: 'stkdydx', + exponent: 18, + aliases: ['stk/dydx'] + } + ], + base: 'ibc/7BEBE59AB8614A85EF2F2DA6A5336083FE05A7B618B2AE685B12385DFEEB7E62', + name: 'PSTAKE staked DYDX', + display: 'stkdydx', + symbol: 'stkDYDX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ] + }, { description: 'QCK - native token of Quicksilver', denom_units: [ diff --git a/packages/assets/src/mainnet/stride.ts b/packages/assets/src/mainnet/stride.ts index f4305ec9c..d41944283 100644 --- a/packages/assets/src/mainnet/stride.ts +++ b/packages/assets/src/mainnet/stride.ts @@ -2864,6 +2864,50 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-197' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Evmos Hub', diff --git a/packages/assets/src/testnet/assets.ts b/packages/assets/src/testnet/assets.ts index ddf7efe9d..1b02db2a8 100644 --- a/packages/assets/src/testnet/assets.ts +++ b/packages/assets/src/testnet/assets.ts @@ -29,6 +29,7 @@ import _quicksilvertestnet from './quicksilvertestnet'; import _sagatestnet from './sagatestnet'; import _sgetestnet from './sgetestnet'; import _stargazetestnet from './stargazetestnet'; +import _titantestnet from './titantestnet'; import _xiontestnet from './xiontestnet'; const assets: AssetList[] = [ @@ -61,6 +62,7 @@ const assets: AssetList[] = [ _sagatestnet, _sgetestnet, _stargazetestnet, + _titantestnet, _xiontestnet ]; diff --git a/packages/assets/src/testnet/axelartestnet.ts b/packages/assets/src/testnet/axelartestnet.ts index 63c1f0e93..b8ab6f312 100644 --- a/packages/assets/src/testnet/axelartestnet.ts +++ b/packages/assets/src/testnet/axelartestnet.ts @@ -564,6 +564,55 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of the Titan network.', + denom_units: [ + { + denom: + 'ibc/88434761790405D6F5B87C35B24B5CA7D1A12BF4C8832BEB601D4409E71777AD', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18, + aliases: [] + } + ], + base: 'ibc/88434761790405D6F5B87C35B24B5CA7D1A12BF4C8832BEB601D4409E71777AD', + display: 'tkx', + name: 'titan tkx', + symbol: 'TKX', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ], + keywords: ['staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'atkx', + chain_name: 'titantestnet' + }, + chain: { + channel_id: 'channel-448' + } + } + ] + }, { description: 'The native staking token of the Xion network.', denom_units: [ diff --git a/packages/assets/src/testnet/cosmoshubtestnet.ts b/packages/assets/src/testnet/cosmoshubtestnet.ts index a616e41b7..8ef8885e4 100644 --- a/packages/assets/src/testnet/cosmoshubtestnet.ts +++ b/packages/assets/src/testnet/cosmoshubtestnet.ts @@ -390,6 +390,55 @@ const assets: AssetList = { } } ] + }, + { + description: 'The native token of the Titan network.', + denom_units: [ + { + denom: + 'ibc/E22F3B8BFBA78A27A20077EE0CFE05BC4AA5EB40459E0593A110CB449ACD1F5E', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18, + aliases: [] + } + ], + base: 'ibc/E22F3B8BFBA78A27A20077EE0CFE05BC4AA5EB40459E0593A110CB449ACD1F5E', + display: 'tkx', + name: 'titan tkx', + symbol: 'TKX', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ], + keywords: ['staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'atkx', + chain_name: 'titantestnet' + }, + chain: { + channel_id: 'channel-3910' + } + } + ] } ] }; diff --git a/packages/assets/src/testnet/index.ts b/packages/assets/src/testnet/index.ts index e08be5ad6..f23e0906f 100644 --- a/packages/assets/src/testnet/index.ts +++ b/packages/assets/src/testnet/index.ts @@ -27,4 +27,5 @@ export * as quicksilvertestnet from './quicksilvertestnet'; export * as sagatestnet from './sagatestnet'; export * as sgetestnet from './sgetestnet'; export * as stargazetestnet from './stargazetestnet'; +export * as titantestnet from './titantestnet'; export * as xiontestnet from './xiontestnet'; diff --git a/packages/assets/src/testnet/lavatestnet2.ts b/packages/assets/src/testnet/lavatestnet2.ts new file mode 100644 index 000000000..2ac418d91 --- /dev/null +++ b/packages/assets/src/testnet/lavatestnet2.ts @@ -0,0 +1,493 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'lavatestnet2', + assets: [ + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + exponent: 0, + aliases: ['uaxl'] + }, + { + denom: 'axl', + exponent: 6 + } + ], + base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + coingecko_id: 'axelar', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'uaxl', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + exponent: 0, + aliases: ['uausdc'] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + base: 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + name: 'USD Coin', + display: 'ausdc', + symbol: 'aUSDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'uausdc', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, + { + description: 'Wrapped Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + exponent: 0, + aliases: ['eth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + base: 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'axlWETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'eth-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + } + }, + { + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ + { + denom: + 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + exponent: 0, + aliases: ['wglmr-wei'] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + base: 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WDEV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'wglmr-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'moonbeamtestnet', + base_denom: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + }, + { + description: 'Wrapped Matic on Axelar', + denom_units: [ + { + denom: + 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + exponent: 0, + aliases: ['wmatic-wei'] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + base: 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'wmatic-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'polygontestnet', + base_denom: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + }, + { + description: 'Wrapped BNB on Axelar', + denom_units: [ + { + denom: + 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + exponent: 0, + aliases: ['wbnb-wei'] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + base: 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + name: 'Wrapped BNB', + display: 'wbnb', + symbol: 'WBNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'wbnb-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'binancesmartchaintestnet', + base_denom: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + }, + { + description: 'Wrapped AVAX on Axelar.', + denom_units: [ + { + denom: + 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + exponent: 0, + aliases: ['wavax-wei'] + }, + { + denom: 'avax', + exponent: 18 + } + ], + base: 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + name: 'Wrapped AVAX', + display: 'avax', + symbol: 'WAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'wavax-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'avalanchetestnet', + base_denom: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + }, + { + description: 'Wrapped FTM on Axelar.', + denom_units: [ + { + denom: + 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + exponent: 0, + aliases: ['wftm-wei'] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + base: 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + name: 'Wrapped FTM', + display: 'ftm', + symbol: 'WFTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-418', + base_denom: 'wftm-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'fantomtestnet', + base_denom: '0x812666209b90344Ec8e528375298ab9045c2Bd08' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5286', + base_denom: 'uosmo', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + name: 'Ion', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + coingecko_id: 'ion', + keywords: ['memecoin'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5286', + base_denom: 'uion', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BB012F1C95C818F6C959D638595984F4D3916F89E1C159FF73F6B130E0ADFD33', + exponent: 0, + aliases: [ + 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz' + ] + }, + { + denom: 'willyz', + exponent: 6 + } + ], + base: 'ibc/BB012F1C95C818F6C959D638595984F4D3916F89E1C159FF73F6B130E0ADFD33', + name: 'Willyz', + display: 'willyz', + symbol: 'WILLYZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' + }, + keywords: ['memecoin'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5286', + base_denom: + 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/testnet/osmosistestnet.ts b/packages/assets/src/testnet/osmosistestnet.ts index 8e4d69ebc..ad97871d6 100644 --- a/packages/assets/src/testnet/osmosistestnet.ts +++ b/packages/assets/src/testnet/osmosistestnet.ts @@ -1692,6 +1692,55 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of the Titan network.', + denom_units: [ + { + denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18, + aliases: [] + } + ], + base: 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + display: 'tkx', + name: 'titan tkx', + symbol: 'TKX', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ], + keywords: ['staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: 'atkx', + chain_name: 'titantestnet' + }, + chain: { + channel_id: 'channel-5969' + } + } + ] + }, { description: 'The native staking token of the Xion network.', denom_units: [ diff --git a/packages/assets/src/testnet/stargazetestnet.ts b/packages/assets/src/testnet/stargazetestnet.ts index fc55444e9..fbd19fd97 100644 --- a/packages/assets/src/testnet/stargazetestnet.ts +++ b/packages/assets/src/testnet/stargazetestnet.ts @@ -218,6 +218,55 @@ const assets: AssetList = { } } ] + }, + { + description: 'The native token of the Titan network.', + denom_units: [ + { + denom: + 'ibc/9EB62C79953545C992B245713E325596D9B821539417F5BF245DE5C84C538EAE', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18, + aliases: [] + } + ], + base: 'ibc/9EB62C79953545C992B245713E325596D9B821539417F5BF245DE5C84C538EAE', + display: 'tkx', + name: 'titan tkx', + symbol: 'TKX', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ], + keywords: ['staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3', + base_denom: 'atkx', + chain_name: 'titantestnet' + }, + chain: { + channel_id: 'channel-807' + } + } + ] } ] }; diff --git a/packages/assets/src/testnet/titantestnet.ts b/packages/assets/src/testnet/titantestnet.ts new file mode 100644 index 000000000..6cd6108da --- /dev/null +++ b/packages/assets/src/testnet/titantestnet.ts @@ -0,0 +1,577 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'titantestnet', + assets: [ + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + exponent: 0, + aliases: ['uaxl'] + }, + { + denom: 'axl', + exponent: 6 + } + ], + base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + coingecko_id: 'axelar', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'uaxl', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + exponent: 0, + aliases: ['uausdc'] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + base: 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + name: 'USD Coin', + display: 'ausdc', + symbol: 'aUSDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'uausdc', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, + { + description: 'Wrapped Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + exponent: 0, + aliases: ['eth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + base: 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'axlWETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'eth-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + } + }, + { + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ + { + denom: + 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + exponent: 0, + aliases: ['wglmr-wei'] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + base: 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WDEV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'wglmr-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'moonbeamtestnet', + base_denom: '0x1436aE0dF0A8663F18c0Ec51d7e2E46591730715' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + }, + { + description: 'Wrapped Matic on Axelar', + denom_units: [ + { + denom: + 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + exponent: 0, + aliases: ['wmatic-wei'] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + base: 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'wmatic-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'polygontestnet', + base_denom: '0x9c3C9283D3e44854697Cd22D3Faa240Cfb032889' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + }, + { + description: 'Wrapped BNB on Axelar', + denom_units: [ + { + denom: + 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + exponent: 0, + aliases: ['wbnb-wei'] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + base: 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + name: 'Wrapped BNB', + display: 'wbnb', + symbol: 'WBNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'wbnb-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'binancesmartchaintestnet', + base_denom: '0xae13d989daC2f0dEbFf460aC112a837C89BAa7cd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + }, + { + description: 'Wrapped AVAX on Axelar.', + denom_units: [ + { + denom: + 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + exponent: 0, + aliases: ['wavax-wei'] + }, + { + denom: 'avax', + exponent: 18 + } + ], + base: 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + name: 'Wrapped AVAX', + display: 'avax', + symbol: 'WAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'wavax-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'avalanchetestnet', + base_denom: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + }, + { + description: 'Wrapped FTM on Axelar.', + denom_units: [ + { + denom: + 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + exponent: 0, + aliases: ['wftm-wei'] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + base: 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + name: 'Wrapped FTM', + display: 'ftm', + symbol: 'WFTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-448', + base_denom: 'wftm-wei', + chain_name: 'axelartestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'fantomtestnet', + base_denom: '0x812666209b90344Ec8e528375298ab9045c2Bd08' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6 + } + ], + base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3910', + base_denom: 'uatom', + chain_name: 'cosmoshubtestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5969', + base_denom: 'uosmo', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + base: 'ibc/6FA7B62692FBCA2E51F567947035DE3C5D7333D49D13B85A25F358E80DF4E991', + name: 'Ion', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + coingecko_id: 'ion', + keywords: ['memecoin'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5969', + base_denom: 'uion', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/7B6DCC6FFBA65D66FE2F349B72A62298200CACC6BEF44F05BE337DA0DF6659DC', + exponent: 0, + aliases: [ + 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz' + ] + }, + { + denom: 'willyz', + exponent: 6 + } + ], + base: 'ibc/7B6DCC6FFBA65D66FE2F349B72A62298200CACC6BEF44F05BE337DA0DF6659DC', + name: 'Willyz', + display: 'willyz', + symbol: 'WILLYZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' + }, + keywords: ['memecoin'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5969', + base_denom: + 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/482A30C07803B0455B1492BAF94EC3D600E862D52A814F25A34BCCAAA132FEE9', + exponent: 0, + aliases: ['ustars'] + }, + { + denom: 'stars', + exponent: 6 + } + ], + base: 'ibc/482A30C07803B0455B1492BAF94EC3D600E862D52A814F25A34BCCAAA132FEE9', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' + }, + coingecko_id: 'stargaze', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-807', + base_denom: 'ustars', + chain_name: 'stargazetestnet' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/juno/src/assets.ts b/packages/juno/src/assets.ts index 96e45c7aa..6e8a8a6f9 100644 --- a/packages/juno/src/assets.ts +++ b/packages/juno/src/assets.ts @@ -2056,11 +2056,11 @@ const assets: AssetList = { 'Minerva was one of the main goddesses worshiped by the Roman Pagans and is a goddess from Roman Mythology.', type_asset: 'cw20', address: - 'juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', denom_units: [ { denom: - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', exponent: 0 }, { @@ -2068,7 +2068,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + base: 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', name: 'MINERVA', display: 'minerva', symbol: 'MRVA', @@ -2080,6 +2080,36 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/minerva.png' } ] + }, + { + description: + 'In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.', + type_asset: 'cw20', + address: + 'juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + denom_units: [ + { + denom: + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + exponent: 0 + }, + { + denom: 'luno', + exponent: 6 + } + ], + base: 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + name: 'LUNO', + display: 'luno', + symbol: 'LUNO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + } + ] } ] }; diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index 342c95827..19346b445 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -13679,12 +13679,25 @@ const asset_list: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + theme: { + dark_mode: false, + circle: true + } + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + theme: { + dark_mode: true, + circle: true + } } ], traces: [ @@ -22552,14 +22565,14 @@ const asset_list: AssetList = { 'Minerva was one of the main goddesses worshiped by the Roman Pagans and is a goddess from Roman Mythology.', type_asset: 'cw20', address: - 'juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', denom_units: [ { denom: - 'ibc/297AF7827A8D61CB77DADAF6D951D428ACAF56C37BB98079B4B32DC694A73F20', + 'ibc/9E1F8DBB64753CAB022F2BDEA0D2C3B53522F372140DDF494AEE94C3078925E8', exponent: 0, aliases: [ - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8' + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82' ] }, { @@ -22567,7 +22580,7 @@ const asset_list: AssetList = { exponent: 6 } ], - base: 'ibc/297AF7827A8D61CB77DADAF6D951D428ACAF56C37BB98079B4B32DC694A73F20', + base: 'ibc/9E1F8DBB64753CAB022F2BDEA0D2C3B53522F372140DDF494AEE94C3078925E8', name: 'MINERVA', display: 'minerva', symbol: 'MRVA', @@ -22586,7 +22599,56 @@ const asset_list: AssetList = { port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', channel_id: 'channel-47', base_denom: - 'cw20:juno1lsfym25w35ylhuq4m48fmycwe6nhntzh2ag2pttqtfe8cew9s25s2ym9t8', + 'cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, + { + description: + 'In Roman mythology, Juno (Latin: Iuno; pronounced [[Help:Pronunciation|[ˈjuːnoː]]]) was the protector and advisor of the state.', + type_asset: 'cw20', + address: + 'juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', + denom_units: [ + { + denom: + 'ibc/EF9E75F44C52D139A6C98A0E37183E1C32ED6F00BDCFA0020550D78C31A62C0E', + exponent: 0, + aliases: [ + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk' + ] + }, + { + denom: 'luno', + exponent: 6 + } + ], + base: 'ibc/EF9E75F44C52D139A6C98A0E37183E1C32ED6F00BDCFA0020550D78C31A62C0E', + name: 'LUNO', + display: 'luno', + symbol: 'LUNO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk', chain_name: 'juno' }, chain: { From db0c1f151166b054cb22cae4772726203cebadb5 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 28 Feb 2024 14:42:14 +0800 Subject: [PATCH 05/54] chore(release): publish - @chain-registry/assets@1.29.7 - @chain-registry/juno@1.29.7 - @chain-registry/osmosis@1.29.7 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 2 +- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 2 +- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 2 +- 6 files changed, 27 insertions(+), 3 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 5d20ac0fc..65a75cba7 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.6...@chain-registry/assets@1.29.7) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/assets + + + + + ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.5...@chain-registry/assets@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 1293ebce0..394eebcb3 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.29.6", + "version": "1.29.7", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index b75c51c57..72a04a082 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.6...@chain-registry/juno@1.29.7) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/juno + + + + + ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.5...@chain-registry/juno@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 959f6a8c6..d1876b429 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.29.6", + "version": "1.29.7", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index f6f9285ed..7c9ef8226 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.6...@chain-registry/osmosis@1.29.7) (2024-02-28) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.5...@chain-registry/osmosis@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index fa66710fb..4fcc48b2b 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.29.6", + "version": "1.29.7", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", From 5e31f407f022e044bc6a57626ec1def1915d38f6 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Thu, 29 Feb 2024 08:53:07 +0800 Subject: [PATCH 06/54] set schedule daily running build publish --- .github/workflows/npm-publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 9322b855d..61106f828 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,7 +1,9 @@ name: Publish on: - workflow_dispatch: + schedule: + # Runs every day at 1:00 AM UTC + - cron: "0 1 * * *" jobs: publish-npm: @@ -36,7 +38,7 @@ jobs: BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" git checkout -b $BRANCH_NAME git add . - git commit -am "build 🛠" + git commit -am "build 🛠 $BRANCH_NAME" git push origin $BRANCH_NAME env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} From b9395eccbb3fc597f60f144ca5fe72e1a8f49505 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Thu, 29 Feb 2024 08:54:53 +0800 Subject: [PATCH 07/54] fix publish script --- .github/workflows/npm-publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 61106f828..0bd7f23f9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -5,6 +5,8 @@ on: # Runs every day at 1:00 AM UTC - cron: "0 1 * * *" + workflow_dispatch: + jobs: publish-npm: runs-on: ubuntu-latest From cfd1ca9340bea9c96afae196dafe84bafb74eb5c Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 1 Mar 2024 09:02:25 +0800 Subject: [PATCH 08/54] add test wf --- .github/workflows/pub-wf.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/pub-wf.yml diff --git a/.github/workflows/pub-wf.yml b/.github/workflows/pub-wf.yml new file mode 100644 index 000000000..5d61ddbfa --- /dev/null +++ b/.github/workflows/pub-wf.yml @@ -0,0 +1,28 @@ +name: Test Publish + +on: + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: | + cd packages/chain-registry + echo "test msg" > msg.txt + cd ../../ + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" + BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" + git checkout -b $BRANCH_NAME + git add . + if ! git diff --staged --quiet; then + git commit -am "build 🛠 $BRANCH_NAME" + git push origin $BRANCH_NAME + else + echo "No changes to commit." + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} + GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} From 8c601c5792d08f2908e081e6a14cb480567ad0a2 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 1 Mar 2024 09:06:25 +0800 Subject: [PATCH 09/54] test no change --- .github/workflows/pub-wf.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pub-wf.yml b/.github/workflows/pub-wf.yml index 5d61ddbfa..fab44bc20 100644 --- a/.github/workflows/pub-wf.yml +++ b/.github/workflows/pub-wf.yml @@ -9,9 +9,9 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - cd packages/chain-registry - echo "test msg" > msg.txt - cd ../../ + # cd packages/chain-registry + # echo "test msg" > msg.txt + # cd ../../ git config user.name "${{ github.actor }}" git config user.email "${{ github.actor}}@users.noreply.github.com" BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" From b33732b5f75565e2b13157c796b795b16d30a4dd Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 1 Mar 2024 09:38:05 +0800 Subject: [PATCH 10/54] test gh --- .github/workflows/pub-wf.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pub-wf.yml b/.github/workflows/pub-wf.yml index fab44bc20..1afa292d4 100644 --- a/.github/workflows/pub-wf.yml +++ b/.github/workflows/pub-wf.yml @@ -9,9 +9,9 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - # cd packages/chain-registry - # echo "test msg" > msg.txt - # cd ../../ + cd packages/chain-registry + echo "test msg" > msg.txt + cd ../../ git config user.name "${{ github.actor }}" git config user.email "${{ github.actor}}@users.noreply.github.com" BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" @@ -20,6 +20,7 @@ jobs: if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push origin $BRANCH_NAME + gh pr create --base main --head $BRANCH_NAME --title "Automatic build 🛠 $BRANCH_NAME" --body "This is an auto-generated PR with build changes $BRANCH_NAME" else echo "No changes to commit." fi From 78eb09be9ec8cdcd0fd656c0ae1a62b79d219755 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 1 Mar 2024 09:45:32 +0800 Subject: [PATCH 11/54] fixed token --- .github/workflows/pub-wf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pub-wf.yml b/.github/workflows/pub-wf.yml index 1afa292d4..79f14973c 100644 --- a/.github/workflows/pub-wf.yml +++ b/.github/workflows/pub-wf.yml @@ -26,4 +26,4 @@ jobs: fi env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} - GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 2a79a8d930f3426efb0d4bcac58028391a95813d Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 1 Mar 2024 09:57:00 +0800 Subject: [PATCH 12/54] see if there's change before push --- .github/workflows/npm-publish.yml | 8 ++++++-- .github/workflows/pub-wf.yml | 29 ----------------------------- 2 files changed, 6 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/pub-wf.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 0bd7f23f9..5bcbf52d5 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -40,8 +40,12 @@ jobs: BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" git checkout -b $BRANCH_NAME git add . - git commit -am "build 🛠 $BRANCH_NAME" - git push origin $BRANCH_NAME + if ! git diff --staged --quiet; then + git commit -am "build 🛠 $BRANCH_NAME" + git push origin $BRANCH_NAME + else + echo "No changes to commit." + fi env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} diff --git a/.github/workflows/pub-wf.yml b/.github/workflows/pub-wf.yml deleted file mode 100644 index 79f14973c..000000000 --- a/.github/workflows/pub-wf.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Test Publish - -on: - workflow_dispatch: - -jobs: - publish-npm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - run: | - cd packages/chain-registry - echo "test msg" > msg.txt - cd ../../ - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor}}@users.noreply.github.com" - BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" - git checkout -b $BRANCH_NAME - git add . - if ! git diff --staged --quiet; then - git commit -am "build 🛠 $BRANCH_NAME" - git push origin $BRANCH_NAME - gh pr create --base main --head $BRANCH_NAME --title "Automatic build 🛠 $BRANCH_NAME" --body "This is an auto-generated PR with build changes $BRANCH_NAME" - else - echo "No changes to commit." - fi - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From a025fc3731c9551ed6384d5a9f3af517deba936d Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Sat, 2 Mar 2024 19:20:32 +0800 Subject: [PATCH 13/54] split steps --- .github/workflows/npm-publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 5bcbf52d5..6de65a85c 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -18,7 +18,8 @@ jobs: with: node-version: 16.14.0 registry-url: https://registry.npmjs.org/ - - run: | + - name: Code Generation + run: | yarn yarn bootstrap yarn build @@ -35,6 +36,8 @@ jobs: cd packages/juno yarn codegen cd ../../ + - name: Git Ops + run: | git config user.name "${{ github.actor }}" git config user.email "${{ github.actor}}@users.noreply.github.com" BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" From 80686aaac7548c8053d10ecb8e62cec4a008d32f Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 14:13:37 +0800 Subject: [PATCH 14/54] a workflow update except assets --- .github/workflows/npm-publish-min.yml | 47 +++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 .github/workflows/npm-publish-min.yml diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml new file mode 100644 index 000000000..c473fe414 --- /dev/null +++ b/.github/workflows/npm-publish-min.yml @@ -0,0 +1,47 @@ +name: Publish Min + +on: + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: "true" + - uses: actions/setup-node@v3 + with: + node-version: 16.14.0 + registry-url: https://registry.npmjs.org/ + - name: Code Generation + run: | + yarn + yarn bootstrap + yarn build + cd packages/chain-registry + yarn codegen + yarn build + cd ../../ + cd packages/osmosis + yarn codegen + cd ../../ + cd packages/juno + yarn codegen + cd ../../ + - name: Git Ops + run: | + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" + BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" + git checkout -b $BRANCH_NAME + git add . + if ! git diff --staged --quiet; then + git commit -am "build 🛠 $BRANCH_NAME" + git push origin $BRANCH_NAME + else + echo "No changes to commit." + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} + GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} From 94a4cbc6992e823382fcc17e662c6631cc54d445 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 22:32:21 +0800 Subject: [PATCH 15/54] update build --- packages/chain-registry/chain-registry | 2 +- .../chain-registry/src/mainnet/agoric/ibc.ts | 31 ++++ .../src/mainnet/agoric/ibc_chain1.ts | 31 ++++ packages/chain-registry/src/mainnet/assets.ts | 4 + .../chain-registry/src/mainnet/axelar/ibc.ts | 32 ++++ .../src/mainnet/axelar/ibc_chain1.ts | 32 ++++ .../chain-registry/src/mainnet/canto/chain.ts | 12 -- .../src/mainnet/chain4energy/chain.ts | 16 +- .../src/mainnet/chain4energy/ibc.ts | 68 +++++++ .../src/mainnet/chain4energy/ibc_chain1.ts | 36 ++++ .../src/mainnet/chain4energy/index.ts | 4 + packages/chain-registry/src/mainnet/chains.ts | 4 + .../chain-registry/src/mainnet/cheqd/chain.ts | 8 + .../src/mainnet/chihuahua/ibc.ts | 31 ++++ .../src/mainnet/chihuahua/ibc_chain1.ts | 31 ++++ .../src/mainnet/desmos/chain.ts | 6 +- .../src/mainnet/dymension/ibc.ts | 31 ++++ .../src/mainnet/dymension/ibc_chain1.ts | 31 ++++ .../chain-registry/src/mainnet/evmos/ibc.ts | 31 ++++ .../src/mainnet/finschia/assets.ts | 38 ++++ .../src/mainnet/finschia/chain.ts | 79 +++++++++ .../src/mainnet/finschia/index.ts | 5 + .../src/mainnet/govgen/assets.ts | 35 ++++ .../src/mainnet/govgen/chain.ts | 145 +++++++++++++++ .../src/mainnet/govgen/index.ts | 5 + packages/chain-registry/src/mainnet/ibc.ts | 2 + packages/chain-registry/src/mainnet/index.ts | 2 + .../src/mainnet/injective/ibc.ts | 31 ++++ .../src/mainnet/injective/ibc_chain1.ts | 31 ++++ .../src/mainnet/jackal/chain.ts | 8 + .../chain-registry/src/mainnet/juno/assets.ts | 60 +++++++ .../chain-registry/src/mainnet/juno/chain.ts | 12 ++ .../chain-registry/src/mainnet/kyve/chain.ts | 12 -- .../src/mainnet/neutron/chain.ts | 36 ++-- .../chain-registry/src/mainnet/nyx/assets.ts | 13 +- .../chain-registry/src/mainnet/nyx/chain.ts | 10 +- .../chain-registry/src/mainnet/odin/assets.ts | 62 ++----- .../chain-registry/src/mainnet/odin/chain.ts | 30 +--- .../chain-registry/src/mainnet/odin/ibc.ts | 31 ++++ .../src/mainnet/osmosis/assets.ts | 30 ++++ .../chain-registry/src/mainnet/osmosis/ibc.ts | 62 +++++++ .../src/mainnet/osmosis/ibc_chain1.ts | 30 ++++ .../src/mainnet/persistence/assets.ts | 166 ++++++++++++++++++ .../src/mainnet/persistence/ibc.ts | 75 ++++++++ .../src/mainnet/persistence/ibc_chain1.ts | 13 ++ .../chain-registry/src/mainnet/pylons/ibc.ts | 34 ++++ .../src/mainnet/pylons/index.ts | 2 + .../chain-registry/src/mainnet/qwoyn/chain.ts | 2 + .../src/mainnet/secretnetwork/ibc.ts | 13 ++ .../chain-registry/src/mainnet/sei/chain.ts | 2 +- .../src/mainnet/shentu/chain.ts | 8 + .../src/mainnet/sifchain/chain.ts | 20 --- .../src/mainnet/source/assets.ts | 2 +- .../src/mainnet/stargaze/chain.ts | 8 + .../src/mainnet/stride/chain.ts | 77 -------- .../src/mainnet/teritori/assets.ts | 95 ++++++++++ .../src/noncosmos/solana/assets.ts | 28 +++ packages/chain-registry/src/testnet/assets.ts | 4 + packages/chain-registry/src/testnet/chains.ts | 4 + .../src/testnet/finschiatestnet/assets.ts | 37 ++++ .../src/testnet/finschiatestnet/chain.ts | 78 ++++++++ .../src/testnet/finschiatestnet/index.ts | 5 + packages/chain-registry/src/testnet/index.ts | 2 + .../src/testnet/injectivetestnet/ibc.ts | 31 ++++ .../testnet/injectivetestnet/ibc_chain1.ts | 31 ++++ .../src/testnet/osmosistestnet/assets.ts | 106 +++++++++++ .../src/testnet/quasartestnet/chain.ts | 26 +-- .../src/testnet/sgetestnet/assets.ts | 2 +- .../src/testnet/sgetestnet/chain.ts | 17 +- .../src/testnet/sgetestnet4/assets.ts | 48 +++++ .../src/testnet/sgetestnet4/chain.ts | 80 +++++++++ .../src/testnet/sgetestnet4/index.ts | 5 + .../src/testnet/xiontestnet/assets.ts | 50 +++++- .../src/testnet/xiontestnet/chain.ts | 16 +- .../src/testnet/xiontestnet/ibc.ts | 31 ++++ 75 files changed, 2055 insertions(+), 273 deletions(-) create mode 100644 packages/chain-registry/src/mainnet/chain4energy/ibc.ts create mode 100644 packages/chain-registry/src/mainnet/chain4energy/ibc_chain1.ts create mode 100644 packages/chain-registry/src/mainnet/finschia/assets.ts create mode 100644 packages/chain-registry/src/mainnet/finschia/chain.ts create mode 100644 packages/chain-registry/src/mainnet/finschia/index.ts create mode 100644 packages/chain-registry/src/mainnet/govgen/assets.ts create mode 100644 packages/chain-registry/src/mainnet/govgen/chain.ts create mode 100644 packages/chain-registry/src/mainnet/govgen/index.ts create mode 100644 packages/chain-registry/src/mainnet/pylons/ibc.ts create mode 100644 packages/chain-registry/src/testnet/finschiatestnet/assets.ts create mode 100644 packages/chain-registry/src/testnet/finschiatestnet/chain.ts create mode 100644 packages/chain-registry/src/testnet/finschiatestnet/index.ts create mode 100644 packages/chain-registry/src/testnet/sgetestnet4/assets.ts create mode 100644 packages/chain-registry/src/testnet/sgetestnet4/chain.ts create mode 100644 packages/chain-registry/src/testnet/sgetestnet4/index.ts diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index 1f988b6cf..fb52e4f3c 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit 1f988b6cfd76afe71e21a2bde3b1226e86daf9cd +Subproject commit fb52e4f3c66c78abd7fcbc4279264ebc711a9307 diff --git a/packages/chain-registry/src/mainnet/agoric/ibc.ts b/packages/chain-registry/src/mainnet/agoric/ibc.ts index e863ca45c..9e270d5f7 100644 --- a/packages/chain-registry/src/mainnet/agoric/ibc.ts +++ b/packages/chain-registry/src/mainnet/agoric/ibc.ts @@ -340,6 +340,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-93', + connection_id: 'connection-91' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-167', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-72', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-202', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts index e863ca45c..9e270d5f7 100644 --- a/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts @@ -340,6 +340,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-93', + connection_id: 'connection-91' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-167', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-72', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-202', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/assets.ts b/packages/chain-registry/src/mainnet/assets.ts index c16c17198..09d13bfd7 100644 --- a/packages/chain-registry/src/mainnet/assets.ts +++ b/packages/chain-registry/src/mainnet/assets.ts @@ -51,6 +51,7 @@ import * as _empowerchain from './empowerchain'; import * as _ethos from './ethos'; import * as _evmos from './evmos'; import * as _fetchhub from './fetchhub'; +import * as _finschia from './finschia'; import * as _firmachain from './firmachain'; import * as _furya from './furya'; import * as _fxcore from './fxcore'; @@ -58,6 +59,7 @@ import * as _galaxy from './galaxy'; import * as _gateway from './gateway'; import * as _genesisl1 from './genesisl1'; import * as _gitopia from './gitopia'; +import * as _govgen from './govgen'; import * as _gravitybridge from './gravitybridge'; import * as _haqq from './haqq'; import * as _highbury from './highbury'; @@ -201,6 +203,7 @@ const assets: AssetList[] = [ _ethos.assets, _evmos.assets, _fetchhub.assets, + _finschia.assets, _firmachain.assets, _furya.assets, _fxcore.assets, @@ -208,6 +211,7 @@ const assets: AssetList[] = [ _gateway.assets, _genesisl1.assets, _gitopia.assets, + _govgen.assets, _gravitybridge.assets, _haqq.assets, _highbury.assets, diff --git a/packages/chain-registry/src/mainnet/axelar/ibc.ts b/packages/chain-registry/src/mainnet/axelar/ibc.ts index 47801040b..12620468f 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc.ts @@ -185,6 +185,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-203', + connection_id: 'connection-183' + }, + chain_2: { + chain_name: 'chain4energy', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts index d0d6e8688..789992877 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts @@ -62,6 +62,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-203', + connection_id: 'connection-183' + }, + chain_2: { + chain_name: 'chain4energy', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/canto/chain.ts b/packages/chain-registry/src/mainnet/canto/chain.ts index c4a3bcccd..c34763cb5 100644 --- a/packages/chain-registry/src/mainnet/canto/chain.ts +++ b/packages/chain-registry/src/mainnet/canto/chain.ts @@ -52,10 +52,6 @@ const info: Chain = { address: 'https://canto.gravitychain.io:26657', provider: 'Althea' }, - { - address: 'https://rpc-canto.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://canto-mainnet-rpc.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' @@ -74,10 +70,6 @@ const info: Chain = { address: 'https://api.canto.silentvalidator.com/', provider: 'silent' }, - { - address: 'https://api-canto.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://canto-mainnet-lcd.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' @@ -96,10 +88,6 @@ const info: Chain = { address: 'https://grpc.canto.silentvalidator.com/', provider: 'silent' }, - { - address: 'grpc-canto.cosmos-spaces.cloud:2280', - provider: 'Cosmos Spaces' - }, { address: 'https://canto.gravitychain.io:9090', provider: 'Althea' diff --git a/packages/chain-registry/src/mainnet/chain4energy/chain.ts b/packages/chain-registry/src/mainnet/chain4energy/chain.ts index e6978d7c1..e35a5da1d 100644 --- a/packages/chain-registry/src/mainnet/chain4energy/chain.ts +++ b/packages/chain-registry/src/mainnet/chain4energy/chain.ts @@ -5,18 +5,28 @@ const info: Chain = { status: 'live', network_type: 'mainnet', website: 'https://c4e.io/', - pretty_name: 'Chain4Energy', + pretty_name: 'C4E', chain_id: 'perun-1', bech32_prefix: 'c4e', daemon_name: 'c4ed', node_home: '$HOME/.c4e-chain', key_algos: ['secp256k1'], - slip44: 4444, + slip44: 118, fees: { fee_tokens: [ { denom: 'uc4e', - fixed_min_gas_price: 0 + fixed_min_gas_price: 0, + low_gas_price: 0.01, + average_gas_price: 0.025, + high_gas_price: 0.04 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'uc4e' } ] }, diff --git a/packages/chain-registry/src/mainnet/chain4energy/ibc.ts b/packages/chain-registry/src/mainnet/chain4energy/ibc.ts new file mode 100644 index 000000000..f1f4bf882 --- /dev/null +++ b/packages/chain-registry/src/mainnet/chain4energy/ibc.ts @@ -0,0 +1,68 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-203', + connection_id: 'connection-183' + }, + chain_2: { + chain_name: 'chain4energy', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chain4energy', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3107', + connection_id: 'connection-2586' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-22172', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/chain4energy/ibc_chain1.ts b/packages/chain-registry/src/mainnet/chain4energy/ibc_chain1.ts new file mode 100644 index 000000000..af227cb9d --- /dev/null +++ b/packages/chain-registry/src/mainnet/chain4energy/ibc_chain1.ts @@ -0,0 +1,36 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chain4energy', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3107', + connection_id: 'connection-2586' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-22172', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/chain4energy/index.ts b/packages/chain-registry/src/mainnet/chain4energy/index.ts index 40bf3856e..af8a2d557 100644 --- a/packages/chain-registry/src/mainnet/chain4energy/index.ts +++ b/packages/chain-registry/src/mainnet/chain4energy/index.ts @@ -1,5 +1,9 @@ import _assets from './assets'; import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; export const assets = _assets; export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/chains.ts b/packages/chain-registry/src/mainnet/chains.ts index 3b6194c17..a1c525bec 100644 --- a/packages/chain-registry/src/mainnet/chains.ts +++ b/packages/chain-registry/src/mainnet/chains.ts @@ -51,6 +51,7 @@ import * as _empowerchain from './empowerchain'; import * as _ethos from './ethos'; import * as _evmos from './evmos'; import * as _fetchhub from './fetchhub'; +import * as _finschia from './finschia'; import * as _firmachain from './firmachain'; import * as _furya from './furya'; import * as _fxcore from './fxcore'; @@ -58,6 +59,7 @@ import * as _galaxy from './galaxy'; import * as _gateway from './gateway'; import * as _genesisl1 from './genesisl1'; import * as _gitopia from './gitopia'; +import * as _govgen from './govgen'; import * as _gravitybridge from './gravitybridge'; import * as _haqq from './haqq'; import * as _highbury from './highbury'; @@ -202,6 +204,7 @@ const chains: Chain[] = [ _ethos.chain, _evmos.chain, _fetchhub.chain, + _finschia.chain, _firmachain.chain, _furya.chain, _fxcore.chain, @@ -209,6 +212,7 @@ const chains: Chain[] = [ _gateway.chain, _genesisl1.chain, _gitopia.chain, + _govgen.chain, _gravitybridge.chain, _haqq.chain, _highbury.chain, diff --git a/packages/chain-registry/src/mainnet/cheqd/chain.ts b/packages/chain-registry/src/mainnet/cheqd/chain.ts index 145d61c95..53e44ff7c 100644 --- a/packages/chain-registry/src/mainnet/cheqd/chain.ts +++ b/packages/chain-registry/src/mainnet/cheqd/chain.ts @@ -69,6 +69,10 @@ const info: Chain = { { address: 'https://public.stakewolle.com/cosmos/cheqd/rpc', provider: 'Stakewolle' + }, + { + address: 'https://cheq-rpc.kleomedes.network', + provider: 'Kleomedes' } ], rest: [ @@ -107,6 +111,10 @@ const info: Chain = { { address: 'https://public.stakewolle.com/cosmos/cheqd/rest', provider: 'Stakewolle' + }, + { + address: 'https://cheq-api.kleomedes.network', + provider: 'Kleomedes' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/chihuahua/ibc.ts b/packages/chain-registry/src/mainnet/chihuahua/ibc.ts index e9a3b6858..1b7df82ce 100644 --- a/packages/chain-registry/src/mainnet/chihuahua/ibc.ts +++ b/packages/chain-registry/src/mainnet/chihuahua/ibc.ts @@ -191,6 +191,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chihuahua', + client_id: '07-tendermint-207', + connection_id: 'connection-137' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-168', + connection_id: 'connection-212' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-94', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-203', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts b/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts index e9a3b6858..1b7df82ce 100644 --- a/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/chihuahua/ibc_chain1.ts @@ -191,6 +191,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chihuahua', + client_id: '07-tendermint-207', + connection_id: 'connection-137' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-168', + connection_id: 'connection-212' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-94', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-203', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/desmos/chain.ts b/packages/chain-registry/src/mainnet/desmos/chain.ts index d0bcf1ab7..b8644d345 100644 --- a/packages/chain-registry/src/mainnet/desmos/chain.ts +++ b/packages/chain-registry/src/mainnet/desmos/chain.ts @@ -30,7 +30,11 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmos_sdk_version: 'desmos-labs/cosmos-sdk v0.47.9-desmos', + cosmwasm_enabled: true, + cosmwasm_version: 'v0.45.0' + }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' diff --git a/packages/chain-registry/src/mainnet/dymension/ibc.ts b/packages/chain-registry/src/mainnet/dymension/ibc.ts index 273c0a9a6..cacda5b4f 100644 --- a/packages/chain-registry/src/mainnet/dymension/ibc.ts +++ b/packages/chain-registry/src/mainnet/dymension/ibc.ts @@ -93,6 +93,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-31', + connection_id: 'connection-22' + }, + chain_2: { + chain_name: 'evmos', + client_id: '07-tendermint-138', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-37', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-109', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts index 1922cec9a..09327e625 100644 --- a/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/dymension/ibc_chain1.ts @@ -1,5 +1,36 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-31', + connection_id: 'connection-22' + }, + chain_2: { + chain_name: 'evmos', + client_id: '07-tendermint-138', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-37', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-109', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/evmos/ibc.ts b/packages/chain-registry/src/mainnet/evmos/ibc.ts index fe050dabe..8922912c3 100644 --- a/packages/chain-registry/src/mainnet/evmos/ibc.ts +++ b/packages/chain-registry/src/mainnet/evmos/ibc.ts @@ -340,6 +340,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dymension', + client_id: '07-tendermint-31', + connection_id: 'connection-22' + }, + chain_2: { + chain_name: 'evmos', + client_id: '07-tendermint-138', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-37', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-109', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/finschia/assets.ts b/packages/chain-registry/src/mainnet/finschia/assets.ts new file mode 100644 index 000000000..8f3e56f5b --- /dev/null +++ b/packages/chain-registry/src/mainnet/finschia/assets.ts @@ -0,0 +1,38 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chain_name: 'finschia', + assets: [ + { + description: 'The native token of Finschia', + denom_units: [ + { + denom: 'cony', + exponent: 0 + }, + { + denom: 'fnsa', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'cony', + name: 'Finschia', + display: 'fnsa', + symbol: 'FNSA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } + ], + coingecko_id: 'link', + keywords: ['staking'] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/finschia/chain.ts b/packages/chain-registry/src/mainnet/finschia/chain.ts new file mode 100644 index 000000000..44d226c68 --- /dev/null +++ b/packages/chain-registry/src/mainnet/finschia/chain.ts @@ -0,0 +1,79 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../chain.schema.json', + chain_name: 'finschia', + chain_id: 'finschia-2', + website: 'https://www.finschia.io/', + pretty_name: 'Finschia', + status: 'live', + network_type: 'mainnet', + bech32_prefix: 'link', + daemon_name: 'fnsad', + node_home: '$HOME/.finschia', + key_algos: ['secp256k1'], + slip44: 438, + fees: { + fee_tokens: [ + { + denom: 'cony', + fixed_min_gas_price: 0.015, + low_gas_price: 0.015, + average_gas_price: 0.015, + high_gas_price: 0.015 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'cony' + } + ], + lock_duration: { + time: '604800s' + } + }, + codebase: { + cosmos_sdk_version: 'github.com/Finschia/finschia-sdk@v0.48.1', + cosmwasm_enabled: true, + cosmwasm_version: 'github.com/Finschia/wasmd@v0.2.0' + }, + description: + 'Finschia (formerly LINE Blockchain Mainnet) aims to build a sustainable token model and create token demand to become a blockchain with 1 billion users.', + apis: { + rpc: [ + { + address: 'https://finschia-rpc.finschia.io' + } + ], + rest: [ + { + address: 'https://finschia-api.finschia.io' + } + ], + grpc: [ + { + address: 'finschia-grpc.finschia.io:443' + } + ] + }, + explorers: [ + { + kind: 'mintscan', + url: 'https://www.mintscan.io/finschia', + tx_page: 'https://www.mintscan.io/finschia/tx/${txHash}', + account_page: 'https://www.mintscan.io/finschia/address/${accountAddress}' + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/finschia/index.ts b/packages/chain-registry/src/mainnet/finschia/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/finschia/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/govgen/assets.ts b/packages/chain-registry/src/mainnet/govgen/assets.ts new file mode 100644 index 000000000..2877f2984 --- /dev/null +++ b/packages/chain-registry/src/mainnet/govgen/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chain_name: 'govgen', + assets: [ + { + description: 'The native staking and governance token of GovGen', + denom_units: [ + { + denom: 'ugovgen', + exponent: 0 + }, + { + denom: 'govgen', + exponent: 6 + } + ], + base: 'ugovgen', + name: 'GovGen', + display: 'govgen', + symbol: 'GOVGEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.svg' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/govgen/chain.ts b/packages/chain-registry/src/mainnet/govgen/chain.ts new file mode 100644 index 000000000..c990d7eb9 --- /dev/null +++ b/packages/chain-registry/src/mainnet/govgen/chain.ts @@ -0,0 +1,145 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../chain.schema.json', + chain_name: 'govgen', + chain_id: 'govgen-1', + website: 'https://govgen.io/', + pretty_name: 'GovGen', + status: 'live', + network_type: 'mainnet', + bech32_prefix: 'govgen', + daemon_name: 'govgend', + node_home: '$HOME/.govgen', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ugovgen', + fixed_min_gas_price: 0.001, + low_gas_price: 0.006, + average_gas_price: 0.006, + high_gas_price: 0.009 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'ugovgen' + } + ] + }, + codebase: { + cosmos_sdk_version: 'v0.45.16' + }, + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.svg' + }, + description: + 'GovGen is a governance-only chain separate from the proposed AtomOne hub chain. GovGen aims to gauge the sentiment of those who voted “NO” or “NO_WITH_VETO” on Cosmos Hub proposal 848 regarding the potential future of AtomOne. Through the native, non-transferable GOVGEN governance-only token, this community can come together to discuss, debate, submit proposals, and help shape the future of AtomOne in a fully decentralized community-driven initiative.', + apis: { + rpc: [ + { + address: 'https://rpc.govgen.io:443', + provider: 'AllInBits' + }, + { + address: 'https://rpc-govgen.sg-1.online/', + provider: 'SG-1' + }, + { + address: 'https://govgen.rpc.nodeshub.online:443', + provider: 'Nodes Hub' + }, + { + address: 'https://govgen-rpc.publicnode.com:443', + provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'https://rpc.govgen.posthuman.digital:443', + provider: 'posthuman' + } + ], + rest: [ + { + address: 'https://api.govgen.io/', + provider: 'AllInBits' + }, + { + address: 'https://api-govgen.sg-1.online/', + provider: 'SG-1' + }, + { + address: 'https://govgen.api.nodeshub.online/', + provider: 'Nodes Hub' + }, + { + address: 'https://govgen-rest.publicnode.com', + provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'https://rest.govgen.posthuman.digital:443', + provider: 'posthuman' + } + ], + grpc: [ + { + address: 'govgen-grpc.publicnode.com:443', + provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'https://govgen.grpc.nodeshub.online:443', + provider: 'Nodes Hub' + }, + { + address: 'https://grpc.govgen.posthuman.digital:443', + provider: 'posthuman' + } + ] + }, + explorers: [ + { + kind: 'ping.pub', + url: 'https://explorer.govgen.io/', + tx_page: 'https://explorer.govgen.io/govgen/tx/${txHash}', + account_page: + 'https://explorer.govgen.io/govgen/account/${accountAddress}' + }, + { + kind: 'ping.pub', + url: 'https://explorer.nodeshub.online/govgen', + tx_page: 'https://explorer.nodeshub.online/govgen/tx/${txHash}', + account_page: + 'https://explorer.nodeshub.online/govgen/account/${accountAddress}' + }, + { + kind: 'ping.pub', + url: 'https://explorer.equinoxdao.xyz/govgen', + tx_page: 'https://explorer.equinoxdao.xyz/govgen/tx/${txHash}', + account_page: + 'https://explorer.equinoxdao.xyz/govgen/account/${accountAddress}' + }, + { + kind: 'ping.pub', + url: 'https://test.explorer.ist/govgen', + tx_page: 'https://test.explorer.ist/govgen/tx/${txHash}', + account_page: 'https://test.explorer.ist/govgen/account/${accountAddress}' + }, + { + kind: 'posthuman', + url: 'https://explorer.posthuman.digital/govgen', + tx_page: 'https://explorer.posthuman.digital/govgen/tx/${txHash}', + account_page: + 'https://explorer.posthuman.digital/govgen/account/${accountAddress}' + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/govgen/images/govgen.svg' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/govgen/index.ts b/packages/chain-registry/src/mainnet/govgen/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/govgen/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/ibc.ts b/packages/chain-registry/src/mainnet/ibc.ts index 23e2c5cab..4212a6796 100644 --- a/packages/chain-registry/src/mainnet/ibc.ts +++ b/packages/chain-registry/src/mainnet/ibc.ts @@ -21,6 +21,7 @@ import * as _canto from './canto'; import * as _carbon from './carbon'; import * as _celestia from './celestia'; import * as _cerberus from './cerberus'; +import * as _chain4energy from './chain4energy'; import * as _cheqd from './cheqd'; import * as _chihuahua from './chihuahua'; import * as _comdex from './comdex'; @@ -119,6 +120,7 @@ const ibc: IBCInfo[] = [ ..._carbon.ibc_chain1, ..._celestia.ibc_chain1, ..._cerberus.ibc_chain1, + ..._chain4energy.ibc_chain1, ..._cheqd.ibc_chain1, ..._chihuahua.ibc_chain1, ..._comdex.ibc_chain1, diff --git a/packages/chain-registry/src/mainnet/index.ts b/packages/chain-registry/src/mainnet/index.ts index 8098d4039..99bb847c2 100644 --- a/packages/chain-registry/src/mainnet/index.ts +++ b/packages/chain-registry/src/mainnet/index.ts @@ -49,6 +49,7 @@ export * as empowerchain from './empowerchain'; export * as ethos from './ethos'; export * as evmos from './evmos'; export * as fetchhub from './fetchhub'; +export * as finschia from './finschia'; export * as firmachain from './firmachain'; export * as furya from './furya'; export * as fxcore from './fxcore'; @@ -56,6 +57,7 @@ export * as galaxy from './galaxy'; export * as gateway from './gateway'; export * as genesisl1 from './genesisl1'; export * as gitopia from './gitopia'; +export * as govgen from './govgen'; export * as gravitybridge from './gravitybridge'; export * as haqq from './haqq'; export * as highbury from './highbury'; diff --git a/packages/chain-registry/src/mainnet/injective/ibc.ts b/packages/chain-registry/src/mainnet/injective/ibc.ts index fc8c9af05..2541e1d42 100644 --- a/packages/chain-registry/src/mainnet/injective/ibc.ts +++ b/packages/chain-registry/src/mainnet/injective/ibc.ts @@ -486,6 +486,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-253', + connection_id: 'connection-245' + }, + chain_2: { + chain_name: 'odin', + client_id: '07-tendermint-122', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-214', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-65', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts index b40f2661c..38cc8e8da 100644 --- a/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts @@ -203,6 +203,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-253', + connection_id: 'connection-245' + }, + chain_2: { + chain_name: 'odin', + client_id: '07-tendermint-122', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-214', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-65', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/jackal/chain.ts b/packages/chain-registry/src/mainnet/jackal/chain.ts index 9e1b7e043..9833f38e2 100644 --- a/packages/chain-registry/src/mainnet/jackal/chain.ts +++ b/packages/chain-registry/src/mainnet/jackal/chain.ts @@ -108,6 +108,10 @@ const info: Chain = { { address: 'https://rpc.jackal.mathnodes.com', provider: 'MathNodes' + }, + { + address: 'https://jackal-rpc.kleomedes.network', + provider: 'Kleomedes' } ], rest: [ @@ -170,6 +174,10 @@ const info: Chain = { { address: 'https://api.jackal.mathnodes.com', provider: 'MathNodes' + }, + { + address: 'https://jackal-api.kleomedes.network', + provider: 'Kleomedes' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/juno/assets.ts b/packages/chain-registry/src/mainnet/juno/assets.ts index 91378e01d..4fa178a27 100644 --- a/packages/chain-registry/src/mainnet/juno/assets.ts +++ b/packages/chain-registry/src/mainnet/juno/assets.ts @@ -1152,6 +1152,8 @@ const info: AssetList = { }, { description: 'Kleomedes Token', + extended_description: + 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.', type_asset: 'cw20', address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', @@ -2110,6 +2112,64 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' } ] + }, + { + description: 'ATEN is NETA.', + type_asset: 'cw20', + address: + 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + denom_units: [ + { + denom: + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + exponent: 0 + }, + { + denom: 'aten', + exponent: 6 + } + ], + base: 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + name: 'ATEN', + display: 'aten', + symbol: 'ATEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + } + ] + }, + { + description: 'HERA is the goddess of marriage in Greek mythology.', + type_asset: 'cw20', + address: + 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + denom_units: [ + { + denom: + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + exponent: 0 + }, + { + denom: 'hera', + exponent: 6 + } + ], + base: 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + name: 'HERA', + display: 'hera', + symbol: 'HERA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/juno/chain.ts b/packages/chain-registry/src/mainnet/juno/chain.ts index 6c3518fc3..2cebde40b 100644 --- a/packages/chain-registry/src/mainnet/juno/chain.ts +++ b/packages/chain-registry/src/mainnet/juno/chain.ts @@ -154,6 +154,10 @@ const info: Chain = { { address: 'https://rpc.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://juno-rpc.cogwheel.zone', + provider: 'Cogwheel' } ], rest: [ @@ -248,6 +252,10 @@ const info: Chain = { { address: 'https://lcd.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://juno-api.cogwheel.zone', + provider: 'Cogwheel' } ], grpc: [ @@ -322,6 +330,10 @@ const info: Chain = { { address: 'https://grpc.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'juno-grpc.cogwheel.zone:443', + provider: 'Cogwheel' } ] }, diff --git a/packages/chain-registry/src/mainnet/kyve/chain.ts b/packages/chain-registry/src/mainnet/kyve/chain.ts index 74e5c77bf..89eed2db7 100644 --- a/packages/chain-registry/src/mainnet/kyve/chain.ts +++ b/packages/chain-registry/src/mainnet/kyve/chain.ts @@ -65,10 +65,6 @@ const info: Chain = { address: 'https://kyve-rpc.ibs.team', provider: 'Inter Blockchain Services' }, - { - address: 'https://rpc-kyve.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://rpc.kyve.nodestake.top', provider: 'NodeStake' @@ -111,10 +107,6 @@ const info: Chain = { address: 'https://api.kyve.nodestake.top', provider: 'NodeStake' }, - { - address: 'https://api-kyve.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://kyve.api.liveraven.net', provider: 'LiveRaveN' @@ -133,10 +125,6 @@ const info: Chain = { address: 'https://kyve-grpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' }, - { - address: 'grpc-kyve.cosmos-spaces.cloud:2590', - provider: 'Cosmos Spaces' - }, { address: 'https://grpc-kyve.nodeist.net', provider: 'Nodeist' diff --git a/packages/chain-registry/src/mainnet/neutron/chain.ts b/packages/chain-registry/src/mainnet/neutron/chain.ts index 7569e9655..9b9a231f4 100644 --- a/packages/chain-registry/src/mainnet/neutron/chain.ts +++ b/packages/chain-registry/src/mainnet/neutron/chain.ts @@ -16,44 +16,44 @@ const info: Chain = { fee_tokens: [ { denom: 'untrn', - low_gas_price: 0.075, - average_gas_price: 0.075, - high_gas_price: 0.1125 + low_gas_price: 0.0053, + average_gas_price: 0.0053, + high_gas_price: 0.0053 }, { denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - low_gas_price: 0.007, - average_gas_price: 0.007, - high_gas_price: 0.0105 + low_gas_price: 0.0008, + average_gas_price: 0.0008, + high_gas_price: 0.0008 }, { denom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', - low_gas_price: 0.08, - average_gas_price: 0.08, - high_gas_price: 0.12 + low_gas_price: 0.008, + average_gas_price: 0.008, + high_gas_price: 0.008 }, { denom: 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - low_gas_price: 30125586.037, - average_gas_price: 30125586.037, - high_gas_price: 45188379.0555 + low_gas_price: 2903231.6597, + average_gas_price: 2903231.6597, + high_gas_price: 2903231.6597 }, { denom: 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - low_gas_price: 25641025641.026, - average_gas_price: 25641025641.026, - high_gas_price: 38461538461.5 + low_gas_price: 2564102564.1026, + average_gas_price: 2564102564.1026, + high_gas_price: 2564102564.1026 }, { denom: 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', - low_gas_price: 0.006, - average_gas_price: 0.006, - high_gas_price: 0.009 + low_gas_price: 0.0004, + average_gas_price: 0.0004, + high_gas_price: 0.0004 } ] }, diff --git a/packages/chain-registry/src/mainnet/nyx/assets.ts b/packages/chain-registry/src/mainnet/nyx/assets.ts index 441441310..13bdb3882 100644 --- a/packages/chain-registry/src/mainnet/nyx/assets.ts +++ b/packages/chain-registry/src/mainnet/nyx/assets.ts @@ -4,7 +4,8 @@ const info: AssetList = { chain_name: 'nyx', assets: [ { - description: "NYX Token (NYX) is the Nym Network's native token.", + description: + "NYX Token (NYX) is the Nym Network's native staking and governance token.", denom_units: [ { denom: 'unyx', @@ -47,21 +48,21 @@ const info: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg', theme: { dark_mode: false, circle: true } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg', theme: { dark_mode: true, circle: true diff --git a/packages/chain-registry/src/mainnet/nyx/chain.ts b/packages/chain-registry/src/mainnet/nyx/chain.ts index 56591f4d5..df954914c 100644 --- a/packages/chain-registry/src/mainnet/nyx/chain.ts +++ b/packages/chain-registry/src/mainnet/nyx/chain.ts @@ -43,7 +43,7 @@ const info: Chain = { cosmwasm_enabled: true }, logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png' }, apis: { rpc: [ @@ -126,16 +126,16 @@ const info: Chain = { ], images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg', theme: { dark_mode: false, circle: true } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg', theme: { dark_mode: true, circle: true diff --git a/packages/chain-registry/src/mainnet/odin/assets.ts b/packages/chain-registry/src/mainnet/odin/assets.ts index 41418a4f5..38f7c2459 100644 --- a/packages/chain-registry/src/mainnet/odin/assets.ts +++ b/packages/chain-registry/src/mainnet/odin/assets.ts @@ -26,6 +26,10 @@ const info: AssetList = { coingecko_id: 'odin-protocol', images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } @@ -53,61 +57,15 @@ const info: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } ] }, - { - description: 'DOKI the last Dragon', - denom_units: [ - { - denom: 'udoki', - exponent: 0 - }, - { - denom: 'doki', - exponent: 6 - } - ], - base: 'udoki', - name: 'DOKI', - display: 'doki', - symbol: 'DOKI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - } - ] - }, - { - description: 'Myrkur the leader of OLD Order', - denom_units: [ - { - denom: 'umyrk', - exponent: 0 - }, - { - denom: 'myrk', - exponent: 6 - } - ], - base: 'umyrk', - name: 'MYRK', - display: 'myrk', - symbol: 'MYRK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - } - ] - }, { description: 'O9W token for ODIN Protocol', denom_units: [ @@ -130,6 +88,10 @@ const info: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } diff --git a/packages/chain-registry/src/mainnet/odin/chain.ts b/packages/chain-registry/src/mainnet/odin/chain.ts index 24df381a7..7874bdcdb 100644 --- a/packages/chain-registry/src/mainnet/odin/chain.ts +++ b/packages/chain-registry/src/mainnet/odin/chain.ts @@ -2,7 +2,7 @@ import { Chain } from '@chain-registry/types'; const info: Chain = { $schema: '../chain.schema.json', chain_name: 'odin', - status: 'live', + status: 'killed', network_type: 'mainnet', website: 'https://odinprotocol.io/', pretty_name: 'Odin Protocol', @@ -38,12 +38,8 @@ const info: Chain = { apis: { rpc: [ { - address: 'https://rpc.odinprotocol.io', - provider: 'Heimdall Gateway' - }, - { - address: 'https://odin.rpc.m.stavr.tech:443', - provider: '🔥STAVR🔥' + address: 'http://34.79.179.216:26657', + provider: 'Odin Protocol' }, { address: 'https://odin-rpc.lavenderfive.com/', @@ -56,12 +52,8 @@ const info: Chain = { ], rest: [ { - address: 'https://api.odinprotocol.io', - provider: 'Heimdall Gateway' - }, - { - address: 'https://odin.api.m.stavr.tech', - provider: '🔥STAVR🔥' + address: 'http://34.79.179.216:1317/', + provider: 'Odin Protocol' }, { address: 'https://odin-api.lavenderfive.com/', @@ -77,10 +69,6 @@ const info: Chain = { address: 'odin-grpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' }, - { - address: 'odin.grpc.m.stavr.tech:122', - provider: '🔥STAVR🔥' - }, { address: 'odin-mainnet-grpc.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' @@ -93,11 +81,6 @@ const info: Chain = { url: 'https://mainnet.odinprotocol.io/', tx_page: 'https://mainnet.odinprotocol.io/transactions/${txHash}' }, - { - kind: '🔥STAVR🔥', - url: 'https://explorer.stavr.tech/Odin-Mainnet', - tx_page: 'https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}' - }, { kind: 'ping.pub', url: 'https://ping.pub/odin', @@ -106,6 +89,9 @@ const info: Chain = { ], images: [ { + image_sync: { + chain_name: 'odin' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } diff --git a/packages/chain-registry/src/mainnet/odin/ibc.ts b/packages/chain-registry/src/mainnet/odin/ibc.ts index d303feca6..3fc59b128 100644 --- a/packages/chain-registry/src/mainnet/odin/ibc.ts +++ b/packages/chain-registry/src/mainnet/odin/ibc.ts @@ -31,6 +31,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-253', + connection_id: 'connection-245' + }, + chain_2: { + chain_name: 'odin', + client_id: '07-tendermint-122', + connection_id: 'connection-85' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-214', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-65', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/osmosis/assets.ts b/packages/chain-registry/src/mainnet/osmosis/assets.ts index 62c272faf..d1c8c126c 100644 --- a/packages/chain-registry/src/mainnet/osmosis/assets.ts +++ b/packages/chain-registry/src/mainnet/osmosis/assets.ts @@ -14075,6 +14075,36 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + exponent: 0 + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc.ts b/packages/chain-registry/src/mainnet/osmosis/ibc.ts index 75b235bcb..5bc38e8e3 100644 --- a/packages/chain-registry/src/mainnet/osmosis/ibc.ts +++ b/packages/chain-registry/src/mainnet/osmosis/ibc.ts @@ -633,6 +633,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chain4energy', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3107', + connection_id: 'connection-2586' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-22172', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -2806,6 +2838,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosis', + client_id: '07-tendermint-3070', + connection_id: 'connection-2558' + }, + chain_2: { + chain_name: 'pylons', + client_id: '07-tendermint-32', + connection_id: 'connection-25' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-17683', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-29', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts index c412de6ef..8c9d22521 100644 --- a/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts @@ -192,6 +192,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosis', + client_id: '07-tendermint-3070', + connection_id: 'connection-2558' + }, + chain_2: { + chain_name: 'pylons', + client_id: '07-tendermint-32', + connection_id: 'connection-25' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-17683', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-29', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/persistence/assets.ts b/packages/chain-registry/src/mainnet/persistence/assets.ts index 9c19c69df..0d8e42377 100644 --- a/packages/chain-registry/src/mainnet/persistence/assets.ts +++ b/packages/chain-registry/src/mainnet/persistence/assets.ts @@ -50,6 +50,16 @@ const info: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', + traces: [ + { + type: 'liquid-stake', + counterparty: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + provider: 'pSTAKE' + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' @@ -336,6 +346,16 @@ const info: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', + traces: [ + { + type: 'liquid-stake', + counterparty: { + chain_name: 'osmosis', + base_denom: 'uosmo' + }, + provider: 'pSTAKE' + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' @@ -366,6 +386,16 @@ const info: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'liquid-stake', + counterparty: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + provider: 'pSTAKE' + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -376,6 +406,142 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: 'stk/ustars', + exponent: 0, + aliases: [] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } + ], + base: 'stk/ustars', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', + traces: [ + { + type: 'liquid-stake', + counterparty: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + provider: 'pSTAKE' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + exponent: 0, + aliases: ['ustars'] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'stargaze', + base_denom: 'ustars', + channel_id: 'channel-287' + }, + chain: { + channel_id: 'channel-197', + path: 'transfer/channel-197/ustars' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + exponent: 0, + aliases: ['cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm'] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc-cw20', + counterparty: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132' + }, + chain: { + port: 'transfer', + channel_id: 'channel-159', + path: 'transfer/channel-159/cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/persistence/ibc.ts b/packages/chain-registry/src/mainnet/persistence/ibc.ts index a107ed20a..f5667fb60 100644 --- a/packages/chain-registry/src/mainnet/persistence/ibc.ts +++ b/packages/chain-registry/src/mainnet/persistence/ibc.ts @@ -1,5 +1,36 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-93', + connection_id: 'connection-91' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-167', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-72', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-202', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -28,6 +59,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'chihuahua', + client_id: '07-tendermint-207', + connection_id: 'connection-137' + }, + chain_2: { + chain_name: 'persistence', + client_id: '07-tendermint-168', + connection_id: 'connection-212' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-94', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-203', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -533,6 +595,19 @@ const info: IBCInfo[] = [ ordering: 'unordered', version: 'ics20-1', tags: {} + }, + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-132', + port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, diff --git a/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts index 6bd87bd0d..c77cbc30d 100644 --- a/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/persistence/ibc_chain1.ts @@ -81,6 +81,19 @@ const info: IBCInfo[] = [ ordering: 'unordered', version: 'ics20-1', tags: {} + }, + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-132', + port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, diff --git a/packages/chain-registry/src/mainnet/pylons/ibc.ts b/packages/chain-registry/src/mainnet/pylons/ibc.ts new file mode 100644 index 000000000..65ec92990 --- /dev/null +++ b/packages/chain-registry/src/mainnet/pylons/ibc.ts @@ -0,0 +1,34 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'osmosis', + client_id: '07-tendermint-3070', + connection_id: 'connection-2558' + }, + chain_2: { + chain_name: 'pylons', + client_id: '07-tendermint-32', + connection_id: 'connection-25' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-17683', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-29', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/pylons/index.ts b/packages/chain-registry/src/mainnet/pylons/index.ts index 40bf3856e..86a6e3440 100644 --- a/packages/chain-registry/src/mainnet/pylons/index.ts +++ b/packages/chain-registry/src/mainnet/pylons/index.ts @@ -1,5 +1,7 @@ import _assets from './assets'; import _chain from './chain'; +import _ibc from './ibc'; export const assets = _assets; export const chain = _chain; +export const ibc = _ibc; diff --git a/packages/chain-registry/src/mainnet/qwoyn/chain.ts b/packages/chain-registry/src/mainnet/qwoyn/chain.ts index bd03ab65e..d048b09f6 100644 --- a/packages/chain-registry/src/mainnet/qwoyn/chain.ts +++ b/packages/chain-registry/src/mainnet/qwoyn/chain.ts @@ -5,6 +5,8 @@ const info: Chain = { status: 'live', network_type: 'mainnet', website: 'https://qwoyn.studio/', + description: + 'The Qwoyn Network stands as a cutting-edge gaming hub that embeds Web3 technologies into the core of interactive entertainment. It revolutionizes the gaming industry by ensuring true ownership of in-game assets for players, facilitated through blockchain. This approach not only enhances gameplay but also fosters a unique ecosystem of interoperability and innovation. As a beacon in the gaming world, Qwoyn Network is dedicated to merging the excitement of traditional gaming with the transformative potential of Web3, creating a seamless and enriched gaming experience.', pretty_name: 'Qwoyn', chain_id: 'qwoyn-1', bech32_prefix: 'qwoyn', diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts index 473bbbe6e..a06cd2829 100644 --- a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts @@ -919,6 +919,19 @@ const info: IBCInfo[] = [ ordering: 'unordered', version: 'ics20-1', tags: {} + }, + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-132', + port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} } ] }, diff --git a/packages/chain-registry/src/mainnet/sei/chain.ts b/packages/chain-registry/src/mainnet/sei/chain.ts index 6f3e119ac..8773cb362 100644 --- a/packages/chain-registry/src/mainnet/sei/chain.ts +++ b/packages/chain-registry/src/mainnet/sei/chain.ts @@ -31,7 +31,7 @@ const info: Chain = { ] }, codebase: { - cosmos_sdk_version: 'sei-cosmos v0.2.72', + cosmos_sdk_version: 'sei-cosmos v0.2.74', cosmwasm_enabled: true, cosmwasm_version: 'sei-wasmd v0.0.4' }, diff --git a/packages/chain-registry/src/mainnet/shentu/chain.ts b/packages/chain-registry/src/mainnet/shentu/chain.ts index 3bbcaf35a..bb2b02a2e 100644 --- a/packages/chain-registry/src/mainnet/shentu/chain.ts +++ b/packages/chain-registry/src/mainnet/shentu/chain.ts @@ -71,6 +71,10 @@ const info: Chain = { { address: 'https://shentu-rpc.panthea.eu', provider: 'Panthea EU' + }, + { + address: 'https://shentu-rpc.kleomedes.network', + provider: 'Kleomedes' } ], rest: [ @@ -109,6 +113,10 @@ const info: Chain = { { address: 'https://shentu-api.panthea.eu', provider: 'Panthea EU' + }, + { + address: 'https://shentu-api.kleomedes.network', + provider: 'Kleomedes' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/sifchain/chain.ts b/packages/chain-registry/src/mainnet/sifchain/chain.ts index faffd1a8b..96690461b 100644 --- a/packages/chain-registry/src/mainnet/sifchain/chain.ts +++ b/packages/chain-registry/src/mainnet/sifchain/chain.ts @@ -39,10 +39,6 @@ const info: Chain = { address: 'https://sifchain-rpc.polkachu.com', provider: 'Polkachu' }, - { - address: 'https://rpc-sifchain-ia.cosmosia.notional.ventures/', - provider: 'Notional' - }, { address: 'https://sifchain-mainnet-rpc.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' @@ -71,10 +67,6 @@ const info: Chain = { } ], grpc: [ - { - address: 'grpc-sifchain-ia.cosmosia.notional.ventures:443', - provider: 'Notional' - }, { address: 'sifchain-mainnet-grpc.autostake.com:443', provider: 'AutoStake 🛡️ Slash Protected' @@ -90,23 +82,11 @@ const info: Chain = { ] }, explorers: [ - { - kind: 'EZ Staking', - url: 'https://app.ezstaking.io/sifchain', - tx_page: 'https://app.ezstaking.io/sifchain/txs/${txHash}', - account_page: - 'https://app.ezstaking.io/sifchain/account/${accountAddress}' - }, { kind: 'ping.pub', url: 'https://ping.pub/sifchain', tx_page: 'https://ping.pub/sifchain/tx/${txHash}' }, - { - kind: 'explorers.guru', - url: 'https://sifchain.explorers.guru', - tx_page: 'https://sifchain.explorers.guru/transaction/${txHash}' - }, { kind: 'atomscan', url: 'https://atomscan.com/sifchain', diff --git a/packages/chain-registry/src/mainnet/source/assets.ts b/packages/chain-registry/src/mainnet/source/assets.ts index 22525ffdb..484f0a494 100644 --- a/packages/chain-registry/src/mainnet/source/assets.ts +++ b/packages/chain-registry/src/mainnet/source/assets.ts @@ -39,7 +39,7 @@ const info: AssetList = { denom: 'ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A', exponent: 0, - aliases: ['srcx'] + aliases: ['nsrcx'] }, { denom: 'srcx', diff --git a/packages/chain-registry/src/mainnet/stargaze/chain.ts b/packages/chain-registry/src/mainnet/stargaze/chain.ts index 5375b40a5..c4d6d23fb 100644 --- a/packages/chain-registry/src/mainnet/stargaze/chain.ts +++ b/packages/chain-registry/src/mainnet/stargaze/chain.ts @@ -113,6 +113,10 @@ const info: Chain = { { address: 'https://rpc.stargaze.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://stargaze-rpc.kleomedes.network', + provider: 'Kleomedes' } ], rest: [ @@ -191,6 +195,10 @@ const info: Chain = { { address: 'https://lcd.stargaze.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://stargaze-api.kleomedes.network', + provider: 'Kleomedes' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/stride/chain.ts b/packages/chain-registry/src/mainnet/stride/chain.ts index 702a5ea0e..b84697090 100644 --- a/packages/chain-registry/src/mainnet/stride/chain.ts +++ b/packages/chain-registry/src/mainnet/stride/chain.ts @@ -21,13 +21,6 @@ const info: Chain = { average_gas_price: 0.001, high_gas_price: 0.002 }, - { - denom: 'uatom', - fixed_min_gas_price: 0.0001, - low_gas_price: 0.0001, - average_gas_price: 0.0002, - high_gas_price: 0.0005 - }, { denom: 'stuatom', fixed_min_gas_price: 0.0001, @@ -35,13 +28,6 @@ const info: Chain = { average_gas_price: 0.0002, high_gas_price: 0.0005 }, - { - denom: 'uosmo', - fixed_min_gas_price: 0.001, - low_gas_price: 0.001, - average_gas_price: 0.002, - high_gas_price: 0.004 - }, { denom: 'stuosmo', fixed_min_gas_price: 0.001, @@ -49,13 +35,6 @@ const info: Chain = { average_gas_price: 0.002, high_gas_price: 0.004 }, - { - denom: 'ustars', - fixed_min_gas_price: 1, - low_gas_price: 1, - average_gas_price: 1.1, - high_gas_price: 1.2 - }, { denom: 'stustars', fixed_min_gas_price: 1, @@ -63,13 +42,6 @@ const info: Chain = { average_gas_price: 1.1, high_gas_price: 1.2 }, - { - denom: 'ujuno', - fixed_min_gas_price: 0.075, - low_gas_price: 0.075, - average_gas_price: 0.1, - high_gas_price: 0.125 - }, { denom: 'stujuno', fixed_min_gas_price: 0.075, @@ -77,13 +49,6 @@ const info: Chain = { average_gas_price: 0.1, high_gas_price: 0.125 }, - { - denom: 'uluna', - fixed_min_gas_price: 0.0125, - low_gas_price: 0.0125, - average_gas_price: 0.015, - high_gas_price: 0.04 - }, { denom: 'stuluna', fixed_min_gas_price: 0.0125, @@ -91,13 +56,6 @@ const info: Chain = { average_gas_price: 0.015, high_gas_price: 0.04 }, - { - denom: 'aevmos', - fixed_min_gas_price: 250000000, - low_gas_price: 20000000000, - average_gas_price: 25000000000, - high_gas_price: 40000000000 - }, { denom: 'staevmos', fixed_min_gas_price: 250000000, @@ -105,13 +63,6 @@ const info: Chain = { average_gas_price: 25000000000, high_gas_price: 40000000000 }, - { - denom: 'inj', - fixed_min_gas_price: 500000000, - low_gas_price: 500000000, - average_gas_price: 700000000, - high_gas_price: 900000000 - }, { denom: 'stinj', fixed_min_gas_price: 500000000, @@ -119,13 +70,6 @@ const info: Chain = { average_gas_price: 700000000, high_gas_price: 900000000 }, - { - denom: 'ucmdx', - fixed_min_gas_price: 0.02, - low_gas_price: 0.02, - average_gas_price: 0.025, - high_gas_price: 0.04 - }, { denom: 'stucmdx', fixed_min_gas_price: 0.02, @@ -133,13 +77,6 @@ const info: Chain = { average_gas_price: 0.025, high_gas_price: 0.04 }, - { - denom: 'uumee', - fixed_min_gas_price: 0.1, - low_gas_price: 0.1, - average_gas_price: 0.12, - high_gas_price: 0.2 - }, { denom: 'stuumee', fixed_min_gas_price: 0.1, @@ -147,13 +84,6 @@ const info: Chain = { average_gas_price: 0.12, high_gas_price: 0.2 }, - { - denom: 'utia', - fixed_min_gas_price: 0.002, - low_gas_price: 0.01, - average_gas_price: 0.02, - high_gas_price: 0.1 - }, { denom: 'stutia', fixed_min_gas_price: 0.002, @@ -161,13 +91,6 @@ const info: Chain = { average_gas_price: 0.02, high_gas_price: 0.1 }, - { - denom: 'adydx', - fixed_min_gas_price: 12500000000, - low_gas_price: 12500000000, - average_gas_price: 12500000000, - high_gas_price: 20000000000 - }, { denom: 'stadydx', fixed_min_gas_price: 12500000000, diff --git a/packages/chain-registry/src/mainnet/teritori/assets.ts b/packages/chain-registry/src/mainnet/teritori/assets.ts index a33fbc0c1..d9172c052 100644 --- a/packages/chain-registry/src/mainnet/teritori/assets.ts +++ b/packages/chain-registry/src/mainnet/teritori/assets.ts @@ -179,6 +179,101 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'uusdc', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'noble', + base_denom: 'usdc', + channel_id: 'channel-54' + }, + chain: { + channel_id: 'channel-62', + path: 'transfer/channel-62/uusdc' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'uscrt', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'secretnetwork', + base_denom: 'uscrt', + channel_id: 'channel-111' + }, + chain: { + channel_id: 'channel-63', + path: 'transfer/channel-63/uscrt' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] } ] }; diff --git a/packages/chain-registry/src/noncosmos/solana/assets.ts b/packages/chain-registry/src/noncosmos/solana/assets.ts index 10514356c..b8b872b24 100644 --- a/packages/chain-registry/src/noncosmos/solana/assets.ts +++ b/packages/chain-registry/src/noncosmos/solana/assets.ts @@ -166,6 +166,34 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } ] + }, + { + description: 'BSKT tracks the top assets across the crypto ecosystem', + type_asset: 'erc20', + address: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA', + denom_units: [ + { + denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA', + exponent: 0 + }, + { + denom: 'bskt', + exponent: 5 + } + ], + base: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA', + name: 'Basket', + display: 'bskt', + symbol: 'BSKT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + }, + coingecko_id: 'basket', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/testnet/assets.ts b/packages/chain-registry/src/testnet/assets.ts index 19ba7392e..059eb41e4 100644 --- a/packages/chain-registry/src/testnet/assets.ts +++ b/packages/chain-registry/src/testnet/assets.ts @@ -31,6 +31,7 @@ import * as _empowertestnet from './empowertestnet'; import * as _entrypointtestnet from './entrypointtestnet'; import * as _evmostestnet from './evmostestnet'; import * as _fetchhubtestnet from './fetchhubtestnet'; +import * as _finschiatestnet from './finschiatestnet'; import * as _gitopiatestnet from './gitopiatestnet'; import * as _hedgetestnet from './hedgetestnet'; import * as _humanstestnet from './humanstestnet'; @@ -72,6 +73,7 @@ import * as _seitestnet from './seitestnet'; import * as _seitestnet2 from './seitestnet2'; import * as _selfchaindevnet from './selfchaindevnet'; import * as _sgetestnet from './sgetestnet'; +import * as _sgetestnet4 from './sgetestnet4'; import * as _sixtestnet from './sixtestnet'; import * as _sourcetestnet from './sourcetestnet'; import * as _stargazetestnet from './stargazetestnet'; @@ -122,6 +124,7 @@ const assets: AssetList[] = [ _entrypointtestnet.assets, _evmostestnet.assets, _fetchhubtestnet.assets, + _finschiatestnet.assets, _gitopiatestnet.assets, _hedgetestnet.assets, _humanstestnet.assets, @@ -163,6 +166,7 @@ const assets: AssetList[] = [ _seitestnet2.assets, _selfchaindevnet.assets, _sgetestnet.assets, + _sgetestnet4.assets, _sixtestnet.assets, _sourcetestnet.assets, _stargazetestnet.assets, diff --git a/packages/chain-registry/src/testnet/chains.ts b/packages/chain-registry/src/testnet/chains.ts index b00603c65..e207516f5 100644 --- a/packages/chain-registry/src/testnet/chains.ts +++ b/packages/chain-registry/src/testnet/chains.ts @@ -31,6 +31,7 @@ import * as _empowertestnet from './empowertestnet'; import * as _entrypointtestnet from './entrypointtestnet'; import * as _evmostestnet from './evmostestnet'; import * as _fetchhubtestnet from './fetchhubtestnet'; +import * as _finschiatestnet from './finschiatestnet'; import * as _gitopiatestnet from './gitopiatestnet'; import * as _hedgetestnet from './hedgetestnet'; import * as _humanstestnet from './humanstestnet'; @@ -72,6 +73,7 @@ import * as _seitestnet from './seitestnet'; import * as _seitestnet2 from './seitestnet2'; import * as _selfchaindevnet from './selfchaindevnet'; import * as _sgetestnet from './sgetestnet'; +import * as _sgetestnet4 from './sgetestnet4'; import * as _sixtestnet from './sixtestnet'; import * as _sourcetestnet from './sourcetestnet'; import * as _stargazetestnet from './stargazetestnet'; @@ -122,6 +124,7 @@ const chains: Chain[] = [ _entrypointtestnet.chain, _evmostestnet.chain, _fetchhubtestnet.chain, + _finschiatestnet.chain, _gitopiatestnet.chain, _hedgetestnet.chain, _humanstestnet.chain, @@ -163,6 +166,7 @@ const chains: Chain[] = [ _seitestnet2.chain, _selfchaindevnet.chain, _sgetestnet.chain, + _sgetestnet4.chain, _sixtestnet.chain, _sourcetestnet.chain, _stargazetestnet.chain, diff --git a/packages/chain-registry/src/testnet/finschiatestnet/assets.ts b/packages/chain-registry/src/testnet/finschiatestnet/assets.ts new file mode 100644 index 000000000..6a7be37ab --- /dev/null +++ b/packages/chain-registry/src/testnet/finschiatestnet/assets.ts @@ -0,0 +1,37 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'finschiatestnet', + assets: [ + { + description: 'The native token of Ebony', + denom_units: [ + { + denom: 'tcony', + exponent: 0 + }, + { + denom: 'tfnsa', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'tcony', + name: 'Test FINSCHIA', + display: 'tfnsa', + symbol: 'TFNSA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } + ], + keywords: ['staking'] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/finschiatestnet/chain.ts b/packages/chain-registry/src/testnet/finschiatestnet/chain.ts new file mode 100644 index 000000000..cacdb37ab --- /dev/null +++ b/packages/chain-registry/src/testnet/finschiatestnet/chain.ts @@ -0,0 +1,78 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'finschiatestnet', + chain_id: 'ebony-2', + website: 'https://www.finschia.io/', + pretty_name: 'Ebony', + status: 'live', + network_type: 'testnet', + bech32_prefix: 'tlink', + daemon_name: 'fnsad', + node_home: '$HOME/.finschia', + key_algos: ['secp256k1'], + slip44: 438, + fees: { + fee_tokens: [ + { + denom: 'tcony', + fixed_min_gas_price: 0.015, + low_gas_price: 0.015, + average_gas_price: 0.015, + high_gas_price: 0.015 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'tcony' + } + ], + lock_duration: { + time: '86400s' + } + }, + codebase: { + cosmos_sdk_version: 'github.com/Finschia/finschia-sdk@v0.48.1', + cosmwasm_enabled: true, + cosmwasm_version: 'github.com/Finschia/wasmd@v0.2.0' + }, + apis: { + rpc: [ + { + address: 'https://ebony-rpc.finschia.io' + } + ], + rest: [ + { + address: 'https://ebony-api.finschia.io' + } + ], + grpc: [ + { + address: 'ebony-grpc.finschia.io:443' + } + ] + }, + explorers: [ + { + kind: 'mintscan', + url: 'https://www.mintscan.io/finschia-testnet', + tx_page: 'https://www.mintscan.io/finschia-testnet/tx/${txHash}', + account_page: + 'https://www.mintscan.io/finschia-testnet/address/${accountAddress}' + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.svg' + } +}; +export default info; diff --git a/packages/chain-registry/src/testnet/finschiatestnet/index.ts b/packages/chain-registry/src/testnet/finschiatestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/finschiatestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/index.ts b/packages/chain-registry/src/testnet/index.ts index 9da07097d..36a224995 100644 --- a/packages/chain-registry/src/testnet/index.ts +++ b/packages/chain-registry/src/testnet/index.ts @@ -29,6 +29,7 @@ export * as empowertestnet from './empowertestnet'; export * as entrypointtestnet from './entrypointtestnet'; export * as evmostestnet from './evmostestnet'; export * as fetchhubtestnet from './fetchhubtestnet'; +export * as finschiatestnet from './finschiatestnet'; export * as gitopiatestnet from './gitopiatestnet'; export * as hedgetestnet from './hedgetestnet'; export * as humanstestnet from './humanstestnet'; @@ -70,6 +71,7 @@ export * as seitestnet from './seitestnet'; export * as seitestnet2 from './seitestnet2'; export * as selfchaindevnet from './selfchaindevnet'; export * as sgetestnet from './sgetestnet'; +export * as sgetestnet4 from './sgetestnet4'; export * as sixtestnet from './sixtestnet'; export * as sourcetestnet from './sourcetestnet'; export * as stargazetestnet from './stargazetestnet'; diff --git a/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts b/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts index 5c8d1954c..e538f80e0 100644 --- a/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/injectivetestnet/ibc.ts @@ -79,6 +79,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injectivetestnet', + client_id: '07-tendermint-228', + connection_id: 'connection-211' + }, + chain_2: { + chain_name: 'xiontestnet', + client_id: '07-tendermint-105', + connection_id: 'connection-43' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-324', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-215', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts index 5c8d1954c..e538f80e0 100644 --- a/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/injectivetestnet/ibc_chain1.ts @@ -79,6 +79,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injectivetestnet', + client_id: '07-tendermint-228', + connection_id: 'connection-211' + }, + chain_2: { + chain_name: 'xiontestnet', + client_id: '07-tendermint-105', + connection_id: 'connection-43' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-324', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-215', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/testnet/osmosistestnet/assets.ts b/packages/chain-registry/src/testnet/osmosistestnet/assets.ts index b1d5d2a78..ac5e9381f 100644 --- a/packages/chain-registry/src/testnet/osmosistestnet/assets.ts +++ b/packages/chain-registry/src/testnet/osmosistestnet/assets.ts @@ -88,6 +88,112 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'titan', + base_denom: 'atkx', + channel_id: 'channel-2' + }, + chain: { + channel_id: 'channel-5969', + path: 'transfer/channel-5969/atkx' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + exponent: 0 + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'bridge', + counterparty: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + provider: 'Axelar' + }, + { + type: 'ibc', + counterparty: { + chain_name: 'axelartestnet', + base_denom: 'uausdc', + channel_id: 'channel-339' + }, + chain: { + channel_id: 'channel-4170', + path: 'transfer/channel-4170/uausdc' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/chain-registry/src/testnet/quasartestnet/chain.ts b/packages/chain-registry/src/testnet/quasartestnet/chain.ts index b09d79b8a..b4c0bac82 100644 --- a/packages/chain-registry/src/testnet/quasartestnet/chain.ts +++ b/packages/chain-registry/src/testnet/quasartestnet/chain.ts @@ -5,7 +5,7 @@ const info: Chain = { status: 'live', network_type: 'testnet', pretty_name: 'Quasar Testnet', - chain_id: 'qsr-questnet-04', + chain_id: 'quasar-test-1', bech32_prefix: 'quasar', daemon_name: 'quasarnoded', node_home: '$HOME/.quasarnoded', @@ -19,9 +19,9 @@ const info: Chain = { ] }, codebase: { - cosmos_sdk_version: '0.46', + cosmos_sdk_version: '0.45.16', cosmwasm_enabled: true, - cosmwasm_version: '0.27' + cosmwasm_version: '0.31' }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png', @@ -34,12 +34,8 @@ const info: Chain = { provider: 'Polkachu' }, { - address: 'https://questnet.quasar-finance.rhinostake.com/', - provider: 'Rhino Stake' - }, - { - address: 'https://quasar-testnet-rpc.swiss-staking.ch', - provider: 'Swiss Staking' + address: 'https://quasar-testnet-rpc.stakeandrelax.net/', + provider: 'Stake and Relax' } ], rest: [ @@ -48,12 +44,8 @@ const info: Chain = { provider: 'Polkachu' }, { - address: 'https://questnet.quasar-finance.rhinostake.com/', - provider: 'Rhino Stake' - }, - { - address: 'https://quasar-testnet-api.swiss-staking.ch/', - provider: 'Swiss Staking' + address: 'https://quasar-testnet-api.stakeandrelax.net/', + provider: 'Stake and Relax' } ], grpc: [ @@ -62,8 +54,8 @@ const info: Chain = { provider: 'Polkachu' }, { - address: 'quasar-testnet-grpc.swiss-staking.ch:10090', - provider: 'Swiss Staking' + address: 'http://quasar-testnet-grpc.stakeandrelax.net:18290/', + provider: 'Stake and Relax' } ] }, diff --git a/packages/chain-registry/src/testnet/sgetestnet/assets.ts b/packages/chain-registry/src/testnet/sgetestnet/assets.ts index de1d453a3..982724333 100644 --- a/packages/chain-registry/src/testnet/sgetestnet/assets.ts +++ b/packages/chain-registry/src/testnet/sgetestnet/assets.ts @@ -13,7 +13,7 @@ const info: AssetList = { aliases: [] }, { - denom: 'usge', + denom: 'sge', exponent: 6, aliases: [] } diff --git a/packages/chain-registry/src/testnet/sgetestnet/chain.ts b/packages/chain-registry/src/testnet/sgetestnet/chain.ts index 9e7857181..b38ecd0c3 100644 --- a/packages/chain-registry/src/testnet/sgetestnet/chain.ts +++ b/packages/chain-registry/src/testnet/sgetestnet/chain.ts @@ -21,10 +21,6 @@ const info: Chain = { ] }, codebase: {}, - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg' - }, apis: { rpc: [ { @@ -84,9 +80,16 @@ const info: Chain = { ], images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sgetestnet/images/sge.svg' + image_sync: { + chain_name: 'sge' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' } - ] + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } }; export default info; diff --git a/packages/chain-registry/src/testnet/sgetestnet4/assets.ts b/packages/chain-registry/src/testnet/sgetestnet4/assets.ts new file mode 100644 index 000000000..5e08c2a10 --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet4/assets.ts @@ -0,0 +1,48 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'sgetestnet4', + assets: [ + { + description: + 'The SGE token is primarily a governance token for the SGE Network blockchain.', + denom_units: [ + { + denom: 'usge', + exponent: 0 + }, + { + denom: 'sge', + exponent: 6 + } + ], + base: 'usge', + name: 'SGE Testnet4', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'additional-mintage', + counterparty: { + chain_name: 'sgetestnet', + base_denom: 'usge' + }, + provider: 'SGE' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png' + }, + images: [ + { + image_sync: { + chain_name: 'sge', + base_denom: 'usge' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/sgetestnet4/chain.ts b/packages/chain-registry/src/testnet/sgetestnet4/chain.ts new file mode 100644 index 000000000..44986b641 --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet4/chain.ts @@ -0,0 +1,80 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'sgetestnet4', + chain_id: 'sge-network-4', + pretty_name: 'SGE Testnet4', + status: 'live', + network_type: 'testnet', + website: 'sgenetwork.io', + bech32_prefix: 'sge', + daemon_name: 'usge', + node_home: '$HOME/.sged', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'usge', + fixed_min_gas_price: 0 + } + ] + }, + codebase: {}, + apis: { + rpc: [ + { + address: 'https://rpc.testnet.sgenetwork.io', + provider: 'Sge Network' + }, + { + address: 'https://testnet-saage-rpc.lavenderfive.com/ ', + provider: 'Lavender.Five' + }, + { + address: 'https://saage-testnet-rpc.polkachu.com/', + provider: 'Polkachu' + }, + { + address: 'https://rpc-t.sge.nodestake.top/', + provider: 'Nodestake.top' + } + ], + rest: [ + { + address: 'https://api.testnet.sgenetwork.io', + provider: 'Sge Network' + }, + { + address: 'https://api-t.sge.nodestake.top/', + provider: 'Nodestake.top' + }, + { + address: 'https://saage-testnet-api.polkachu.com/', + provider: 'Polkachu' + } + ] + }, + explorers: [ + { + kind: 'Sge BlockExplorer', + url: 'https://blockexplorer.testnet.sgenetwork.io/', + tx_page: + 'https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}' + } + ], + images: [ + { + image_sync: { + chain_name: 'sge' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } +}; +export default info; diff --git a/packages/chain-registry/src/testnet/sgetestnet4/index.ts b/packages/chain-registry/src/testnet/sgetestnet4/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/sgetestnet4/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/xiontestnet/assets.ts b/packages/chain-registry/src/testnet/xiontestnet/assets.ts index f1c1fb3ca..d951fa8a7 100644 --- a/packages/chain-registry/src/testnet/xiontestnet/assets.ts +++ b/packages/chain-registry/src/testnet/xiontestnet/assets.ts @@ -11,11 +11,6 @@ const info: AssetList = { exponent: 0, aliases: ['microxion'] }, - { - denom: 'mxion', - exponent: 3, - aliases: ['millixion'] - }, { denom: 'XION', exponent: 6, @@ -173,6 +168,51 @@ const info: AssetList = { logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } + }, + { + denom_units: [ + { + denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + exponent: 0, + aliases: ['inj'] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + name: 'Injective INJ token', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'injectivetestnet', + base_denom: 'inj', + channel_id: 'channel-324' + }, + chain: { + channel_id: 'channel-215', + path: 'transfer/channel-215/inj' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'injectivetestnet', + base_denom: 'inj' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } } ] }; diff --git a/packages/chain-registry/src/testnet/xiontestnet/chain.ts b/packages/chain-registry/src/testnet/xiontestnet/chain.ts index d4a25f645..2723fd2c7 100644 --- a/packages/chain-registry/src/testnet/xiontestnet/chain.ts +++ b/packages/chain-registry/src/testnet/xiontestnet/chain.ts @@ -30,16 +30,12 @@ const info: Chain = { ] }, codebase: { - cosmos_sdk_version: '0.47.3', + cosmos_sdk_version: '0.47.5', cosmwasm_enabled: true, - cosmwasm_version: '0.40.1' + cosmwasm_version: '0.43.0' }, apis: { rpc: [ - { - address: 'https://rpc.xion-testnet-1.burnt.com', - provider: 'burnt-labs' - }, { address: 'https://testnet-burnt-rpc.lavenderfive.com', provider: 'Lavender.Five Nodes 🐝' @@ -50,10 +46,6 @@ const info: Chain = { } ], rest: [ - { - address: 'https://api.xion-testnet-1.burnt.com', - provider: 'burnt-labs' - }, { address: 'https://testnet-burnt-api.lavenderfive.com', provider: 'Lavender.Five Nodes 🐝' @@ -64,10 +56,6 @@ const info: Chain = { } ], grpc: [ - { - address: 'https://grpc.xion-testnet-1.burnt.com:443', - provider: 'burnt-labs' - }, { address: 'https://testnet-burnt-grpc.lavenderfive.com', provider: 'Lavender.Five Nodes 🐝' diff --git a/packages/chain-registry/src/testnet/xiontestnet/ibc.ts b/packages/chain-registry/src/testnet/xiontestnet/ibc.ts index 84e8c9e06..8c77e1824 100644 --- a/packages/chain-registry/src/testnet/xiontestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/xiontestnet/ibc.ts @@ -30,6 +30,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injectivetestnet', + client_id: '07-tendermint-228', + connection_id: 'connection-211' + }, + chain_2: { + chain_name: 'xiontestnet', + client_id: '07-tendermint-105', + connection_id: 'connection-43' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-324', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-215', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../../ibc_data.schema.json', chain_1: { From d5337e029ce219d6881a28bdec61ab83475a38c5 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 22:34:33 +0800 Subject: [PATCH 16/54] chore(release): publish - @chain-registry/assets@1.29.8 - chain-registry@1.28.7 - @chain-registry/cosmostation@1.31.7 - @chain-registry/juno@1.29.8 - @chain-registry/keplr@1.33.7 - @chain-registry/osmosis@1.29.8 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 65a75cba7..ca7b6a333 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.7...@chain-registry/assets@1.29.8) (2024-03-06) + +**Note:** Version bump only for package @chain-registry/assets + + + + + ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.6...@chain-registry/assets@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 394eebcb3..8d9228759 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.29.7", + "version": "1.29.8", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.6", + "chain-registry": "^1.28.7", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 92f034c7a..0c06e4e49 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.28.7](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.6...chain-registry@1.28.7) (2024-03-06) + +**Note:** Version bump only for package chain-registry + + + + + ## [1.28.6](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.5...chain-registry@1.28.6) (2024-02-28) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index d5c02e4ea..553f7ee9f 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.28.6", + "version": "1.28.7", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index 99a75a686..e08401874 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.31.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.6...@chain-registry/cosmostation@1.31.7) (2024-03-06) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + ## [1.31.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.5...@chain-registry/cosmostation@1.31.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 66d53bec5..2e8192500 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.31.6", + "version": "1.31.7", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.6", + "chain-registry": "^1.28.7", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index 72a04a082..3a6f180dc 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.7...@chain-registry/juno@1.29.8) (2024-03-06) + +**Note:** Version bump only for package @chain-registry/juno + + + + + ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.6...@chain-registry/juno@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index d1876b429..9fb65dbed 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.29.7", + "version": "1.29.8", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.6", + "chain-registry": "^1.28.7", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 73d2f1051..5ad2d9785 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.33.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.6...@chain-registry/keplr@1.33.7) (2024-03-06) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + ## [1.33.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.5...@chain-registry/keplr@1.33.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index f7e11f430..564909b56 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.33.6", + "version": "1.33.7", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.6", + "chain-registry": "^1.28.7", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 7c9ef8226..c69f42dce 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.7...@chain-registry/osmosis@1.29.8) (2024-03-06) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.6...@chain-registry/osmosis@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 4fcc48b2b..116818d8f 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.29.7", + "version": "1.29.8", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.6", + "chain-registry": "^1.28.7", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From a181a75868c00a643f252306d4d389d6d1c9c927 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 22:41:09 +0800 Subject: [PATCH 17/54] fix build workflows --- .github/workflows/npm-publish-min.yml | 4 ++-- .github/workflows/npm-publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index c473fe414..bcb34dd2b 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -16,9 +16,11 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Code Generation run: | + BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" yarn yarn bootstrap yarn build + git checkout -b $BRANCH_NAME cd packages/chain-registry yarn codegen yarn build @@ -33,8 +35,6 @@ jobs: run: | git config user.name "${{ github.actor }}" git config user.email "${{ github.actor}}@users.noreply.github.com" - BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" - git checkout -b $BRANCH_NAME git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 6de65a85c..fe0b5e574 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -20,9 +20,11 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Code Generation run: | + BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" yarn yarn bootstrap yarn build + git checkout -b $BRANCH_NAME cd packages/chain-registry yarn codegen yarn build @@ -40,8 +42,6 @@ jobs: run: | git config user.name "${{ github.actor }}" git config user.email "${{ github.actor}}@users.noreply.github.com" - BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" - git checkout -b $BRANCH_NAME git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" From 5d811bd0e22917583ef0363bed6f8ea7f98a1916 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 22:55:46 +0800 Subject: [PATCH 18/54] add set upstream --- .github/workflows/npm-publish-min.yml | 2 +- .github/workflows/npm-publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index bcb34dd2b..0382876f8 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -38,7 +38,7 @@ jobs: git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" - git push origin $BRANCH_NAME + git push --set-upstream origin $BRANCH_NAME else echo "No changes to commit." fi diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fe0b5e574..133bb09fc 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -45,7 +45,7 @@ jobs: git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" - git push origin $BRANCH_NAME + git push --set-upstream origin $BRANCH_NAME else echo "No changes to commit." fi From 332f22206c56671c84f598cbb28385de1855aa4b Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Wed, 6 Mar 2024 23:16:51 +0800 Subject: [PATCH 19/54] fix git ops --- .github/workflows/npm-publish-min.yml | 4 ++-- .github/workflows/npm-publish.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index 0382876f8..04e181947 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -20,6 +20,8 @@ jobs: yarn yarn bootstrap yarn build + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" git checkout -b $BRANCH_NAME cd packages/chain-registry yarn codegen @@ -33,8 +35,6 @@ jobs: cd ../../ - name: Git Ops run: | - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor}}@users.noreply.github.com" git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 133bb09fc..44831ca2a 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -24,6 +24,8 @@ jobs: yarn yarn bootstrap yarn build + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" git checkout -b $BRANCH_NAME cd packages/chain-registry yarn codegen @@ -40,8 +42,6 @@ jobs: cd ../../ - name: Git Ops run: | - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor}}@users.noreply.github.com" git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" From 2700c289c58a6e7786af23867f3f4808566223be Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 09:13:23 +0800 Subject: [PATCH 20/54] debug workflow --- .github/workflows/npm-publish-test.yml | 36 ++++++++++++++++++++++++++ .github/workflows/npm-publish.yml | 6 ++--- 2 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/npm-publish-test.yml diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml new file mode 100644 index 000000000..b90ffffa3 --- /dev/null +++ b/.github/workflows/npm-publish-test.yml @@ -0,0 +1,36 @@ +name: Publish Min Test + +on: + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: "true" + - uses: actions/setup-node@v3 + with: + node-version: 16.14.0 + registry-url: https://registry.npmjs.org/ + - name: Code Generation + run: | + BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" + git checkout -b $BRANCH_NAME + cd packages/chain-registry + echo a > test.ts + echo "console.log('Example finished');" >> examples/examples.ts + cd ../../ + git add . + if ! git diff --staged --quiet; then + git commit -am "build 🛠 $BRANCH_NAME" + git push --set-upstream origin $BRANCH_NAME + else + echo "No changes to commit." + fi + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} + GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 44831ca2a..89c8c8799 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,9 +1,9 @@ name: Publish on: - schedule: - # Runs every day at 1:00 AM UTC - - cron: "0 1 * * *" + # schedule: + # Runs every day at 1:00 AM UTC + # - cron: "0 1 * * *" workflow_dispatch: From 1e4ffa77aad65025bac2cb29df825d82c10047a3 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 11:18:18 +0800 Subject: [PATCH 21/54] add git ops step --- .github/workflows/npm-publish-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml index b90ffffa3..1848216fe 100644 --- a/.github/workflows/npm-publish-test.yml +++ b/.github/workflows/npm-publish-test.yml @@ -24,6 +24,8 @@ jobs: echo a > test.ts echo "console.log('Example finished');" >> examples/examples.ts cd ../../ + - name: Git Ops + run: | git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" From 2d3e33a0680b6fb1d07988d2d529e2f8dddb8f0f Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 11:26:04 +0800 Subject: [PATCH 22/54] debug test wf --- .github/workflows/npm-publish-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml index 1848216fe..e119a0368 100644 --- a/.github/workflows/npm-publish-test.yml +++ b/.github/workflows/npm-publish-test.yml @@ -24,15 +24,17 @@ jobs: echo a > test.ts echo "console.log('Example finished');" >> examples/examples.ts cd ../../ - - name: Git Ops - run: | git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME + GIT_RESULT="Created" else - echo "No changes to commit." + GIT_RESULT="No changes to commit." fi + - name: Git Ops + run: | + echo $GIT_RESULT env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} From e4847b8d6815742a48b38a38d95c54e0bed67064 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 11:30:20 +0800 Subject: [PATCH 23/54] add env --- .github/workflows/npm-publish-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml index e119a0368..5c852c9b5 100644 --- a/.github/workflows/npm-publish-test.yml +++ b/.github/workflows/npm-publish-test.yml @@ -38,3 +38,4 @@ jobs: env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} + GIT_RESULT: "init" From 501ff95bfaf8844402272529868cfdfed491be76 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 11:34:43 +0800 Subject: [PATCH 24/54] git env --- .github/workflows/npm-publish-test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml index 5c852c9b5..78c48f339 100644 --- a/.github/workflows/npm-publish-test.yml +++ b/.github/workflows/npm-publish-test.yml @@ -28,9 +28,9 @@ jobs: if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME - GIT_RESULT="Created" + echo "GIT_RESULT=Created" >> $GITHUB_ENV else - GIT_RESULT="No changes to commit." + echo "GIT_RESULT=No changes to commit." >> $GITHUB_ENV fi - name: Git Ops run: | @@ -38,4 +38,3 @@ jobs: env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} - GIT_RESULT: "init" From 3e9bc81bbf272a8ff7aa0c97ea58b9f540336f01 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 11:59:20 +0800 Subject: [PATCH 25/54] fix wf --- .github/workflows/npm-publish-min.yml | 9 +++--- .github/workflows/npm-publish-test.yml | 40 -------------------------- .github/workflows/npm-publish.yml | 15 +++++----- 3 files changed, 13 insertions(+), 51 deletions(-) delete mode 100644 .github/workflows/npm-publish-test.yml diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index 04e181947..2f585321d 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -33,15 +33,16 @@ jobs: cd packages/juno yarn codegen cd ../../ - - name: Git Ops - run: | - git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME + echo "GIT_RESULT=Done." >> $GITHUB_ENV else - echo "No changes to commit." + echo "GIT_RESULT=No changes to commit." >> $GITHUB_ENV fi + - name: Git Ops + run: | + echo $GIT_RESULT env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} diff --git a/.github/workflows/npm-publish-test.yml b/.github/workflows/npm-publish-test.yml deleted file mode 100644 index 78c48f339..000000000 --- a/.github/workflows/npm-publish-test.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Publish Min Test - -on: - workflow_dispatch: - -jobs: - publish-npm: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - submodules: "true" - - uses: actions/setup-node@v3 - with: - node-version: 16.14.0 - registry-url: https://registry.npmjs.org/ - - name: Code Generation - run: | - BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" - git config user.name "${{ github.actor }}" - git config user.email "${{ github.actor}}@users.noreply.github.com" - git checkout -b $BRANCH_NAME - cd packages/chain-registry - echo a > test.ts - echo "console.log('Example finished');" >> examples/examples.ts - cd ../../ - git add . - if ! git diff --staged --quiet; then - git commit -am "build 🛠 $BRANCH_NAME" - git push --set-upstream origin $BRANCH_NAME - echo "GIT_RESULT=Created" >> $GITHUB_ENV - else - echo "GIT_RESULT=No changes to commit." >> $GITHUB_ENV - fi - - name: Git Ops - run: | - echo $GIT_RESULT - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} - GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 89c8c8799..3d05687c2 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -1,9 +1,9 @@ name: Publish on: - # schedule: - # Runs every day at 1:00 AM UTC - # - cron: "0 1 * * *" + schedule: + # Runs every day at 1:00 AM UTC + - cron: "0 1 * * *" workflow_dispatch: @@ -40,15 +40,16 @@ jobs: cd packages/juno yarn codegen cd ../../ - - name: Git Ops - run: | - git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME + echo "GIT_RESULT=Done." >> $GITHUB_ENV else - echo "No changes to commit." + echo "GIT_RESULT=No changes to commit." >> $GITHUB_ENV fi + - name: Git Ops + run: | + echo $GIT_RESULT env: NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} From a691cb8c89a39db033f82fd902cd5a2a76966653 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 12:19:25 +0800 Subject: [PATCH 26/54] latest sub modules --- .github/workflows/npm-publish-min.yml | 1 + .github/workflows/npm-publish.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index 2f585321d..6ee75c7d0 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -16,6 +16,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Code Generation run: | + git submodule update --remote BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" yarn yarn bootstrap diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 3d05687c2..efe778ab3 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -20,6 +20,7 @@ jobs: registry-url: https://registry.npmjs.org/ - name: Code Generation run: | + git submodule update --remote BRANCH_NAME="build-$(date +%Y%m%d-%H%M%S)" yarn yarn bootstrap From 1793c4b5375bbd17b5ae0cf51f1bb5574043cc3e Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 13:50:37 +0800 Subject: [PATCH 27/54] fix wf --- .github/workflows/npm-publish-min.yml | 1 + .github/workflows/npm-publish.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/npm-publish-min.yml b/.github/workflows/npm-publish-min.yml index 6ee75c7d0..c84426e8e 100644 --- a/.github/workflows/npm-publish-min.yml +++ b/.github/workflows/npm-publish-min.yml @@ -34,6 +34,7 @@ jobs: cd packages/juno yarn codegen cd ../../ + git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index efe778ab3..3f4dbf165 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -41,6 +41,7 @@ jobs: cd packages/juno yarn codegen cd ../../ + git add . if ! git diff --staged --quiet; then git commit -am "build 🛠 $BRANCH_NAME" git push --set-upstream origin $BRANCH_NAME From a26c7af2aa2690f926ae0466ea342042952dafaa Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 07:15:39 +0000 Subject: [PATCH 28/54] =?UTF-8?q?build=20=F0=9F=9B=A0=20build-20240308-060?= =?UTF-8?q?217?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/src/mainnet/8ball.ts | 47 + packages/assets/src/mainnet/acrechain.ts | 47 + packages/assets/src/mainnet/agoric.ts | 655 + packages/assets/src/mainnet/aioz.ts | 47 + packages/assets/src/mainnet/akash.ts | 235 +- packages/assets/src/mainnet/archway.ts | 47 + packages/assets/src/mainnet/arkh.ts | 47 + packages/assets/src/mainnet/assetmantle.ts | 47 + packages/assets/src/mainnet/assets.ts | 4 + packages/assets/src/mainnet/aura.ts | 47 + packages/assets/src/mainnet/axelar.ts | 180 +- packages/assets/src/mainnet/bandchain.ts | 47 + packages/assets/src/mainnet/beezee.ts | 47 + packages/assets/src/mainnet/bitcanna.ts | 47 + packages/assets/src/mainnet/bitsong.ts | 47 + packages/assets/src/mainnet/bluzelle.ts | 47 + packages/assets/src/mainnet/bostrom.ts | 47 + packages/assets/src/mainnet/canto.ts | 47 + packages/assets/src/mainnet/carbon.ts | 47 + packages/assets/src/mainnet/celestia.ts | 90 + packages/assets/src/mainnet/cerberus.ts | 47 + packages/assets/src/mainnet/chain4energy.ts | 15103 ++++++++++++++++ packages/assets/src/mainnet/cheqd.ts | 47 + packages/assets/src/mainnet/chihuahua.ts | 612 + packages/assets/src/mainnet/comdex.ts | 235 +- packages/assets/src/mainnet/composable.ts | 47 + packages/assets/src/mainnet/coreum.ts | 47 + packages/assets/src/mainnet/cosmoshub.ts | 330 +- packages/assets/src/mainnet/crescent.ts | 235 +- packages/assets/src/mainnet/cryptoorgchain.ts | 235 +- packages/assets/src/mainnet/cudos.ts | 47 + packages/assets/src/mainnet/decentr.ts | 47 + packages/assets/src/mainnet/desmos.ts | 47 + packages/assets/src/mainnet/dig.ts | 47 + packages/assets/src/mainnet/doravota.ts | 47 + packages/assets/src/mainnet/dydx.ts | 278 +- packages/assets/src/mainnet/dymension.ts | 225 + packages/assets/src/mainnet/dyson.ts | 47 + packages/assets/src/mainnet/echelon.ts | 47 + packages/assets/src/mainnet/emoney.ts | 47 + packages/assets/src/mainnet/empowerchain.ts | 47 + packages/assets/src/mainnet/evmos.ts | 142 + packages/assets/src/mainnet/fetchhub.ts | 47 + packages/assets/src/mainnet/furya.ts | 47 + packages/assets/src/mainnet/fxcore.ts | 47 + packages/assets/src/mainnet/galaxy.ts | 47 + packages/assets/src/mainnet/gateway.ts | 47 + packages/assets/src/mainnet/genesisl1.ts | 47 + packages/assets/src/mainnet/gitopia.ts | 47 + packages/assets/src/mainnet/gravitybridge.ts | 248 +- packages/assets/src/mainnet/haqq.ts | 47 + packages/assets/src/mainnet/humans.ts | 47 + packages/assets/src/mainnet/impacthub.ts | 47 + packages/assets/src/mainnet/imversed.ts | 47 + packages/assets/src/mainnet/index.ts | 2 + packages/assets/src/mainnet/injective.ts | 468 +- packages/assets/src/mainnet/irisnet.ts | 235 +- packages/assets/src/mainnet/jackal.ts | 47 + packages/assets/src/mainnet/juno.ts | 235 +- packages/assets/src/mainnet/kava.ts | 235 +- packages/assets/src/mainnet/kichain.ts | 47 + packages/assets/src/mainnet/konstellation.ts | 47 + packages/assets/src/mainnet/kujira.ts | 473 +- packages/assets/src/mainnet/kyve.ts | 47 + packages/assets/src/mainnet/lambda.ts | 47 + packages/assets/src/mainnet/likecoin.ts | 47 + packages/assets/src/mainnet/lumenx.ts | 47 + packages/assets/src/mainnet/lumnetwork.ts | 47 + packages/assets/src/mainnet/mars.ts | 47 + packages/assets/src/mainnet/medasdigital.ts | 47 + packages/assets/src/mainnet/meme.ts | 47 + packages/assets/src/mainnet/microtick.ts | 47 + packages/assets/src/mainnet/migaloo.ts | 47 + packages/assets/src/mainnet/neutron.ts | 235 +- packages/assets/src/mainnet/noble.ts | 373 +- packages/assets/src/mainnet/nois.ts | 47 + packages/assets/src/mainnet/nolus.ts | 47 + packages/assets/src/mainnet/nomic.ts | 47 + packages/assets/src/mainnet/nyx.ts | 47 + packages/assets/src/mainnet/odin.ts | 574 + packages/assets/src/mainnet/omniflixhub.ts | 47 + packages/assets/src/mainnet/onomy.ts | 47 + packages/assets/src/mainnet/oraichain.ts | 47 + packages/assets/src/mainnet/osmosis.ts | 618 +- packages/assets/src/mainnet/panacea.ts | 47 + packages/assets/src/mainnet/passage.ts | 47 + packages/assets/src/mainnet/persistence.ts | 12621 +++++++------ packages/assets/src/mainnet/planq.ts | 47 + packages/assets/src/mainnet/provenance.ts | 47 + packages/assets/src/mainnet/pundix.ts | 47 + packages/assets/src/mainnet/pylons.ts | 13650 ++++++++++++++ packages/assets/src/mainnet/quasar.ts | 47 + packages/assets/src/mainnet/quicksilver.ts | 235 +- packages/assets/src/mainnet/qwoyn.ts | 47 + packages/assets/src/mainnet/realio.ts | 47 + packages/assets/src/mainnet/rebus.ts | 47 + packages/assets/src/mainnet/regen.ts | 278 +- packages/assets/src/mainnet/rizon.ts | 47 + packages/assets/src/mainnet/scorum.ts | 47 + packages/assets/src/mainnet/secretnetwork.ts | 471 +- packages/assets/src/mainnet/sei.ts | 47 + packages/assets/src/mainnet/sentinel.ts | 235 +- packages/assets/src/mainnet/sge.ts | 47 + packages/assets/src/mainnet/shareledger.ts | 47 + packages/assets/src/mainnet/shentu.ts | 47 + packages/assets/src/mainnet/sifchain.ts | 235 +- packages/assets/src/mainnet/sommelier.ts | 47 + packages/assets/src/mainnet/source.ts | 47 + packages/assets/src/mainnet/stafihub.ts | 47 + packages/assets/src/mainnet/stargaze.ts | 286 +- packages/assets/src/mainnet/starname.ts | 235 +- packages/assets/src/mainnet/stride.ts | 235 +- packages/assets/src/mainnet/teritori.ts | 47 + packages/assets/src/mainnet/terra.ts | 47 + packages/assets/src/mainnet/terra2.ts | 47 + packages/assets/src/mainnet/tgrade.ts | 47 + packages/assets/src/mainnet/umee.ts | 1481 +- packages/assets/src/mainnet/unification.ts | 47 + packages/assets/src/mainnet/vidulum.ts | 47 + packages/assets/src/mainnet/xpla.ts | 47 + packages/assets/src/testnet/akashtestnet.ts | 103 + packages/assets/src/testnet/archwaytestnet.ts | 103 + packages/assets/src/testnet/axelartestnet.ts | 155 +- .../assets/src/testnet/celestiatestnet3.ts | 103 + .../assets/src/testnet/chain4energytestnet.ts | 103 + .../assets/src/testnet/composabletestnet.ts | 103 + .../assets/src/testnet/cosmoshubtestnet.ts | 103 + .../assets/src/testnet/doravotatestnet.ts | 103 + packages/assets/src/testnet/empowertestnet.ts | 103 + .../assets/src/testnet/entrypointtestnet.ts | 103 + .../assets/src/testnet/impacthubtestnet.ts | 103 + .../assets/src/testnet/injectivetestnet.ts | 333 + packages/assets/src/testnet/junotestnet.ts | 103 + packages/assets/src/testnet/kyvetestnet.ts | 103 + packages/assets/src/testnet/lavatestnet2.ts | 103 + .../assets/src/testnet/likecointestnet.ts | 103 + packages/assets/src/testnet/marstestnet.ts | 103 + packages/assets/src/testnet/neutrontestnet.ts | 103 + packages/assets/src/testnet/nobletestnet.ts | 155 +- packages/assets/src/testnet/nolustestnet.ts | 103 + packages/assets/src/testnet/osmosistestnet.ts | 57 +- .../assets/src/testnet/persistencetestnet2.ts | 103 + .../assets/src/testnet/quicksilvertestnet.ts | 103 + packages/assets/src/testnet/sagatestnet.ts | 103 + packages/assets/src/testnet/sgetestnet.ts | 103 + .../assets/src/testnet/stargazetestnet.ts | 103 + packages/assets/src/testnet/titantestnet.ts | 103 + packages/assets/src/testnet/xiontestnet.ts | 147 + packages/chain-registry/chain-registry | 2 +- .../chain-registry/src/mainnet/agoric/ibc.ts | 31 + .../src/mainnet/agoric/ibc_chain1.ts | 31 + .../chain-registry/src/mainnet/aura/chain.ts | 4 +- .../src/mainnet/celestia/ibc.ts | 30 + .../src/mainnet/celestia/ibc_chain1.ts | 30 + .../chain-registry/src/mainnet/dydx/chain.ts | 6 +- .../chain-registry/src/mainnet/dydx/ibc.ts | 31 + .../src/mainnet/dydx/ibc_chain1.ts | 31 + .../src/mainnet/gateway/assets.ts | 48 + .../src/mainnet/injective/ibc.ts | 31 + .../src/mainnet/injective/ibc_chain1.ts | 31 + .../chain-registry/src/mainnet/noble/ibc.ts | 31 + .../src/mainnet/noble/ibc_chain1.ts | 31 + .../src/mainnet/quasar/chain.ts | 7 + .../chain-registry/src/mainnet/regen/ibc.ts | 31 + .../src/mainnet/regen/ibc_chain1.ts | 31 + .../src/mainnet/secretnetwork/ibc.ts | 32 + .../src/mainnet/secretnetwork/ibc_chain1.ts | 32 + .../chain-registry/src/mainnet/umee/ibc.ts | 217 + .../src/mainnet/zetachain/assets.ts | 1 + .../src/mainnet/zetachain/chain.ts | 17 +- .../src/testnet/quasartestnet/chain.ts | 11 + .../src/testnet/swisstroniktestnet/chain.ts | 12 + packages/juno/src/asset_list.ts | 235 +- packages/juno/src/assets.ts | 60 + packages/juno/src/chain.ts | 12 + packages/osmosis/src/asset_list.ts | 618 +- packages/osmosis/src/assets.ts | 30 + packages/osmosis/src/testnet_assets.ts | 106 + 178 files changed, 54263 insertions(+), 6938 deletions(-) create mode 100644 packages/assets/src/mainnet/chain4energy.ts create mode 100644 packages/assets/src/mainnet/pylons.ts diff --git a/packages/assets/src/mainnet/8ball.ts b/packages/assets/src/mainnet/8ball.ts index 3502163a4..535a94541 100644 --- a/packages/assets/src/mainnet/8ball.ts +++ b/packages/assets/src/mainnet/8ball.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/0E2ED7C8E6E100CB923F42923EF19010B6FFAA1B6866ECACB99339060A192BFC', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/0E2ED7C8E6E100CB923F42923EF19010B6FFAA1B6866ECACB99339060A192BFC', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-641', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/acrechain.ts b/packages/assets/src/mainnet/acrechain.ts index 07c31c9de..ab1b93b4a 100644 --- a/packages/assets/src/mainnet/acrechain.ts +++ b/packages/assets/src/mainnet/acrechain.ts @@ -17258,6 +17258,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-490', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/agoric.ts b/packages/assets/src/mainnet/agoric.ts index 3ab8d8f90..f2d9d58be 100644 --- a/packages/assets/src/mainnet/agoric.ts +++ b/packages/assets/src/mainnet/agoric.ts @@ -18099,6 +18099,618 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-320', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/1C312D6A05202A8F83393290B3403EAA37FF2E3DDA73BB69253C2D10CDA4D6CF', + exponent: 0, + aliases: ['uxprt'] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + base: 'ibc/1C312D6A05202A8F83393290B3403EAA37FF2E3DDA73BB69253C2D10CDA4D6CF', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + coingecko_id: 'persistence', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: 'uxprt', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/4721B61DBE668E2F3E613E45885396991F21E8374ABDE48CD7336A77B79101A5', + exponent: 0, + aliases: ['stk/uatom'] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + base: 'ibc/4721B61DBE668E2F3E613E45885396991F21E8374ABDE48CD7336A77B79101A5', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: 'stk/uatom', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ + { + denom: + 'ibc/050AFB5548C09185828B5FDBAE2EBC9823D4BF8FFA3961E74AF09D01C2B3C7C8', + exponent: 0, + aliases: [ + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/050AFB5548C09185828B5FDBAE2EBC9823D4BF8FFA3961E74AF09D01C2B3C7C8', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + keywords: ['canon'], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D32457BFE1AF9046E4805121AEA4BC8DA0BEC3AFAEE5C780007C2E1B3816C1FC', + exponent: 0, + aliases: [ + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D32457BFE1AF9046E4805121AEA4BC8DA0BEC3AFAEE5C780007C2E1B3816C1FC', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + description: 'Tether USDT on Persistence', + denom_units: [ + { + denom: + 'ibc/970B59089D3D130E43C38AFC6FF9B8DAD3296A377F8987CEC3500E705C89F9F4', + exponent: 0, + aliases: [ + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/970B59089D3D130E43C38AFC6FF9B8DAD3296A377F8987CEC3500E705C89F9F4', + name: 'Tether USDT', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/E98DD932FAE8AA5C4A3A8B0E31FCF449B471AA894E5969D56E2A642691228F78', + exponent: 0, + aliases: [ + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E98DD932FAE8AA5C4A3A8B0E31FCF449B471AA894E5969D56E2A642691228F78', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + description: 'dydx staking token', + denom_units: [ + { + denom: + 'ibc/3032364CF315EB1BBD2628339C56073E4F09E1DD451394B66C5DC9E8E1B1FEE1', + exponent: 0, + aliases: [ + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3032364CF315EB1BBD2628339C56073E4F09E1DD451394B66C5DC9E8E1B1FEE1', + name: 'dYdX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/68CEA1DBC2FBD7FFFB1A2470D36D2A6481CC9C56CA4DAB446A34304E8A9A6BE9', + exponent: 0, + aliases: ['stk/uosmo'] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + base: 'ibc/68CEA1DBC2FBD7FFFB1A2470D36D2A6481CC9C56CA4DAB446A34304E8A9A6BE9', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: 'stk/uosmo', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked DYDX', + denom_units: [ + { + denom: + 'ibc/E9A87088D86E6371FA95C96037EAE5CF10466AD216A81F92231A2A7415C55B3A', + exponent: 0, + aliases: ['stk/adydx'] + }, + { + denom: 'stkdydx', + exponent: 18, + aliases: ['stk/dydx'] + } + ], + base: 'ibc/E9A87088D86E6371FA95C96037EAE5CF10466AD216A81F92231A2A7415C55B3A', + name: 'PSTAKE staked DYDX', + display: 'stkdydx', + symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/938E0171EC57C1635030A54F682760A1DC02EB2CD50CB15F983FDF8927688075', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } + ], + base: 'ibc/938E0171EC57C1635030A54F682760A1DC02EB2CD50CB15F983FDF8927688075', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/42B9EA79F339B84E7D48DD45560C38520C29734E4D2BD7B740102921FE50F608', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/42B9EA79F339B84E7D48DD45560C38520C29734E4D2BD7B740102921FE50F608', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/871A129016B2796E2A881B5111F8EF4D66334D662F508045517CEF2396A8BB92', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/871A129016B2796E2A881B5111F8EF4D66334D662F508045517CEF2396A8BB92', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-202', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-72' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18686,6 +19298,49 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' } ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/B557233C2463BCEB5D95E247CBD52AC98BE0847E9BEC5C3800A4384936EB6280', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/B557233C2463BCEB5D95E247CBD52AC98BE0847E9BEC5C3800A4384936EB6280', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-11' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/aioz.ts b/packages/assets/src/mainnet/aioz.ts index 5e17cd046..27bb3de06 100644 --- a/packages/assets/src/mainnet/aioz.ts +++ b/packages/assets/src/mainnet/aioz.ts @@ -13734,6 +13734,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-779', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/akash.ts b/packages/assets/src/mainnet/akash.ts index 3584051db..90792f292 100644 --- a/packages/assets/src/mainnet/akash.ts +++ b/packages/assets/src/mainnet/akash.ts @@ -15737,6 +15737,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15800,17 +15847,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -15823,6 +15859,17 @@ const assets: AssetList = { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -16092,17 +16139,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -16115,6 +16151,17 @@ const assets: AssetList = { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -16136,6 +16183,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-6' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -16145,19 +16205,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/F99B3E3241905674F50912429C2DEB6B36B3B725503795624E5470B2B78BF452', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/F99B3E3241905674F50912429C2DEB6B36B3B725503795624E5470B2B78BF452', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-5', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6AD426D7E24D564E64F984CA92BF0A8935396942A0968BB7901C198AE9310EA6', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6AD426D7E24D564E64F984CA92BF0A8935396942A0968BB7901C198AE9310EA6', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-6' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/E62E39531C9C873B79A6F807FF1F42BD8F62D64F2A1BB4BA95F2174561775339', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/E62E39531C9C873B79A6F807FF1F42BD8F62D64F2A1BB4BA95F2174561775339', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/archway.ts b/packages/assets/src/mainnet/archway.ts index c40c85470..5f93e20de 100644 --- a/packages/assets/src/mainnet/archway.ts +++ b/packages/assets/src/mainnet/archway.ts @@ -19125,6 +19125,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1429', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/arkh.ts b/packages/assets/src/mainnet/arkh.ts index f90141681..d00dd31f3 100644 --- a/packages/assets/src/mainnet/arkh.ts +++ b/packages/assets/src/mainnet/arkh.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/E898A914BB764F154B3156C4EE3B35BECEDEE4ADB73DA93D9C73D4C053D30A3C', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/E898A914BB764F154B3156C4EE3B35BECEDEE4ADB73DA93D9C73D4C053D30A3C', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-648', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-12' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/assetmantle.ts b/packages/assets/src/mainnet/assetmantle.ts index d2439dfcf..53da8432b 100644 --- a/packages/assets/src/mainnet/assetmantle.ts +++ b/packages/assets/src/mainnet/assetmantle.ts @@ -15275,6 +15275,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-232', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/assets.ts b/packages/assets/src/mainnet/assets.ts index 96b72e90f..c6c97f66e 100644 --- a/packages/assets/src/mainnet/assets.ts +++ b/packages/assets/src/mainnet/assets.ts @@ -21,6 +21,7 @@ import _canto from './canto'; import _carbon from './carbon'; import _celestia from './celestia'; import _cerberus from './cerberus'; +import _chain4energy from './chain4energy'; import _cheqd from './cheqd'; import _chihuahua from './chihuahua'; import _comdex from './comdex'; @@ -91,6 +92,7 @@ import _planq from './planq'; import _point from './point'; import _provenance from './provenance'; import _pundix from './pundix'; +import _pylons from './pylons'; import _quasar from './quasar'; import _quicksilver from './quicksilver'; import _qwoyn from './qwoyn'; @@ -144,6 +146,7 @@ const assets: AssetList[] = [ _carbon, _celestia, _cerberus, + _chain4energy, _cheqd, _chihuahua, _comdex, @@ -214,6 +217,7 @@ const assets: AssetList[] = [ _point, _provenance, _pundix, + _pylons, _quasar, _quicksilver, _qwoyn, diff --git a/packages/assets/src/mainnet/aura.ts b/packages/assets/src/mainnet/aura.ts index d2fd96131..1f1c9ad82 100644 --- a/packages/assets/src/mainnet/aura.ts +++ b/packages/assets/src/mainnet/aura.ts @@ -15622,6 +15622,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11304', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/axelar.ts b/packages/assets/src/mainnet/axelar.ts index c398e1aae..d255edf6e 100644 --- a/packages/assets/src/mainnet/axelar.ts +++ b/packages/assets/src/mainnet/axelar.ts @@ -1088,6 +1088,47 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Chain4Energy', + denom_units: [ + { + denom: + 'ibc/51DF28237DFCC73155B2F3E61300F5BF0F4989BD9F0C103A5939B03BB5A62649', + exponent: 0, + aliases: ['uc4e'] + }, + { + denom: 'c4e', + exponent: 6 + } + ], + base: 'ibc/51DF28237DFCC73155B2F3E61300F5BF0F4989BD9F0C103A5939B03BB5A62649', + name: 'Chain4Energy', + display: 'c4e', + symbol: 'C4E', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'uc4e', + chain_name: 'chain4energy' + }, + chain: { + channel_id: 'channel-141' + } + } + ] + }, { description: 'The native staking and governance token of Composable.', denom_units: [ @@ -5925,6 +5966,10 @@ const assets: AssetList = { coingecko_id: 'odin-protocol', images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } @@ -5967,6 +6012,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } @@ -5985,86 +6034,6 @@ const assets: AssetList = { } ] }, - { - description: 'DOKI the last Dragon', - denom_units: [ - { - denom: - 'ibc/2CD69A93A9FB69F6E3E1029021822E19D11C3942108A066234B8715D98B1596B', - exponent: 0, - aliases: ['udoki'] - }, - { - denom: 'doki', - exponent: 6 - } - ], - base: 'ibc/2CD69A93A9FB69F6E3E1029021822E19D11C3942108A066234B8715D98B1596B', - name: 'DOKI', - display: 'doki', - symbol: 'DOKI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-37', - base_denom: 'udoki', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-102' - } - } - ] - }, - { - description: 'Myrkur the leader of OLD Order', - denom_units: [ - { - denom: - 'ibc/083B5AA8C6C2A17AD00A9275DAA79EA92F511D5F7CE4B30321C2605CB5F754A9', - exponent: 0, - aliases: ['umyrk'] - }, - { - denom: 'myrk', - exponent: 6 - } - ], - base: 'ibc/083B5AA8C6C2A17AD00A9275DAA79EA92F511D5F7CE4B30321C2605CB5F754A9', - name: 'MYRK', - display: 'myrk', - symbol: 'MYRK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-37', - base_denom: 'umyrk', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-102' - } - } - ] - }, { description: 'O9W token for ODIN Protocol', denom_units: [ @@ -6089,6 +6058,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } @@ -19992,6 +19965,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-208', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/bandchain.ts b/packages/assets/src/mainnet/bandchain.ts index 176c29efe..ce6fa6bae 100644 --- a/packages/assets/src/mainnet/bandchain.ts +++ b/packages/assets/src/mainnet/bandchain.ts @@ -13641,6 +13641,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/53A5EBEFCE7789784B69758D1C61BF68242D209BA2D42EDAECDC8F53B5065573', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/53A5EBEFCE7789784B69758D1C61BF68242D209BA2D42EDAECDC8F53B5065573', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-148', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-83' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/beezee.ts b/packages/assets/src/mainnet/beezee.ts index cac48dd2a..135329086 100644 --- a/packages/assets/src/mainnet/beezee.ts +++ b/packages/assets/src/mainnet/beezee.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-340', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitcanna.ts b/packages/assets/src/mainnet/bitcanna.ts index 16fc916f1..f7674eace 100644 --- a/packages/assets/src/mainnet/bitcanna.ts +++ b/packages/assets/src/mainnet/bitcanna.ts @@ -14734,6 +14734,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitsong.ts b/packages/assets/src/mainnet/bitsong.ts index 11d027589..61c38afd0 100644 --- a/packages/assets/src/mainnet/bitsong.ts +++ b/packages/assets/src/mainnet/bitsong.ts @@ -15448,6 +15448,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bluzelle.ts b/packages/assets/src/mainnet/bluzelle.ts index fc6aeb941..169647dd6 100644 --- a/packages/assets/src/mainnet/bluzelle.ts +++ b/packages/assets/src/mainnet/bluzelle.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-763', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bostrom.ts b/packages/assets/src/mainnet/bostrom.ts index 7e5186460..fea980d24 100644 --- a/packages/assets/src/mainnet/bostrom.ts +++ b/packages/assets/src/mainnet/bostrom.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-95', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/canto.ts b/packages/assets/src/mainnet/canto.ts index bcbc92f63..cfbc07bb8 100644 --- a/packages/assets/src/mainnet/canto.ts +++ b/packages/assets/src/mainnet/canto.ts @@ -14295,6 +14295,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-550', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/carbon.ts b/packages/assets/src/mainnet/carbon.ts index cb6abf2f1..6bcbc7023 100644 --- a/packages/assets/src/mainnet/carbon.ts +++ b/packages/assets/src/mainnet/carbon.ts @@ -15469,6 +15469,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-188', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/celestia.ts b/packages/assets/src/mainnet/celestia.ts index 2d6c87464..1dfeedae2 100644 --- a/packages/assets/src/mainnet/celestia.ts +++ b/packages/assets/src/mainnet/celestia.ts @@ -17390,6 +17390,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6994', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18247,6 +18294,49 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/738D2E738EC4DA519DA88979D79FF7BDB893AFAA5AEC230C518863E477A8D95A', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/738D2E738EC4DA519DA88979D79FF7BDB893AFAA5AEC230C518863E477A8D95A', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-119', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-19' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/cerberus.ts b/packages/assets/src/mainnet/cerberus.ts index 8f74518ea..c9fa6c839 100644 --- a/packages/assets/src/mainnet/cerberus.ts +++ b/packages/assets/src/mainnet/cerberus.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-212', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/chain4energy.ts b/packages/assets/src/mainnet/chain4energy.ts new file mode 100644 index 000000000..eea671ae2 --- /dev/null +++ b/packages/assets/src/mainnet/chain4energy.ts @@ -0,0 +1,15103 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'chain4energy', + assets: [ + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0', + exponent: 0, + aliases: ['uaxl'] + }, + { + denom: 'axl', + exponent: 6 + } + ], + base: 'ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + coingecko_id: 'axelar', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'uaxl', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + coingecko_id: 'axlusdc', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/64917EDDFF873CE7B930360F40319EC3600C6A6A9C6400B69EB0DD248420E7D8', + exponent: 0, + aliases: ['frax-wei'] + }, + { + denom: 'frax', + exponent: 18 + } + ], + base: 'ibc/64917EDDFF873CE7B930360F40319EC3600C6A6A9C6400B69EB0DD248420E7D8', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'frax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Dai stablecoin on Axelar', + denom_units: [ + { + denom: + 'ibc/A077578EA10FD0C0506761FCFF3E2C8AD11773F27F677238DB4A9E7A252DB7CA', + exponent: 0, + aliases: ['dai-wei'] + }, + { + denom: 'dai', + exponent: 18 + } + ], + base: 'ibc/A077578EA10FD0C0506761FCFF3E2C8AD11773F27F677238DB4A9E7A252DB7CA', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'dai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/0C9E2F9CC7C99D6C274F148C313E4231F383E8AAD4E1C18A260E5479F96C62ED', + exponent: 0, + aliases: ['uusdt'] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + base: 'ibc/0C9E2F9CC7C99D6C274F148C313E4231F383E8AAD4E1C18A260E5479F96C62ED', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'uusdt', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + } + ] + }, + { + description: 'Wrapped Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/ADD91F7979979B9DBBF383BD556BD15E73D4FEECE4210FF80929ADFEBCCF110B', + exponent: 0, + aliases: ['weth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + base: 'ibc/ADD91F7979979B9DBBF383BD556BD15E73D4FEECE4210FF80929ADFEBCCF110B', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'weth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/562B5799F38289F9A645FEA6BEA5424D4E3E022DE7E638158DF5DB8F269ADDD8', + exponent: 0, + aliases: ['wbtc-satoshi'] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + base: 'ibc/562B5799F38289F9A645FEA6BEA5424D4E3E022DE7E638158DF5DB8F269ADDD8', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wbtc-satoshi', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: 'Aave on Axelar', + denom_units: [ + { + denom: + 'ibc/7934A85090B5E622B8AB2D6A9D7E4376E7890C58EFB09E7144FABE2A3044F4AC', + exponent: 0, + aliases: ['aave-wei'] + }, + { + denom: 'aave', + exponent: 18 + } + ], + base: 'ibc/7934A85090B5E622B8AB2D6A9D7E4376E7890C58EFB09E7144FABE2A3044F4AC', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'aave-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ] + }, + { + description: 'ApeCoin on Axelar', + denom_units: [ + { + denom: + 'ibc/6BF33EE17908CC381AD0A961A653FFA47CC9F0D2221E383B25280EAD6D065AE4', + exponent: 0, + aliases: ['ape-wei'] + }, + { + denom: 'ape', + exponent: 18 + } + ], + base: 'ibc/6BF33EE17908CC381AD0A961A653FFA47CC9F0D2221E383B25280EAD6D065AE4', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'ape-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ] + }, + { + description: 'Axie Infinity Shard on Axelar', + denom_units: [ + { + denom: + 'ibc/C498F29A5C02B1141E7ED14FCA7C3A0D8E2868DD34634DD111218AF15B18D51A', + exponent: 0, + aliases: ['axs-wei'] + }, + { + denom: 'axs', + exponent: 18 + } + ], + base: 'ibc/C498F29A5C02B1141E7ED14FCA7C3A0D8E2868DD34634DD111218AF15B18D51A', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'axs-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + } + ] + }, + { + description: 'Chainlink on Axelar', + denom_units: [ + { + denom: + 'ibc/DDC03C91D59A11B679652439E9BED9C95C0232369FAD28F235890FEC301BAD9D', + exponent: 0, + aliases: ['link-wei'] + }, + { + denom: 'link', + exponent: 18 + } + ], + base: 'ibc/DDC03C91D59A11B679652439E9BED9C95C0232369FAD28F235890FEC301BAD9D', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'link-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: 'Maker on Axelar', + denom_units: [ + { + denom: + 'ibc/4BCB6C286BBE91A6A71C86F9577D321E6B80CED7FEA8F932395762F7DA7D4DBB', + exponent: 0, + aliases: ['mkr-wei'] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + base: 'ibc/4BCB6C286BBE91A6A71C86F9577D321E6B80CED7FEA8F932395762F7DA7D4DBB', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'mkr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: 'Rai Reflex Index on Axelar', + denom_units: [ + { + denom: + 'ibc/E60BE65CB0338AC612856A5C81AC9C8B94F086CB6374213313FF72C2C34FA7D2', + exponent: 0, + aliases: ['rai-wei'] + }, + { + denom: 'rai', + exponent: 18 + } + ], + base: 'ibc/E60BE65CB0338AC612856A5C81AC9C8B94F086CB6374213313FF72C2C34FA7D2', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'rai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ] + }, + { + description: 'Shiba Inu on Axelar', + denom_units: [ + { + denom: + 'ibc/88429A75F66B097E2BF23E9F595B8DBCDFF939315BCC3170B9A103D559E37622', + exponent: 0, + aliases: ['shib-wei'] + }, + { + denom: 'shib', + exponent: 18 + } + ], + base: 'ibc/88429A75F66B097E2BF23E9F595B8DBCDFF939315BCC3170B9A103D559E37622', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'shib-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ] + }, + { + description: 'Lido Staked Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/85C8978FF2D66036443471065B81E7A6B422F441A570703B57AB876321185C32', + exponent: 0, + aliases: ['steth-wei'] + }, + { + denom: 'steth', + exponent: 18 + } + ], + base: 'ibc/85C8978FF2D66036443471065B81E7A6B422F441A570703B57AB876321185C32', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'steth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + } + ] + }, + { + description: 'Uniswap on Axelar', + denom_units: [ + { + denom: + 'ibc/4FF08DC3C8252D0D042CD31C82E31BDBC5F2747CC5EA6E542E231FB4112544FC', + exponent: 0, + aliases: ['uni-wei'] + }, + { + denom: 'uni', + exponent: 18 + } + ], + base: 'ibc/4FF08DC3C8252D0D042CD31C82E31BDBC5F2747CC5EA6E542E231FB4112544FC', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'uni-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + } + ] + }, + { + description: 'Chain on Axelar', + denom_units: [ + { + denom: + 'ibc/4FDA437CE3829922C2665F1BFBD30BE0191F7127834C3F8C0472088CE6419738', + exponent: 0, + aliases: ['xcn-wei'] + }, + { + denom: 'xcn', + exponent: 18 + } + ], + base: 'ibc/4FDA437CE3829922C2665F1BFBD30BE0191F7127834C3F8C0472088CE6419738', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'xcn-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/4CB46EC64989D104FCB95D8534A0E8DC40FD7B07C7ECC2E84986F1BBA5C02C77', + exponent: 0, + aliases: ['dot-planck'] + }, + { + denom: 'dot', + exponent: 10 + } + ], + base: 'ibc/4CB46EC64989D104FCB95D8534A0E8DC40FD7B07C7ECC2E84986F1BBA5C02C77', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'dot-planck', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ + { + denom: + 'ibc/D52A8EA034E19FF7DC540CDE532C4134F4A4D6C0E1F4E41EE3F62678D535F57B', + exponent: 0, + aliases: ['wglmr-wei'] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + base: 'ibc/D52A8EA034E19FF7DC540CDE532C4134F4A4D6C0E1F4E41EE3F62678D535F57B', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wglmr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'Wrapped Matic on Axelar', + denom_units: [ + { + denom: + 'ibc/8BCD6BB5E8AD820584B798724B16398C413D7B7C475E1B676DEC223FCD32F7E5', + exponent: 0, + aliases: ['wmatic-wei'] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + base: 'ibc/8BCD6BB5E8AD820584B798724B16398C413D7B7C475E1B676DEC223FCD32F7E5', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wmatic-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + ] + }, + { + description: 'Wrapped BNB on Axelar', + denom_units: [ + { + denom: + 'ibc/FEC1C247382FE8A2E67AC699D8AADC01AD1DE04A860D85A2C68BF5BFCB7D8468', + exponent: 0, + aliases: ['wbnb-wei'] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + base: 'ibc/FEC1C247382FE8A2E67AC699D8AADC01AD1DE04A860D85A2C68BF5BFCB7D8468', + name: 'Wrapped BNB', + display: 'wbnb', + symbol: 'WBNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wbnb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + ] + }, + { + description: 'Binance USD on Axelar.', + denom_units: [ + { + denom: + 'ibc/A71FC27AA5A7FED3D451C0010962727A89F4EF183EDF694E15C1F67E8FC1E51E', + exponent: 0, + aliases: ['busd-wei'] + }, + { + denom: 'busd', + exponent: 18 + } + ], + base: 'ibc/A71FC27AA5A7FED3D451C0010962727A89F4EF183EDF694E15C1F67E8FC1E51E', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'busd-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + } + ] + }, + { + description: 'Wrapped AVAX on Axelar.', + denom_units: [ + { + denom: + 'ibc/6771714762A6F8F541DE7C461F09C68F310621315FA70C70799F66A0DE6B95D2', + exponent: 0, + aliases: ['wavax-wei'] + }, + { + denom: 'avax', + exponent: 18 + } + ], + base: 'ibc/6771714762A6F8F541DE7C461F09C68F310621315FA70C70799F66A0DE6B95D2', + name: 'Wrapped AVAX', + display: 'avax', + symbol: 'WAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wavax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ] + }, + { + description: 'Wrapped FTM on Axelar.', + denom_units: [ + { + denom: + 'ibc/9B50579E4AE3CF7B1705F04A4C715EE4E859F03620F0DE560C67CBB9B9A239A2', + exponent: 0, + aliases: ['wftm-wei'] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + base: 'ibc/9B50579E4AE3CF7B1705F04A4C715EE4E859F03620F0DE560C67CBB9B9A239A2', + name: 'Wrapped FTM', + display: 'ftm', + symbol: 'WFTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wftm-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + ] + }, + { + description: "Circle's stablecoin from Polygon on Axelar", + denom_units: [ + { + denom: + 'ibc/B446262C63CEB5EEB590D254A83A2AC64F1AAB32889410640F676BD86EF89384', + exponent: 0, + aliases: ['polygon-uusdc'] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + base: 'ibc/B446262C63CEB5EEB590D254A83A2AC64F1AAB32889410640F676BD86EF89384', + name: 'USD Coin from Polygon', + display: 'polygon-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'polygon-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Circle's stablecoin from Avalanche on Axelar", + denom_units: [ + { + denom: + 'ibc/46A86013286FE24C76623C960C80DF806A08923D36867CF097D8BD2836924FA7', + exponent: 0, + aliases: ['avalanche-uusdc'] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + base: 'ibc/46A86013286FE24C76623C960C80DF806A08923D36867CF097D8BD2836924FA7', + name: 'USD Coin from Avalanche', + display: 'avalanche-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'avalanche-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: 'Wrapped FIL on Axelar', + denom_units: [ + { + denom: + 'ibc/42A6CC4488E8E9A41C8EA5F05916639F8DD369688225A676CDD0C82F357CCEE9', + exponent: 0, + aliases: ['wfil-wei'] + }, + { + denom: 'fil', + exponent: 18 + } + ], + base: 'ibc/42A6CC4488E8E9A41C8EA5F05916639F8DD369688225A676CDD0C82F357CCEE9', + name: 'Wrapped FIL from Filecoin', + display: 'fil', + symbol: 'axlFIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wfil-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + } + ] + }, + { + description: 'Arbitrum on Axelar', + denom_units: [ + { + denom: + 'ibc/7C96F4653602697F532990AFD196C2E46D97740C91CD9365AB8532C34F1D6931', + exponent: 0, + aliases: ['arb-wei'] + }, + { + denom: 'arb', + exponent: 18 + } + ], + base: 'ibc/7C96F4653602697F532990AFD196C2E46D97740C91CD9365AB8532C34F1D6931', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'arb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B2A476B42347DB0D86829A659E89FC0595F30DD3A691DEED8B744AFB6D1992AC', + exponent: 0, + aliases: ['pepe-wei'] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + base: 'ibc/B2A476B42347DB0D86829A659E89FC0595F30DD3A691DEED8B744AFB6D1992AC', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'pepe-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/CD2F08E4F481B6A9B4377011BDB0AE5FECCA1D93B7BE28563FFE333CB9C7D32B', + exponent: 0, + aliases: ['cbeth-wei'] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + base: 'ibc/CD2F08E4F481B6A9B4377011BDB0AE5FECCA1D93B7BE28563FFE333CB9C7D32B', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'cbeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/AB093F58BB2A69746610C35A6C790512939D47EEA65B12CD9615B8590DF85495', + exponent: 0, + aliases: ['reth-wei'] + }, + { + denom: 'reth', + exponent: 18 + } + ], + base: 'ibc/AB093F58BB2A69746610C35A6C790512939D47EEA65B12CD9615B8590DF85495', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'reth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xae78736cd615f374d3085123a210448e74fc6393' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/67BD533728957D35CEDFF50DB2608568389BD954C197B5EAB3750098FA4488DB', + exponent: 0, + aliases: ['sfrxeth-wei'] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + base: 'ibc/67BD533728957D35CEDFF50DB2608568389BD954C197B5EAB3750098FA4488DB', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'sfrxeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xac3e018457b222d93114458476f3e3416abbe38f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/DB4899D8FE95DBF3EDDFC5B70D8263D732867B76CC93A1C6D4B61682CEC2B465', + exponent: 0, + aliases: ['wsteth-wei'] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + base: 'ibc/DB4899D8FE95DBF3EDDFC5B70D8263D732867B76CC93A1C6D4B61682CEC2B465', + name: 'Wrapped Lido Staked Ether', + display: 'wsteth', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'wsteth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/AC544424148A513692EC16AC58AC4628FC0C59D38994DDB21F8FCF5C4BC6D598', + exponent: 0, + aliases: ['yieldeth-wei'] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + base: 'ibc/AC544424148A513692EC16AC58AC4628FC0C59D38994DDB21F8FCF5C4BC6D598', + name: 'Real Yield Eth', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'yieldeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/922CCEEAE401595D91771A1D7C81A5AF34360BCF1F194F9966854E15485ED365', + exponent: 0, + aliases: ['ox-wei'] + }, + { + denom: 'ox', + exponent: 18 + } + ], + base: 'ibc/922CCEEAE401595D91771A1D7C81A5AF34360BCF1F194F9966854E15485ED365', + name: 'Open Exchange Token', + display: 'ox', + symbol: 'OX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'ox-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x78a0A62Fba6Fb21A83FE8a3433d44C73a4017A6f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/37B7C1AABC243067278C28C77973A28D7844EF5465ACD0EBE6E506BE4C6816C2', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/37B7C1AABC243067278C28C77973A28D7844EF5465ACD0EBE6E506BE4C6816C2', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/DA1BE182A23423A7031255C608B68D1E54AD30087AEB7F25B48D2CF8A5FE1DDB', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/DA1BE182A23423A7031255C608B68D1E54AD30087AEB7F25B48D2CF8A5FE1DDB', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/06C84FFAEBCB82E8E6E96CB069E1884DF2986C7682A661772D30141ED93C7B4A', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/06C84FFAEBCB82E8E6E96CB069E1884DF2986C7682A661772D30141ED93C7B4A', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/F63DEC0CD762E1B258767C2D8E91362315483A638FFF8B30DCEE81C49C9725B1', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F63DEC0CD762E1B258767C2D8E91362315483A638FFF8B30DCEE81C49C9725B1', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/8ECC3F9305795023FE1F7AB4C67B338BB1A1705A298E167269626D012E467110', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8ECC3F9305795023FE1F7AB4C67B338BB1A1705A298E167269626D012E467110', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/FBA34C2BCE61066AED99D1797EB05A419F5FDB523E36F30F6C254BE61BCCAE29', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/FBA34C2BCE61066AED99D1797EB05A419F5FDB523E36F30F6C254BE61BCCAE29', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/7A115794740AAA20DF614362C13A08500064A39BEDB506281F51B270EF91C883', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7A115794740AAA20DF614362C13A08500064A39BEDB506281F51B270EF91C883', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/BB2299E1B33282B292D53764B0A121CEB7E89280E7494C22A531EAB7B741D9A4', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BB2299E1B33282B292D53764B0A121CEB7E89280E7494C22A531EAB7B741D9A4', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/7FB69AF41937DB7B6BAE96979F59C8F5D838E7CA9C5D713B6663510E473DA08B', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7FB69AF41937DB7B6BAE96979F59C8F5D838E7CA9C5D713B6663510E473DA08B', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/815FC81EB6BD612206BD9A9909A02F7691D24A5B97CDFE2124B1BDCA9D4AB14C', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/815FC81EB6BD612206BD9A9909A02F7691D24A5B97CDFE2124B1BDCA9D4AB14C', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/8C585AA7388BCD1E05DD39BFC0B1DDD12024397EC68EA6B52FB38716C3A64790', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8C585AA7388BCD1E05DD39BFC0B1DDD12024397EC68EA6B52FB38716C3A64790', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/C1317B408C60771EBD2C20F248FAD2246ED9AD6133F4FCE75C2B20BFD5DC3FCF', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/C1317B408C60771EBD2C20F248FAD2246ED9AD6133F4FCE75C2B20BFD5DC3FCF', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/D033E88EB94ADB1845E0EF65FAECB9269846EBA5B1C32831FFCFB5B270759DCD', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D033E88EB94ADB1845E0EF65FAECB9269846EBA5B1C32831FFCFB5B270759DCD', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/D171E56737981CAD5DC9EA0A931B1B89BF3AD1226FAE441350EF8D6278D27B03', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D171E56737981CAD5DC9EA0A931B1B89BF3AD1226FAE441350EF8D6278D27B03', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/2BBF3EEB88F4BB5285A5075DE1B40EF65E5028947B7751096FFF9D05585ACFD1', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2BBF3EEB88F4BB5285A5075DE1B40EF65E5028947B7751096FFF9D05585ACFD1', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/30C9FA3DF80892CF4615A84845349EAD427670CB38C6B03B0388BE8543B2AB4D', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/30C9FA3DF80892CF4615A84845349EAD427670CB38C6B03B0388BE8543B2AB4D', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/BE9116F49581FF59F018C64FB4A445B307332F77381640AAB05380473D0D7642', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BE9116F49581FF59F018C64FB4A445B307332F77381640AAB05380473D0D7642', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/D43715C51D81CBCDCE72F94476EE539BC511991EF8D65FC7E4EDA982EE6CF1E2', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D43715C51D81CBCDCE72F94476EE539BC511991EF8D65FC7E4EDA982EE6CF1E2', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/CB77DC79F829E7F15A04C34A985DDD0E77CFBB7B6887552A10FCF8028A007234', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CB77DC79F829E7F15A04C34A985DDD0E77CFBB7B6887552A10FCF8028A007234', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/D8E6DBAF07B6E5588FF589D0FE6515B1D43C9E4D949C79A0506FCEEC55C630E4', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D8E6DBAF07B6E5588FF589D0FE6515B1D43C9E4D949C79A0506FCEEC55C630E4', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/7AE2B0FD4D084438C7910E6B294E0979A422936B65EC1F4BF67DEE4EC311741B', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7AE2B0FD4D084438C7910E6B294E0979A422936B65EC1F4BF67DEE4EC311741B', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/DB9E002E57F5ED443D21D292844F9D177927DC22E59D477B03D4979E118E80F2', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DB9E002E57F5ED443D21D292844F9D177927DC22E59D477B03D4979E118E80F2', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/C986CD6163D211958B8E5CAF35E4531962B799135C4CA615F31B8692034B2538', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C986CD6163D211958B8E5CAF35E4531962B799135C4CA615F31B8692034B2538', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/1EBD0791A5F074E852E379C5AA6B5FA1A85507597C7CD908E89BC86FE8422CE3', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1EBD0791A5F074E852E379C5AA6B5FA1A85507597C7CD908E89BC86FE8422CE3', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/8499DCD3CC54614A508C22E3F98003B533549E3D361162C700DC9B62E6343133', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8499DCD3CC54614A508C22E3F98003B533549E3D361162C700DC9B62E6343133', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/3B04FAB1869B7F4CAC1093E113AB2EB15AC8E0B8D76F40A4A7D5D7E1F1E6EA8C', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B04FAB1869B7F4CAC1093E113AB2EB15AC8E0B8D76F40A4A7D5D7E1F1E6EA8C', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/1688228D9E7F3A7CFE7E09B3F7F3E3000E8D86675CFC8C8F313ACEDEB2FE2493', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1688228D9E7F3A7CFE7E09B3F7F3E3000E8D86675CFC8C8F313ACEDEB2FE2493', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/9E23CCACE78F6D57407DDD8878B8C2144E6CC775C8CC8D4806BE80222999D245', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/9E23CCACE78F6D57407DDD8878B8C2144E6CC775C8CC8D4806BE80222999D245', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/A9617497CC1AC77B54D6FE98A3412F3BDEEA189178F513B969658AB3A9A358BD', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9617497CC1AC77B54D6FE98A3412F3BDEEA189178F513B969658AB3A9A358BD', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/984C71F28AC1BE4E8D818CA66CECD7208616D25A4AC99780074ED346B92329E9', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/984C71F28AC1BE4E8D818CA66CECD7208616D25A4AC99780074ED346B92329E9', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/8FC22AC4417B45142373DA76FC4FC59AD4E08493C1CEA04F5CF2BE5CAEE7F2C0', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8FC22AC4417B45142373DA76FC4FC59AD4E08493C1CEA04F5CF2BE5CAEE7F2C0', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/9C47E3943643B9F9B60FE699832EC09F6A1EE113D140EE6BEDF8381D5CB53515', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C47E3943643B9F9B60FE699832EC09F6A1EE113D140EE6BEDF8381D5CB53515', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/22040E16543BD3C4A44DE608944B8823E5C893890F8A736896736195B205EBF5', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/22040E16543BD3C4A44DE608944B8823E5C893890F8A736896736195B205EBF5', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/3E83703D985D6EF99332CF86E79A65E4C8F856CFE7D74EBB606EF6D405762438', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/3E83703D985D6EF99332CF86E79A65E4C8F856CFE7D74EBB606EF6D405762438', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/448F9F5170C08F88D2ED1C6394D9EF08F16444EF6F08E6978DB82ABAEEAC199B', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/448F9F5170C08F88D2ED1C6394D9EF08F16444EF6F08E6978DB82ABAEEAC199B', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/C8E216C59344A5288BF0E5489DC76084736A3C396AB1DB3039C4E0026282B31A', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/C8E216C59344A5288BF0E5489DC76084736A3C396AB1DB3039C4E0026282B31A', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/FB2B636BC58823E03B61141B8358D2F2505530D708E9254B8042655947D4F774', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB2B636BC58823E03B61141B8358D2F2505530D708E9254B8042655947D4F774', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/6511CC20E9FAA95AFDFBBA8359442EDB6910E6AE842538FB078BB6EBC740F64B', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6511CC20E9FAA95AFDFBBA8359442EDB6910E6AE842538FB078BB6EBC740F64B', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/29025E8653042A0D5090D9179A3593208FDB1984C772CBA8B90C80E0650696E9', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29025E8653042A0D5090D9179A3593208FDB1984C772CBA8B90C80E0650696E9', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/F6F6CF3400D3392954448F04BE45666FDBCF439F462C7796A8BD489E0A411E0A', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6F6CF3400D3392954448F04BE45666FDBCF439F462C7796A8BD489E0A411E0A', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/4E798A14E81E318B8DE19859FFAA81B2DFEE58B47A82805748C29D7E062F6218', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4E798A14E81E318B8DE19859FFAA81B2DFEE58B47A82805748C29D7E062F6218', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/D288275376CA67229F260CBDCE5C8D996889987A40685B1112F56788B04D3488', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D288275376CA67229F260CBDCE5C8D996889987A40685B1112F56788B04D3488', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/E72C42550ACDD0E24BE48EB660F8F09F8FEC12F23692D8BF31BB9F67F26DCA60', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E72C42550ACDD0E24BE48EB660F8F09F8FEC12F23692D8BF31BB9F67F26DCA60', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/83C54E9E58122B40C483E4CA7889BB8CE168D4B88CBF46AEA94466B62A7951E6', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/83C54E9E58122B40C483E4CA7889BB8CE168D4B88CBF46AEA94466B62A7951E6', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/8EE22EF8D99ABF405B2E1FE3746263F6373B5A4062FFA90590F67AC10E4A4530', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8EE22EF8D99ABF405B2E1FE3746263F6373B5A4062FFA90590F67AC10E4A4530', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/73E5E6F833C5D4CFFDB411731DD8813D1E10AA7FEB319C427A35DC0B50F0A5A6', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/73E5E6F833C5D4CFFDB411731DD8813D1E10AA7FEB319C427A35DC0B50F0A5A6', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/0C4C1514001A38D72DFB716D77CD5F3AD20C95478780122FEE4BE7B8645D5828', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/0C4C1514001A38D72DFB716D77CD5F3AD20C95478780122FEE4BE7B8645D5828', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/FA3EBB828D88D91AC8CF3BAB1FAECDAB1C21916020291851E7AFEDD215EBA346', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/FA3EBB828D88D91AC8CF3BAB1FAECDAB1C21916020291851E7AFEDD215EBA346', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/7A6428206CBDE7B47F78A7A8CF4587CDCFD2B3BF06DD0352CEF678E88F1A501D', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7A6428206CBDE7B47F78A7A8CF4587CDCFD2B3BF06DD0352CEF678E88F1A501D', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/106DF673CFB54A8674DCB3FCCA7AE7DBF2A73E8E676752DC4891C97F10947338', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/106DF673CFB54A8674DCB3FCCA7AE7DBF2A73E8E676752DC4891C97F10947338', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/3AD5B09B0681A6AE10EE30DBF0DBA3250ED2EDF4287FC4C46013E0623F6C7CD0', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3AD5B09B0681A6AE10EE30DBF0DBA3250ED2EDF4287FC4C46013E0623F6C7CD0', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/AB24556335E872F30A84D57783387643399C61642E5E26B0330F7A6D4CAFE4F5', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AB24556335E872F30A84D57783387643399C61642E5E26B0330F7A6D4CAFE4F5', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/C43141A8F6E9CEDBFA89601B2BA910C9F58A628BF0FE67DEC8096FDCAE4214A8', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C43141A8F6E9CEDBFA89601B2BA910C9F58A628BF0FE67DEC8096FDCAE4214A8', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/8DB926E5A7B6631C3E952FCE6082F5527E96746415DD347A7737990338AE8BE7', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/8DB926E5A7B6631C3E952FCE6082F5527E96746415DD347A7737990338AE8BE7', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/22F44834C7D29138B0C62C4828C0298FB09450BDF1A2494FD35DF1505622F18D', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/22F44834C7D29138B0C62C4828C0298FB09450BDF1A2494FD35DF1505622F18D', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/EED337375E957B2E3C8675A33F5D430377594C859E93903077FAADBB530B00C8', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EED337375E957B2E3C8675A33F5D430377594C859E93903077FAADBB530B00C8', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/62231F8971DF8C87B4E56510DCA49C7407C031801971A37CCAA527C4442D63ED', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62231F8971DF8C87B4E56510DCA49C7407C031801971A37CCAA527C4442D63ED', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/83AD4CEC83F62C1418F54F0D000C08514E0F09A012BB38747F723EE4F2FA5640', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/83AD4CEC83F62C1418F54F0D000C08514E0F09A012BB38747F723EE4F2FA5640', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/A1752490658F35A1577949DC7FFC5D63F4A2F600E5042F91B3F00D7A72A355B5', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A1752490658F35A1577949DC7FFC5D63F4A2F600E5042F91B3F00D7A72A355B5', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/064DADC867DF6A15EE437D6B17584DD688CDBE9E3DD1B28C63070B74E5E71944', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/064DADC867DF6A15EE437D6B17584DD688CDBE9E3DD1B28C63070B74E5E71944', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/C50A1074819C257326AB683ED98A9A39DE8574F87319E478F894EAC2B19B4C58', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/C50A1074819C257326AB683ED98A9A39DE8574F87319E478F894EAC2B19B4C58', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/24CC85FA48AF27F07FB00FC2A08EE73C9EE16DD1A8C3A222375A9E3A7425D81A', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/24CC85FA48AF27F07FB00FC2A08EE73C9EE16DD1A8C3A222375A9E3A7425D81A', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/D43874D0F31CF9A58F40301ABC1ABD6B1EE3928F8223F854BF495D61908EC942', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D43874D0F31CF9A58F40301ABC1ABD6B1EE3928F8223F854BF495D61908EC942', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/F63C494B8936EB418C2C4B4FE7DA9D9A455ABD8E38113D377FB836AAFD26909A', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F63C494B8936EB418C2C4B4FE7DA9D9A455ABD8E38113D377FB836AAFD26909A', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/E9E47344C7D078D45372EF138E8609DE9C39FDE454E665F35F3CD990CE920C8C', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E9E47344C7D078D45372EF138E8609DE9C39FDE454E665F35F3CD990CE920C8C', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/EFEBA801AD827EB5D8C524342796F0713EBAD27C7F7800F040B8DD34C778870C', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFEBA801AD827EB5D8C524342796F0713EBAD27C7F7800F040B8DD34C778870C', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/00A6285B20010D443BA2DDF0203D29B4FC5E2582D670181BBCAC1583744BA13B', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/00A6285B20010D443BA2DDF0203D29B4FC5E2582D670181BBCAC1583744BA13B', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/0B9C892A582ABD9D948D224514CFCD9D13832F95E08F9F37CE76EEE89B61C9EB', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0B9C892A582ABD9D948D224514CFCD9D13832F95E08F9F37CE76EEE89B61C9EB', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/F8F31D0F01C301D0A9C075B79F1A3BEDBBA48F080C6F06D768E7A1D21FBA5E22', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/F8F31D0F01C301D0A9C075B79F1A3BEDBBA48F080C6F06D768E7A1D21FBA5E22', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/216D1863BD3BD82C18FC90DF20DB2F2105B5EA3009B0C13606F15FA91AFFFDBA', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/216D1863BD3BD82C18FC90DF20DB2F2105B5EA3009B0C13606F15FA91AFFFDBA', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/5BF01E8DF7D10DE632A27AC65DA8AB60F5A1FE7A548F554EDB1AC8E27F3FAEC7', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5BF01E8DF7D10DE632A27AC65DA8AB60F5A1FE7A548F554EDB1AC8E27F3FAEC7', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/F33D73E8A6FCEEF8825C2CE7034DF844E1D43242FEC51FE03422A25EB6A0C9D5', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F33D73E8A6FCEEF8825C2CE7034DF844E1D43242FEC51FE03422A25EB6A0C9D5', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/6C31DBBDB5BC133BFF5CC436E8B4A8F6311E06C9FE21612FFB9413528E0E302F', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C31DBBDB5BC133BFF5CC436E8B4A8F6311E06C9FE21612FFB9413528E0E302F', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/A2FAE707F2026CBF2B2C7E5FBACCB420F7B7548B4CD6B106EBE119174155DF03', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A2FAE707F2026CBF2B2C7E5FBACCB420F7B7548B4CD6B106EBE119174155DF03', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/4C9AB1A191F71079726CFE9DEB1541212E1F4F0A392003FF241597D5EC6326F1', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4C9AB1A191F71079726CFE9DEB1541212E1F4F0A392003FF241597D5EC6326F1', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/30D694C5D707233F36735273C998C896AECC765AF3BB43CAADDC9BD07BB09CBC', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30D694C5D707233F36735273C998C896AECC765AF3BB43CAADDC9BD07BB09CBC', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/76C119B89290360BEC0F5275D43C563958ACE22823C249C80660578BC7DE4965', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76C119B89290360BEC0F5275D43C563958ACE22823C249C80660578BC7DE4965', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/CDB21529B104D66BA2BBDBF79319A09483EC2F7A8BA4C040373DFB456B914BF2', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CDB21529B104D66BA2BBDBF79319A09483EC2F7A8BA4C040373DFB456B914BF2', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/81C56D9DCB635C5363379D6B3E617B855EC1D437D45153C744534A1B2A9F7B28', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/81C56D9DCB635C5363379D6B3E617B855EC1D437D45153C744534A1B2A9F7B28', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/7A06A8A636E2AC0DE06C6D638DCBBC434687A5846E2B5CA38FE8680B641D366D', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7A06A8A636E2AC0DE06C6D638DCBBC434687A5846E2B5CA38FE8680B641D366D', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/19A8EDFB5DDD861E3A16D066599BF29C262EE003377FE5A8DD528E7FAEE30FB6', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/19A8EDFB5DDD861E3A16D066599BF29C262EE003377FE5A8DD528E7FAEE30FB6', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/96E3007D364A8A23B391DA75EEB111492DDE85E95A01A5AFCDCA8BBC9C2483CC', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/96E3007D364A8A23B391DA75EEB111492DDE85E95A01A5AFCDCA8BBC9C2483CC', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/14614DAE0AA07826A3480314BCC7BAA6E6CFFC63A934583521077FA35423BCF3', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/14614DAE0AA07826A3480314BCC7BAA6E6CFFC63A934583521077FA35423BCF3', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/171B4F5B17E0DA923FB24C6B6BF356C4BAE510529098D18D81FCB1243373E51E', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/171B4F5B17E0DA923FB24C6B6BF356C4BAE510529098D18D81FCB1243373E51E', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/8BCCE28138180F7F7D7B9F3327DD97DE595A0DD66449FAA90D77EDC00D7F5B18', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BCCE28138180F7F7D7B9F3327DD97DE595A0DD66449FAA90D77EDC00D7F5B18', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/4075E573BB480BF9B61EFBF3820E1DC50EA6AE676F2119212B9E665D6CDE3094', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4075E573BB480BF9B61EFBF3820E1DC50EA6AE676F2119212B9E665D6CDE3094', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/1079935F1E1E046B66E461498119923DDC32E7AFCB6828E2736D5384552B8DAA', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1079935F1E1E046B66E461498119923DDC32E7AFCB6828E2736D5384552B8DAA', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/73E178692DD9B98F6DF928B2DD88F4FFFE3CCE4BC64EC9F2B599DCCE7EC83DFB', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/73E178692DD9B98F6DF928B2DD88F4FFFE3CCE4BC64EC9F2B599DCCE7EC83DFB', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/F5C682B9E1AEE4D496EDA093CC5D6D3987FC33ABDCAEA75AA59EC2ADE5761C24', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5C682B9E1AEE4D496EDA093CC5D6D3987FC33ABDCAEA75AA59EC2ADE5761C24', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/DF44EB468CE1AF2B1EA38134656C905959EA8533F10E5FF96476700F707E06F2', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DF44EB468CE1AF2B1EA38134656C905959EA8533F10E5FF96476700F707E06F2', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/F090AAD85063039F88CF80B9D866F3C22BFFEFA72D6192F718199B05560B1E3D', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F090AAD85063039F88CF80B9D866F3C22BFFEFA72D6192F718199B05560B1E3D', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/F2C20F6FD981F9D50CBFB614FB802E9914BCEFABBC9DDE5F47E9F41BEC07E6BC', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F2C20F6FD981F9D50CBFB614FB802E9914BCEFABBC9DDE5F47E9F41BEC07E6BC', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/8BC1A5D8DC754EE90568DB13D13E282D3F0BBB9B2708BC3F9F7632BC088337BD', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BC1A5D8DC754EE90568DB13D13E282D3F0BBB9B2708BC3F9F7632BC088337BD', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/DC5DCA7F3B6A126A44A9B8A61BB12EBE79D166E58183251545B74B2D70919481', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DC5DCA7F3B6A126A44A9B8A61BB12EBE79D166E58183251545B74B2D70919481', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/B35EFEE70C958DCD8D94457542716A3FABACCCC2C9441A3BA5CBDB7C9AE55DEC', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B35EFEE70C958DCD8D94457542716A3FABACCCC2C9441A3BA5CBDB7C9AE55DEC', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/09FF201F2B4C9577776688275816C4030ACDE61F9A8465FCC810259621F700F7', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09FF201F2B4C9577776688275816C4030ACDE61F9A8465FCC810259621F700F7', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/F5C7B698AE91E06541F6CD512D587638F2C6ABC7C474346FD0A34889B3C24841', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5C7B698AE91E06541F6CD512D587638F2C6ABC7C474346FD0A34889B3C24841', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/77A0411E8DF84F6A275F1E338AB57A4F47D125ED90F0A3FEDDF5F356E1FF4389', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/77A0411E8DF84F6A275F1E338AB57A4F47D125ED90F0A3FEDDF5F356E1FF4389', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/0A660D078FD76E30C23135BBE62C475502D76C996B271445F1DAD830B94EC25E', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0A660D078FD76E30C23135BBE62C475502D76C996B271445F1DAD830B94EC25E', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/EA9AF6CB40E50826EC6CD37714805BA77A4AC70C9C06F3049D91EA4814BFA84B', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EA9AF6CB40E50826EC6CD37714805BA77A4AC70C9C06F3049D91EA4814BFA84B', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/7DADDE195EB29C2479384C896DAF7543732D5991FF283F905F30C7FCA6AFAE7D', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7DADDE195EB29C2479384C896DAF7543732D5991FF283F905F30C7FCA6AFAE7D', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/61503E1AD4DE6E271E35857830F5D0AC6F78E77CFA7A1A3EC46B0F77D8B12308', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/61503E1AD4DE6E271E35857830F5D0AC6F78E77CFA7A1A3EC46B0F77D8B12308', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/2CCE060BA08D0E41EC234A58C9878F0689E23927E33F5025B0B543B54ADE2BA5', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2CCE060BA08D0E41EC234A58C9878F0689E23927E33F5025B0B543B54ADE2BA5', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/38B29F6563DDADC81C9399EB5CDF140492CC2C58FB70048BC4430567A26ED193', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38B29F6563DDADC81C9399EB5CDF140492CC2C58FB70048BC4430567A26ED193', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/74B0BDD3C0941166F5E96BFBC847219BBE609535F3A0D941C22342A60BD43A08', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/74B0BDD3C0941166F5E96BFBC847219BBE609535F3A0D941C22342A60BD43A08', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9EC903850D6BD5CB2AAAC2012FC6A2AFE084998A69A791495596B5C1A02D6F23', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9EC903850D6BD5CB2AAAC2012FC6A2AFE084998A69A791495596B5C1A02D6F23', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/3ADD67F89E78DE5009961330F1327DB6DC88165BBD6882D88623C142621FA82A', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3ADD67F89E78DE5009961330F1327DB6DC88165BBD6882D88623C142621FA82A', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/81B937923DB3D0413F5B44CDEECB251E59E32D26D5377E0DE9A3727766AB8567', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/81B937923DB3D0413F5B44CDEECB251E59E32D26D5377E0DE9A3727766AB8567', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/D9C8D7AC0DF7199BEFAE84305B070B1EC38F8AF3DA983444318CE850468C5489', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D9C8D7AC0DF7199BEFAE84305B070B1EC38F8AF3DA983444318CE850468C5489', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/D957263097D25225C4D91A70845C10EAC51E7B537522AEC08687D23B306F4F7B', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D957263097D25225C4D91A70845C10EAC51E7B537522AEC08687D23B306F4F7B', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/EFF2A9F8FB4ADC6E384041D00C10403FEEC6E0534C717807DF6B43736E25F577', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFF2A9F8FB4ADC6E384041D00C10403FEEC6E0534C717807DF6B43736E25F577', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B3D5CE13787F37533CF7A87D95BBF62F3D027815304A6CC7B6EA7030BD9709B7', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B3D5CE13787F37533CF7A87D95BBF62F3D027815304A6CC7B6EA7030BD9709B7', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9E58E47857A51FFB728EDB7DD54CDFC2AB5E8FF358B9B010BF0A92AB18930BEA', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9E58E47857A51FFB728EDB7DD54CDFC2AB5E8FF358B9B010BF0A92AB18930BEA', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/18CD772EE2D231E26DA049B70A73BA674C8A35D991E52E3AC1F5451BFEC4AF40', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/18CD772EE2D231E26DA049B70A73BA674C8A35D991E52E3AC1F5451BFEC4AF40', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/1B60E4060369045D198CD73F74DE6F7E1AD608C5FB6709C1D2B6F28D88BF4891', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1B60E4060369045D198CD73F74DE6F7E1AD608C5FB6709C1D2B6F28D88BF4891', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/CC35C0E6612E2A3568DC4C2A75F933751564AEA45B8CE5C23F08777D3E773D1B', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC35C0E6612E2A3568DC4C2A75F933751564AEA45B8CE5C23F08777D3E773D1B', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/9481CBCEFA8486819A66152E02A2653680978947A495FA489DFFD5603A8D7595', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/9481CBCEFA8486819A66152E02A2653680978947A495FA489DFFD5603A8D7595', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/CD1F9CEE1189E4E7B2FB1F2B83211B9E49C1DE591B998D3D0DA680A1018EB80D', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CD1F9CEE1189E4E7B2FB1F2B83211B9E49C1DE591B998D3D0DA680A1018EB80D', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/E4515B969CFD2DD84ED80C3DC834261D478B8ADA6C157249003998483B6943C6', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4515B969CFD2DD84ED80C3DC834261D478B8ADA6C157249003998483B6943C6', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/1DCA7A1A3F61552E4A0932AF9EF9EC967CF67406B4E206645E4F94AF44873EB1', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DCA7A1A3F61552E4A0932AF9EF9EC967CF67406B4E206645E4F94AF44873EB1', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/3F0A0C7EBDEE61C9652B8A6154D27F62483F7E60813A3ADE87D61BE751A138EF', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/3F0A0C7EBDEE61C9652B8A6154D27F62483F7E60813A3ADE87D61BE751A138EF', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/50A08F06A48FAEBF6428ED99022E3097A2CB1CB2018168D325CA25297E9860CC', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/50A08F06A48FAEBF6428ED99022E3097A2CB1CB2018168D325CA25297E9860CC', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/57D9A0BFC996E8B8EE05E4092C043F1AF92621B5B33FE1AE734252E0FFC2AE84', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57D9A0BFC996E8B8EE05E4092C043F1AF92621B5B33FE1AE734252E0FFC2AE84', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/09CE9524B2ED24958C48673EDB155D72E2F55A9A2C72127489AE359DEC82D102', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09CE9524B2ED24958C48673EDB155D72E2F55A9A2C72127489AE359DEC82D102', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/B404E805113599D269F95F1C209FA6C4EA6C0739FFF7D475108ECA4A67554748', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B404E805113599D269F95F1C209FA6C4EA6C0739FFF7D475108ECA4A67554748', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/E6D1EFD44586EFA378320D33FB45DE923941DF524065BA936FE121BED32E8CF1', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E6D1EFD44586EFA378320D33FB45DE923941DF524065BA936FE121BED32E8CF1', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/ECA2D2209BD5EA3FF7D25F25BDC5BBB50A0956713279636FF1959C6E9CBEF7CF', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECA2D2209BD5EA3FF7D25F25BDC5BBB50A0956713279636FF1959C6E9CBEF7CF', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/3B48D03641E4522A761584D994A1FFB047F0B3317EE80AB82B0E9C5B78D89947', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3B48D03641E4522A761584D994A1FFB047F0B3317EE80AB82B0E9C5B78D89947', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/FB2C72C4D53AF7375223625ADC4DAD7DEC280F4DBFD3E2E44A140DB7D9DC1F07', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB2C72C4D53AF7375223625ADC4DAD7DEC280F4DBFD3E2E44A140DB7D9DC1F07', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/CE084E848EE293441496973583E2BF14D61A208CCEA33BE204332BE12DC42110', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE084E848EE293441496973583E2BF14D61A208CCEA33BE204332BE12DC42110', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/F27FD8847ED7B19D67F586E9C81B9F562732AEFEB4FE73F4317D60D0D12132B4', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F27FD8847ED7B19D67F586E9C81B9F562732AEFEB4FE73F4317D60D0D12132B4', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/700863F83F00B418CF178ABA52ECBCDB2FB2E63CD1B53F55F20FE4C256922F0E', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/700863F83F00B418CF178ABA52ECBCDB2FB2E63CD1B53F55F20FE4C256922F0E', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/645C92C91742A3D0B1DBBACA4083AE89EEA833F90A7031CDB549ACD0996ED358', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/645C92C91742A3D0B1DBBACA4083AE89EEA833F90A7031CDB549ACD0996ED358', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/B38CBC5B312E7A4ECE74183FCDD53BE5643264063D10AAABD44B2E7B531A294F', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/B38CBC5B312E7A4ECE74183FCDD53BE5643264063D10AAABD44B2E7B531A294F', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/337AF21DD5D4596D335F2365BB1A8EE3D5DA591796E489C2305527AB350E95D3', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/337AF21DD5D4596D335F2365BB1A8EE3D5DA591796E489C2305527AB350E95D3', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/089840DAB65415404C744F09D674E2C0EC88AE3C03F60ED61C963AE2B9273C60', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/089840DAB65415404C744F09D674E2C0EC88AE3C03F60ED61C963AE2B9273C60', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/22D2E699211C72D735BB0720C11BB563602BD42251AD55729FF46501ECC63101', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/22D2E699211C72D735BB0720C11BB563602BD42251AD55729FF46501ECC63101', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/C5A6B499ED07C0960F351511061C261F6BFAB6EBDFF7F92F9C1B7B78615A1AD4', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C5A6B499ED07C0960F351511061C261F6BFAB6EBDFF7F92F9C1B7B78615A1AD4', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/9102B73AB24C6B7DFEDA59AE3C65C308F3E7205CA89830CDE0079C1E4497AA4E', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9102B73AB24C6B7DFEDA59AE3C65C308F3E7205CA89830CDE0079C1E4497AA4E', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/70D9646588FC4C0A82B29E44107D23D3E1AEE6385BF6207B39C6ED560EA5E1CE', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/70D9646588FC4C0A82B29E44107D23D3E1AEE6385BF6207B39C6ED560EA5E1CE', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/93ABF66E09207040EC1A574F5561853DE5530DEDBDC903953EEDC987F9F02591', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/93ABF66E09207040EC1A574F5561853DE5530DEDBDC903953EEDC987F9F02591', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/BF2AD03674045A1F1AA3B1456C60D52AFA141B5C097EF45BBE5C2139FD2ED701', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF2AD03674045A1F1AA3B1456C60D52AFA141B5C097EF45BBE5C2139FD2ED701', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/524D1BD0F934193640C694FE47CE4A817EF342B774E6E4BB30B3E3A9DBAD2790', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/524D1BD0F934193640C694FE47CE4A817EF342B774E6E4BB30B3E3A9DBAD2790', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/F018FA30AADFFBA09E5B7534DD3F7C1CD94091552E907741A65D98CAD941202D', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F018FA30AADFFBA09E5B7534DD3F7C1CD94091552E907741A65D98CAD941202D', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/C65036C67CDB17BBEF6DE0E0A5B8DF7E79799766EB8A3BB3AC96981A6CC22CDD', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C65036C67CDB17BBEF6DE0E0A5B8DF7E79799766EB8A3BB3AC96981A6CC22CDD', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C50A0C7F7B66DE2A0646F0AE33AF97C6E3A7F6AEBDF02139E25B964241ACDAC5', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C50A0C7F7B66DE2A0646F0AE33AF97C6E3A7F6AEBDF02139E25B964241ACDAC5', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BCBAC8643C4F9F32C579783CC06C26D9EA2BBA8BA61FDDCD8353900A14373A48', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BCBAC8643C4F9F32C579783CC06C26D9EA2BBA8BA61FDDCD8353900A14373A48', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/57D61C7ADD13CA5D92A52AB82C6A7F8AC528FBAD6DCB59E42627153E1636A2EF', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57D61C7ADD13CA5D92A52AB82C6A7F8AC528FBAD6DCB59E42627153E1636A2EF', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/92540469D61D91C858A301E1AA69561E0214206E1810A05C1DF3094451ABCBEA', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92540469D61D91C858A301E1AA69561E0214206E1810A05C1DF3094451ABCBEA', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/B503253D24ADBC5A9508AF47CAD6E912A856CB11B09279252ABBC2DD2C210E04', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B503253D24ADBC5A9508AF47CAD6E912A856CB11B09279252ABBC2DD2C210E04', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/8CB5A08BCDC4AE6738AFBFC3AD1A35D673F7A67E105B7A0E9DD668E40A47A0B5', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8CB5A08BCDC4AE6738AFBFC3AD1A35D673F7A67E105B7A0E9DD668E40A47A0B5', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/F9F40CB526C1B8EECE538F5F9A920153B6C5B31655E020ED35EC0FA646918F2B', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/F9F40CB526C1B8EECE538F5F9A920153B6C5B31655E020ED35EC0FA646918F2B', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/0C2D0BAF7C6F6F312A9010203494E8AA89585E89E9F3EE3417F2A5AC276774FC', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0C2D0BAF7C6F6F312A9010203494E8AA89585E89E9F3EE3417F2A5AC276774FC', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/21899A4BFC610CDF2F4C02EA125992E878DA50AA3443666022EBC28CCF079425', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/21899A4BFC610CDF2F4C02EA125992E878DA50AA3443666022EBC28CCF079425', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/9BCAFB4930A8AE44F1BAB2F2D9AC8DC14797C67E79D024169CF736818752044F', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BCAFB4930A8AE44F1BAB2F2D9AC8DC14797C67E79D024169CF736818752044F', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/2C4D40662C62AB77A5D5C05229E57B15B2BAD8F9699AF9874F09DABD4B86DC23', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/2C4D40662C62AB77A5D5C05229E57B15B2BAD8F9699AF9874F09DABD4B86DC23', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/5BAA588DBAC6E9BF751A0BD8278DCA9B1E26D02B4C6FE436D55E8847BD207554', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5BAA588DBAC6E9BF751A0BD8278DCA9B1E26D02B4C6FE436D55E8847BD207554', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/CC37248F74915D5B30B8C02F38147DA22680F0F462C9C5CBC434F535FF8E542F', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC37248F74915D5B30B8C02F38147DA22680F0F462C9C5CBC434F535FF8E542F', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/2A11182234F42FF340F0AE3A50AEFF1A2F7DACF2383F623215F4F497FE59521C', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2A11182234F42FF340F0AE3A50AEFF1A2F7DACF2383F623215F4F497FE59521C', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/95A003804B0BD4DED1251D4D76D7823D08ED19FA12910B7F2A8D604C7B2244BA', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/95A003804B0BD4DED1251D4D76D7823D08ED19FA12910B7F2A8D604C7B2244BA', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/3202E4FFC4C608CFB2C5824573D5838139F993EA81E70811287599013AC095F0', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3202E4FFC4C608CFB2C5824573D5838139F993EA81E70811287599013AC095F0', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/D17CA03604F1FBB6DCB3368499AE872775E0DFBFE1E8944424F41A133123A4A8', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D17CA03604F1FBB6DCB3368499AE872775E0DFBFE1E8944424F41A133123A4A8', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/BD5F5C2F76E51780E33B00759AC1749A164161284FBB8A9343B8554F6761C9E2', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD5F5C2F76E51780E33B00759AC1749A164161284FBB8A9343B8554F6761C9E2', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/CF46406B0154376911D750DBBDA2AD48EF16CBD7C3E093CF705CBB3109AAB54E', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CF46406B0154376911D750DBBDA2AD48EF16CBD7C3E093CF705CBB3109AAB54E', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/BA0EB0193F1F17D8C54F1F481E655C93332E088DC3CE5359EC5156852C8F3D9A', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BA0EB0193F1F17D8C54F1F481E655C93332E088DC3CE5359EC5156852C8F3D9A', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/ACCFC1299624B5DE70955E611E7521E8003D92FFFBB11A6AB96B6851776B7308', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ACCFC1299624B5DE70955E611E7521E8003D92FFFBB11A6AB96B6851776B7308', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/6C9211591D2E961FFE2FDF4359D67EBDE4D4804AD5935C757BDE9F837497D4F3', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C9211591D2E961FFE2FDF4359D67EBDE4D4804AD5935C757BDE9F837497D4F3', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/C61F95A2511E83E71CA4C7AA4855B19CE9E5238CF4260545310D8037B978FCFB', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C61F95A2511E83E71CA4C7AA4855B19CE9E5238CF4260545310D8037B978FCFB', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/46F93D1A8AEE06E1CE6494BE8B0D99E6D93F7AB032B3AE8AFE03C94C42719FCC', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/46F93D1A8AEE06E1CE6494BE8B0D99E6D93F7AB032B3AE8AFE03C94C42719FCC', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/ECEBBD080442596B81525D3EC51ECE6D089139E53D27B57B1A78B8E4E0ECC3C5', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECEBBD080442596B81525D3EC51ECE6D089139E53D27B57B1A78B8E4E0ECC3C5', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/D98B4CC75174B30EC0D72CDCDAE96AB629389C9D28252F6B0132C84326FD5197', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D98B4CC75174B30EC0D72CDCDAE96AB629389C9D28252F6B0132C84326FD5197', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/CC743F3F531B88E3E18AA500BF8D83BD9993C7F12C75029113BD66A5917E946D', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC743F3F531B88E3E18AA500BF8D83BD9993C7F12C75029113BD66A5917E946D', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/15A266392B2259187C3C91556D306FAC8689B23757CC8AED1D016C9B115070FA', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/15A266392B2259187C3C91556D306FAC8689B23757CC8AED1D016C9B115070FA', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/2AC9BA7B3A2D92E1F0811B0711662184EC3430FD540C1FEEFAE457C55CB95DE6', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2AC9BA7B3A2D92E1F0811B0711662184EC3430FD540C1FEEFAE457C55CB95DE6', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/91C6E3A3F195113F236722DEC4684676EEF5774A85F0D7330306D6E5DC1738C7', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/91C6E3A3F195113F236722DEC4684676EEF5774A85F0D7330306D6E5DC1738C7', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/495ED74F3ED191F8D627006BBCFCAF91730B42258C4AFD7E503A0FB27EE9B00C', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/495ED74F3ED191F8D627006BBCFCAF91730B42258C4AFD7E503A0FB27EE9B00C', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/C8D2B3EE443D0E3D221EE9FA58698441451FA2310B4FD8356CF3620971574AFB', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C8D2B3EE443D0E3D221EE9FA58698441451FA2310B4FD8356CF3620971574AFB', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/0332151F630C31DEDD6A9DBE287D73CE710DE69B8674F397F480FE6A218F9F72', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0332151F630C31DEDD6A9DBE287D73CE710DE69B8674F397F480FE6A218F9F72', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/6B5EEBFA0FF8355F4FECEA9D06C4AFE2619977BFA3E0EB65B32DCD6505EEAF1E', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/6B5EEBFA0FF8355F4FECEA9D06C4AFE2619977BFA3E0EB65B32DCD6505EEAF1E', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/2E6C9FA4B5F49763CE55BE9594E57A07CD48051E7D7B2D7AB433C39A0B0F67DC', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/2E6C9FA4B5F49763CE55BE9594E57A07CD48051E7D7B2D7AB433C39A0B0F67DC', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/F52AD13F76073B16590A47E89B698ED1D71E8B98336B6C448547D9C035468E5A', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F52AD13F76073B16590A47E89B698ED1D71E8B98336B6C448547D9C035468E5A', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/7D67EC49F4B27B99DC0856B7DA74D55870B1CEDE925F0D4B77678B81BA6E3FE0', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7D67EC49F4B27B99DC0856B7DA74D55870B1CEDE925F0D4B77678B81BA6E3FE0', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/53515CCF66EB3C8F4B32B7BC0E4E439234B73D9150AD253CD68B62F33D3E192E', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/53515CCF66EB3C8F4B32B7BC0E4E439234B73D9150AD253CD68B62F33D3E192E', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/A90CA5F2C706D5E0BEBF17A590E73B7868899BCDA5082C7832B6D5BB116561AB', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A90CA5F2C706D5E0BEBF17A590E73B7868899BCDA5082C7832B6D5BB116561AB', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/4FBFB92ED8EBA5AB1454C1215D1FE536BB09393A58E27E3891FD5D9AE18B6A37', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/25E3F4703B0BC7BD8EF83338F83DA6617D162FE5130D9D9DAE0AF20AC5EA7F95', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/25E3F4703B0BC7BD8EF83338F83DA6617D162FE5130D9D9DAE0AF20AC5EA7F95', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/45FFBE290C088F201038C6858D6E3BF94025C99963467E7A763D3E3FC21FB5E0', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/45FFBE290C088F201038C6858D6E3BF94025C99963467E7A763D3E3FC21FB5E0', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/CD22C0DF73C38EE4C12F7958C6137C339362520FA5A2FEB106F0F21936B08171', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CD22C0DF73C38EE4C12F7958C6137C339362520FA5A2FEB106F0F21936B08171', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9A2FA00E02FBB3843FFD478043F351D817146CE4FAA556FCBC4134806F33DCB1', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9A2FA00E02FBB3843FFD478043F351D817146CE4FAA556FCBC4134806F33DCB1', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/5F82D57CEF1E43C2FB33481A6732FAEDA525A8D34AD6101F869799C9F92FB9A8', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F82D57CEF1E43C2FB33481A6732FAEDA525A8D34AD6101F869799C9F92FB9A8', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/1AC428BDB51BD1E34979FB2A1DEB9DC3DD1CCC6DE3D88D4D3E89A361EDDD3CC9', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1AC428BDB51BD1E34979FB2A1DEB9DC3DD1CCC6DE3D88D4D3E89A361EDDD3CC9', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/912BEC87E7CF0E160EE30B12F673BF47B652F47C6941000198BFE15C90C5A4E7', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/912BEC87E7CF0E160EE30B12F673BF47B652F47C6941000198BFE15C90C5A4E7', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/6D0DCE67DFE046EC06CC24175C7AB225A9C083BB7F01EA597A343870D38C158A', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/F722502EC90B3084DBD73589FC055E658EF9972A19ADDE61D3AA8BBF39B63883', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F722502EC90B3084DBD73589FC055E658EF9972A19ADDE61D3AA8BBF39B63883', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/E4B8C5B13B867E8E7EDD4DDFFC400CFF6D52FC1531AFE9B10343123CDE4ADB32', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4B8C5B13B867E8E7EDD4DDFFC400CFF6D52FC1531AFE9B10343123CDE4ADB32', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/7F22DC8C8982397A85B5F6E6BC328F7661519C9BE7A94592D69383A3F5D96D36', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F22DC8C8982397A85B5F6E6BC328F7661519C9BE7A94592D69383A3F5D96D36', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/C9CB30630ED403FC0D1773D4FA962331130D3DC6DAE2DF4900173B8366F4C725', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C9CB30630ED403FC0D1773D4FA962331130D3DC6DAE2DF4900173B8366F4C725', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/B2237C25865210084754C062706A3F2011E523C0C9DA43E222E0D5B8042B9541', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B2237C25865210084754C062706A3F2011E523C0C9DA43E222E0D5B8042B9541', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/81B7A23CF28714762A0EE9DA7C75D1D770F53CD4C75B82D9D07E626E731704DC', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/81B7A23CF28714762A0EE9DA7C75D1D770F53CD4C75B82D9D07E626E731704DC', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/58EC2414D627A2E406AF879FFB5FFE3504B87CF818E8B80EE30E41F23DB3CF14', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/58EC2414D627A2E406AF879FFB5FFE3504B87CF818E8B80EE30E41F23DB3CF14', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/5342070BF68732B9BEF1523DE9CDDC66890C40C0F1331AD16B4E7FA9412105B3', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/5342070BF68732B9BEF1523DE9CDDC66890C40C0F1331AD16B4E7FA9412105B3', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/74C6A071817288DE90F3FC2555B4C18816F327437EB0E825F05A6E3C62DAA2A6', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/74C6A071817288DE90F3FC2555B4C18816F327437EB0E825F05A6E3C62DAA2A6', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/80E17C2B2D0CE80BD4831B4E4E31F204A763EA045B8A4DB7EAA78637D3A1D13A', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/80E17C2B2D0CE80BD4831B4E4E31F204A763EA045B8A4DB7EAA78637D3A1D13A', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/635FEB0AB5A255B2BF417C95F40C529ADB716F6B291F98922869FB27A5C9A415', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/635FEB0AB5A255B2BF417C95F40C529ADB716F6B291F98922869FB27A5C9A415', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/E09053331EE6E980C09D841744CCD6D3150AE578BF86836A2255BB7EBF0F5F8D', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E09053331EE6E980C09D841744CCD6D3150AE578BF86836A2255BB7EBF0F5F8D', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/FDE4C3D32178E16022C1FADB9139FDDD204C8E8BF48D854735AEBC0FF3B251A4', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FDE4C3D32178E16022C1FADB9139FDDD204C8E8BF48D854735AEBC0FF3B251A4', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/C3131D228C3163DFD9068B14B920F10A4D37BE10E76CDC6C847B80AA83E40D40', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C3131D228C3163DFD9068B14B920F10A4D37BE10E76CDC6C847B80AA83E40D40', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/E0687047EA2BDEFC10A211E27502C2A78441684F624B41FD2FCFDEFDFB5AA569', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/E0687047EA2BDEFC10A211E27502C2A78441684F624B41FD2FCFDEFDFB5AA569', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/395ED4160BADDC277C5F4B62EADC1E918AF1A12ADB5B1494BEAD22514CF77171', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/395ED4160BADDC277C5F4B62EADC1E918AF1A12ADB5B1494BEAD22514CF77171', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/C15EB1B52CD0052BBE08929F9D735B4513957A5948918A8B39C2CF614281C474', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/C15EB1B52CD0052BBE08929F9D735B4513957A5948918A8B39C2CF614281C474', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/6E9637A7295EE3690456BC0212A092F169770F1D81C8D7756D9F17CD2FB615BF', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6E9637A7295EE3690456BC0212A092F169770F1D81C8D7756D9F17CD2FB615BF', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/8886AFBD1D42A03190FA8F74ABA19EAEA69DB56CE9D4F4EDBFF625DAD4EF02EC', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8886AFBD1D42A03190FA8F74ABA19EAEA69DB56CE9D4F4EDBFF625DAD4EF02EC', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/7946458E49830F854E3A6D144DF47532B92021310D0DDC45BF8B568CFDC4438A', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/7946458E49830F854E3A6D144DF47532B92021310D0DDC45BF8B568CFDC4438A', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/344A58150E329F4FF51C3C38F5528BE1A1595FB68CF818011FA1C0585E095861', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/344A58150E329F4FF51C3C38F5528BE1A1595FB68CF818011FA1C0585E095861', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/B94A65FAD6163CD47606C4BB08C696CBA6153357023B2D557933960CA149CBF0', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B94A65FAD6163CD47606C4BB08C696CBA6153357023B2D557933960CA149CBF0', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/9437BB40523C5AFD1413A1D8DEA5855EEC6E4CFE14D1DCA63341BED06BA7CD8B', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9437BB40523C5AFD1413A1D8DEA5855EEC6E4CFE14D1DCA63341BED06BA7CD8B', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/6AC8E17C1903E60B72A2B6E0697952B5A043B7AF982D71BC8FC5D5885E6712A4', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/6AC8E17C1903E60B72A2B6E0697952B5A043B7AF982D71BC8FC5D5885E6712A4', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/7804DC642450E24E1A03E3695A4E6652554BFE158CDE940EDDDAD7AF7580E115', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7804DC642450E24E1A03E3695A4E6652554BFE158CDE940EDDDAD7AF7580E115', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F13514F4B347A6035E85DD565887264D2919DFB558AB303FB495592E9B8ECF33', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F13514F4B347A6035E85DD565887264D2919DFB558AB303FB495592E9B8ECF33', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/E5B0D89429F2683BD3772DC55F76C01F37EB39A3476BC4908E6C2CC4AFF0DA2F', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/E5B0D89429F2683BD3772DC55F76C01F37EB39A3476BC4908E6C2CC4AFF0DA2F', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/8109C160C0A11D72ECFE82967D90193B237D6563AAFB817C82C33F18BF39E4E3', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8109C160C0A11D72ECFE82967D90193B237D6563AAFB817C82C33F18BF39E4E3', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/6B199312B29CF047BF8B1337450EF3AA0475FE0C312DB94055F2D5B22CD1E71A', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6B199312B29CF047BF8B1337450EF3AA0475FE0C312DB94055F2D5B22CD1E71A', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/03B109DEE70C41E7D69206D670E3839BFB72891FF2FB5D7D980703953CB8E62B', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/03B109DEE70C41E7D69206D670E3839BFB72891FF2FB5D7D980703953CB8E62B', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/6622E30A321549B623A4ACCC4A599A38655F1AFEB4FA96ED6588C1BACA300C4B', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6622E30A321549B623A4ACCC4A599A38655F1AFEB4FA96ED6588C1BACA300C4B', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/D38D7BCB848EFB3804045D33FCD776867C62317FB6FF94D21A1FCC1834B3821A', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D38D7BCB848EFB3804045D33FCD776867C62317FB6FF94D21A1FCC1834B3821A', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/593518DCBEDF6A57C205903B307840B0563C9D7223B3B9F818704557494EB5B4', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/593518DCBEDF6A57C205903B307840B0563C9D7223B3B9F818704557494EB5B4', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/7B004B11E2CCC9EE7A126F0260AA90BDE9ACAC99EF89AC3F739685D6A310F9E7', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7B004B11E2CCC9EE7A126F0260AA90BDE9ACAC99EF89AC3F739685D6A310F9E7', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/CC0A5E28C584A93AB762E71DD3D5991928637042AC3E900EE94E19E46CBFE935', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/CC0A5E28C584A93AB762E71DD3D5991928637042AC3E900EE94E19E46CBFE935', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/99DA220AB0370777C45F543B5F3236992D6C402C7706660A778FE527742D4496', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/99DA220AB0370777C45F543B5F3236992D6C402C7706660A778FE527742D4496', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/E51EF0215942396CCD7F4DFAB01FB41041668E8ED9E8B39DA9B67B34796DC457', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E51EF0215942396CCD7F4DFAB01FB41041668E8ED9E8B39DA9B67B34796DC457', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/0B657A64E07FC0903D71FF24B534F699C68301FEEEF4D5A52923F8870AB695A7', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0B657A64E07FC0903D71FF24B534F699C68301FEEEF4D5A52923F8870AB695A7', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/DF2B8FA4EF3AEFC02D5520A4E886BA3D12B489011A8AC959926B27FC0D34675D', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DF2B8FA4EF3AEFC02D5520A4E886BA3D12B489011A8AC959926B27FC0D34675D', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/48920E8BB6BCA489B4DDC1CCA9694BC2A25F08F90D8E5F77A26AF94C1226E19E', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/48920E8BB6BCA489B4DDC1CCA9694BC2A25F08F90D8E5F77A26AF94C1226E19E', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/084A447714B57EDF8249627EDA6907A27A9C758133B4F47AA83A775FE1DDEF4E', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/084A447714B57EDF8249627EDA6907A27A9C758133B4F47AA83A775FE1DDEF4E', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/EB7702F7862428669576938CD8DD19FBF39F6516F1F94A1B02AC8CBAFF06858B', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB7702F7862428669576938CD8DD19FBF39F6516F1F94A1B02AC8CBAFF06858B', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/A6FAB4141ECE6F85BAAC00989FDF7F96409673735B845DE730645EC67335E1C0', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A6FAB4141ECE6F85BAAC00989FDF7F96409673735B845DE730645EC67335E1C0', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/8D8187CD0222C85079ECFEE0A7A6279AD5C98980791A17BEBB5A78778B1204B6', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8D8187CD0222C85079ECFEE0A7A6279AD5C98980791A17BEBB5A78778B1204B6', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/D5CDA64730157DB9928A8E3CEEA19526A94F933443503A90D375394CA173F829', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/D5CDA64730157DB9928A8E3CEEA19526A94F933443503A90D375394CA173F829', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/8349192BE84F63ECBCDE2E0195DAC22453C9AAC740971FE95D382CA8075E6A1C', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8349192BE84F63ECBCDE2E0195DAC22453C9AAC740971FE95D382CA8075E6A1C', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/0F23E0D7F6595F6BBE43DF8007E1AD07126111DF9166768CA9AA359E46E71D4A', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F23E0D7F6595F6BBE43DF8007E1AD07126111DF9166768CA9AA359E46E71D4A', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/01AF5CB6E8BD5C19438398865170AD47D4B22DC751D618BE07F7DC4302D3022A', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/01AF5CB6E8BD5C19438398865170AD47D4B22DC751D618BE07F7DC4302D3022A', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/05EC9470C5B94B93DAEFC52C28D87B2BEFD99A5FB3B6ABC5E1AAF7396590E84F', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/05EC9470C5B94B93DAEFC52C28D87B2BEFD99A5FB3B6ABC5E1AAF7396590E84F', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/8ACFBDDF77DA174672D246AA2083FC83067F2FB669D9F6BB00632A3F635EBAF9', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/8ACFBDDF77DA174672D246AA2083FC83067F2FB669D9F6BB00632A3F635EBAF9', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/EA3D1D169CAF4C6A1B813D41337614C5785DD018514333C301B92B981A46CE02', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EA3D1D169CAF4C6A1B813D41337614C5785DD018514333C301B92B981A46CE02', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/EDA8ACB9E26D83C1C2BDDB21F2681310B2CAF26B9139561DC00475B1A24CC56F', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EDA8ACB9E26D83C1C2BDDB21F2681310B2CAF26B9139561DC00475B1A24CC56F', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/80D18976505E22590ABD29209A1B033C7212E952540C884EB5B2CA0F324ADC70', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/80D18976505E22590ABD29209A1B033C7212E952540C884EB5B2CA0F324ADC70', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/DCDB44CB1441F2DB392518373C8D8E2B5A1EEB128913C0EF37D6A6C8C91FAC24', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/DCDB44CB1441F2DB392518373C8D8E2B5A1EEB128913C0EF37D6A6C8C91FAC24', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/CD803A46DD63A5A03C1D67067A1712DF73B4802D9D7217978EBA39D31E110C93', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/CD803A46DD63A5A03C1D67067A1712DF73B4802D9D7217978EBA39D31E110C93', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/95D36DAAB98DD33062E6CA6C88F113FD14EB835CC75FCAFFB1CD609DCC9CB973', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/95D36DAAB98DD33062E6CA6C88F113FD14EB835CC75FCAFFB1CD609DCC9CB973', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/A77CC2CB874719F10F3E8974D7D51EC85F912536127EA2009E8276FCD75B8527', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A77CC2CB874719F10F3E8974D7D51EC85F912536127EA2009E8276FCD75B8527', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/8C8B8DB27CF99925C7624A7CB3247055F3C5B59DF466B9B30E441290F0F705D7', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/8C8B8DB27CF99925C7624A7CB3247055F3C5B59DF466B9B30E441290F0F705D7', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/814F2057808DF5C7C9F9E1A513D9E6669061FF1B010CED198B3352EBA29EFBF6', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/814F2057808DF5C7C9F9E1A513D9E6669061FF1B010CED198B3352EBA29EFBF6', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/2C24C5273CD0993300F11D951366CC0E7475381A767BE65F7080BB71D96984E9', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2C24C5273CD0993300F11D951366CC0E7475381A767BE65F7080BB71D96984E9', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/9C4A76F830BA0BE71F6E1B6211D7C1121BFE47CBD22B987371155BA3FC9F90CA', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C4A76F830BA0BE71F6E1B6211D7C1121BFE47CBD22B987371155BA3FC9F90CA', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/146C6E316BDB144EE6685FE033E8DF78152B227631B9EB46C017D9D6F9AF7313', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/146C6E316BDB144EE6685FE033E8DF78152B227631B9EB46C017D9D6F9AF7313', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/9EECD783C840991747E7C7A7943EF2359A7DC77C04BCAA4C4513912AA1E5FB2D', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9EECD783C840991747E7C7A7943EF2359A7DC77C04BCAA4C4513912AA1E5FB2D', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/191EFA49A0B7821EB7E4CA9C7312042A388D86A399D9D4DC4571D334B7F4D60D', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/191EFA49A0B7821EB7E4CA9C7312042A388D86A399D9D4DC4571D334B7F4D60D', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/5DA318CF6962D9859AA9997DBAD5EFFCF1C6B760ACE9166EFD19FF82F88467DE', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5DA318CF6962D9859AA9997DBAD5EFFCF1C6B760ACE9166EFD19FF82F88467DE', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/EB87F22692D3AFC92F6062F57E020FFCFB6399BEFF09329E839FBEAF0EE1942E', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB87F22692D3AFC92F6062F57E020FFCFB6399BEFF09329E839FBEAF0EE1942E', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/F19FBC3B7778956A625EA893CD19816E113BFD84221281A2AF3737B33FEFD476', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/F19FBC3B7778956A625EA893CD19816E113BFD84221281A2AF3737B33FEFD476', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/AF48CCD843B6F2AA8E9132D9623272AF02D7AFDF4946E90618A2534179CE91C0', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AF48CCD843B6F2AA8E9132D9623272AF02D7AFDF4946E90618A2534179CE91C0', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/1AB579FDAA05FA60F8EEE0B06E5FAE21EA583670964FFF140E970846376976B7', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1AB579FDAA05FA60F8EEE0B06E5FAE21EA583670964FFF140E970846376976B7', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/F2F84C8FBAF5C5124591B8828A143B38FC2F057845E6F25107ABE1F17D937009', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F2F84C8FBAF5C5124591B8828A143B38FC2F057845E6F25107ABE1F17D937009', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/01F9DC7355BF462268B8900E24DCCF69276DA22BD836DC61521F5A0ED20129CD', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/01F9DC7355BF462268B8900E24DCCF69276DA22BD836DC61521F5A0ED20129CD', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/8019670AC918838EAE340F1EBCE37035EDD57B86C499818318772505F514B03F', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8019670AC918838EAE340F1EBCE37035EDD57B86C499818318772505F514B03F', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/680FF5EE731374BCF69B0A8DA8D2473347B64B8BF1ABD5832DF51CFB53961AA8', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/680FF5EE731374BCF69B0A8DA8D2473347B64B8BF1ABD5832DF51CFB53961AA8', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/D81C7C3E35430804B92E7EA51C3F5384341254B4BD72C25CE5D2937B13091F31', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D81C7C3E35430804B92E7EA51C3F5384341254B4BD72C25CE5D2937B13091F31', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/3679EB0FAF260324A44EF05260EB747D81CA61017AC7D2BCD1BFD29AC927DB7A', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3679EB0FAF260324A44EF05260EB747D81CA61017AC7D2BCD1BFD29AC927DB7A', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/F89F635D97BC6400E17521B4220E3E08F44CE794EB80F5CABB356D3557E72637', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F89F635D97BC6400E17521B4220E3E08F44CE794EB80F5CABB356D3557E72637', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/1D42EC448B863AF39FB6788C2201528C29B8C6362994BA41D8AAD2515B497B6D', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D42EC448B863AF39FB6788C2201528C29B8C6362994BA41D8AAD2515B497B6D', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/ECACBA0DD2F55DF08D9713BDA4923A2B6DFF9057703F528EC724E76CC2CCF258', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECACBA0DD2F55DF08D9713BDA4923A2B6DFF9057703F528EC724E76CC2CCF258', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/C975417951A4AA121B7C0A137510DBEEF3008E1DB58A8129C439C0F4FF77F684', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/C975417951A4AA121B7C0A137510DBEEF3008E1DB58A8129C439C0F4FF77F684', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/6567DAF912E3BC274D0CCE45984E7A9559BF28F4AC9D366CD6A5B6B99168A3F5', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6567DAF912E3BC274D0CCE45984E7A9559BF28F4AC9D366CD6A5B6B99168A3F5', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/59703D5A806DF13C8EA2F36232FB0944B5669CCA731B45456B3E1E05F01491F2', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/59703D5A806DF13C8EA2F36232FB0944B5669CCA731B45456B3E1E05F01491F2', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/29A094924EB4272FFCAF4CBADC69F0C2BF575D5F28D6D9267A9E10F259346C53', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29A094924EB4272FFCAF4CBADC69F0C2BF575D5F28D6D9267A9E10F259346C53', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/950A4309223A3A8F5C97A684E5252CBF5B53DB883E37585FC6E90A79522621F3', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/950A4309223A3A8F5C97A684E5252CBF5B53DB883E37585FC6E90A79522621F3', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/9EC5098DF04B24E09BF1907EC3AF4E3B2D6BF4918B1A11A3661A5F0B4007E981', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9EC5098DF04B24E09BF1907EC3AF4E3B2D6BF4918B1A11A3661A5F0B4007E981', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/866403F8335408854636C51D1C81639329EC4409FE640100FD0C7E90D316C984', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/866403F8335408854636C51D1C81639329EC4409FE640100FD0C7E90D316C984', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BD9451F387367AA88FA3D18333B2F1D56607449F20B15B4557042DA869703E25', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD9451F387367AA88FA3D18333B2F1D56607449F20B15B4557042DA869703E25', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/F5D24D849000F1EA14946E9BED504C3736E3730FB9D7008C2D78CEFDC79061DE', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5D24D849000F1EA14946E9BED504C3736E3730FB9D7008C2D78CEFDC79061DE', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/32CC7460D443ECE2EB7D505CA527E99ED90630D5B8AAF2AAA647C602EDCE2FC9', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/32CC7460D443ECE2EB7D505CA527E99ED90630D5B8AAF2AAA647C602EDCE2FC9', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/cheqd.ts b/packages/assets/src/mainnet/cheqd.ts index f0a6d6503..aadebf8a0 100644 --- a/packages/assets/src/mainnet/cheqd.ts +++ b/packages/assets/src/mainnet/cheqd.ts @@ -14027,6 +14027,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-108', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/chihuahua.ts b/packages/assets/src/mainnet/chihuahua.ts index 9a304eb37..ff83be39f 100644 --- a/packages/assets/src/mainnet/chihuahua.ts +++ b/packages/assets/src/mainnet/chihuahua.ts @@ -15527,6 +15527,618 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/7D32BBC3C02F0E730FC564400A585E167C88EE1B2A60EDDDA6B265D0719FFFF7', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/7D32BBC3C02F0E730FC564400A585E167C88EE1B2A60EDDDA6B265D0719FFFF7', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-113', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/D1489F3713939AE235BE7C4D6D01C49B3A67791D86F79520EE67CFA4A1A88846', + exponent: 0, + aliases: ['uxprt'] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + base: 'ibc/D1489F3713939AE235BE7C4D6D01C49B3A67791D86F79520EE67CFA4A1A88846', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + coingecko_id: 'persistence', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: 'uxprt', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/C4D05558C4696D86EC0CE3661AE8BB57BC31CF942DB18DBAA3EDBE41171B6B99', + exponent: 0, + aliases: ['stk/uatom'] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + base: 'ibc/C4D05558C4696D86EC0CE3661AE8BB57BC31CF942DB18DBAA3EDBE41171B6B99', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: 'stk/uatom', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + denom_units: [ + { + denom: + 'ibc/476A6910601C05FF7446F845725A11F9A1A02F8C84709E7F4EC8EBED07E15D69', + exponent: 0, + aliases: [ + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/476A6910601C05FF7446F845725A11F9A1A02F8C84709E7F4EC8EBED07E15D69', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + keywords: ['canon'], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B61BC31027AB6CFEC6588C70DD1AED7A9F85F231CA4FD1A50502252C9CBA2438', + exponent: 0, + aliases: [ + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B61BC31027AB6CFEC6588C70DD1AED7A9F85F231CA4FD1A50502252C9CBA2438', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + description: 'Tether USDT on Persistence', + denom_units: [ + { + denom: + 'ibc/2947CC7875E12781239B31862A629BC6764C9072440DE97A4CA0C2F97A6A6344', + exponent: 0, + aliases: [ + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2947CC7875E12781239B31862A629BC6764C9072440DE97A4CA0C2F97A6A6344', + name: 'Tether USDT', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/CC2000291F68DA5B258E4E71A3D4A5947AE3D3AD19E36B6A24D1461A2B1044D5', + exponent: 0, + aliases: [ + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC2000291F68DA5B258E4E71A3D4A5947AE3D3AD19E36B6A24D1461A2B1044D5', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + description: 'dydx staking token', + denom_units: [ + { + denom: + 'ibc/B300E37F32418454A61BD836AD92329EA4CA5CFFAD640296E8EA9D9B3E5ECEA3', + exponent: 0, + aliases: [ + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B300E37F32418454A61BD836AD92329EA4CA5CFFAD640296E8EA9D9B3E5ECEA3', + name: 'dYdX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/51DEB9503A65441D8F9ED26B7542F15F737539C9D611AD97BB1D0028CE4874D8', + exponent: 0, + aliases: ['stk/uosmo'] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + base: 'ibc/51DEB9503A65441D8F9ED26B7542F15F737539C9D611AD97BB1D0028CE4874D8', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: 'stk/uosmo', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked DYDX', + denom_units: [ + { + denom: + 'ibc/4ED2CDC53A4D3483C134280EEF28E7AEE02DC3816EC51370B1A7769F98493629', + exponent: 0, + aliases: ['stk/adydx'] + }, + { + denom: 'stkdydx', + exponent: 18, + aliases: ['stk/dydx'] + } + ], + base: 'ibc/4ED2CDC53A4D3483C134280EEF28E7AEE02DC3816EC51370B1A7769F98493629', + name: 'PSTAKE staked DYDX', + display: 'stkdydx', + symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/BA73B2549C549848FC9DBD05947ACB1B8209FE8416488AAF8D96FA70012AA253', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } + ], + base: 'ibc/BA73B2549C549848FC9DBD05947ACB1B8209FE8416488AAF8D96FA70012AA253', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/5247021B17E2B76915DA02ECACA3D6C992682B7995D1B10B4A256B5180D85A58', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5247021B17E2B76915DA02ECACA3D6C992682B7995D1B10B4A256B5180D85A58', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/FB6888F627508157FBC9E31F5F01FDFFE8FE460F21015608E9E9DFA941592ED6', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/FB6888F627508157FBC9E31F5F01FDFFE8FE460F21015608E9E9DFA941592ED6', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-203', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/comdex.ts b/packages/assets/src/mainnet/comdex.ts index ee0c0206b..63d59f74c 100644 --- a/packages/assets/src/mainnet/comdex.ts +++ b/packages/assets/src/mainnet/comdex.ts @@ -15806,6 +15806,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-87', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15869,17 +15916,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -15892,6 +15928,17 @@ const assets: AssetList = { channel_id: 'channel-57' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -16161,17 +16208,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -16184,6 +16220,17 @@ const assets: AssetList = { channel_id: 'channel-57' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -16205,6 +16252,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-71', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-57' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -16214,19 +16274,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/E60AB636148EBA63C47652B0605D8C1B91608F55A092DD4FD3EA1D333CA27E98', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/E60AB636148EBA63C47652B0605D8C1B91608F55A092DD4FD3EA1D333CA27E98', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-71', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-57' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/3C938AF16AF6FED0D7C40A6B006F1F2DD18994373697307BC64F163A64713F92', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3C938AF16AF6FED0D7C40A6B006F1F2DD18994373697307BC64F163A64713F92', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-71', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-57' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/4BE841DB02120C4CA4291A0605F89B85E7A26ECE9FEAA2D44A618125FB327934', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/4BE841DB02120C4CA4291A0605F89B85E7A26ECE9FEAA2D44A618125FB327934', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-71', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-57' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/composable.ts b/packages/assets/src/mainnet/composable.ts index c85eb7120..1d6790a41 100644 --- a/packages/assets/src/mainnet/composable.ts +++ b/packages/assets/src/mainnet/composable.ts @@ -19025,6 +19025,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1279', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking and governance token of Picasso.', denom_units: [ diff --git a/packages/assets/src/mainnet/coreum.ts b/packages/assets/src/mainnet/coreum.ts index 3052eec55..64bfdfcbb 100644 --- a/packages/assets/src/mainnet/coreum.ts +++ b/packages/assets/src/mainnet/coreum.ts @@ -17792,6 +17792,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2188', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/cosmoshub.ts b/packages/assets/src/mainnet/cosmoshub.ts index 4c90e5445..55c25c8b3 100644 --- a/packages/assets/src/mainnet/cosmoshub.ts +++ b/packages/assets/src/mainnet/cosmoshub.ts @@ -22099,6 +22099,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/008BD6B710F63916EE3F43014ED4FE6C0D811129E500925556E7B8B15E409B56', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/008BD6B710F63916EE3F43014ED4FE6C0D811129E500925556E7B8B15E409B56', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-141' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -22162,17 +22209,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -22185,6 +22221,17 @@ const assets: AssetList = { channel_id: 'channel-190' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -22454,17 +22501,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -22477,6 +22513,17 @@ const assets: AssetList = { channel_id: 'channel-190' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -22498,6 +22545,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-24', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-190' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -22507,19 +22567,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/A59E580BE54014A1D2906904D619E75D64CECE8F32426767F5183F740A906861', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/A59E580BE54014A1D2906904D619E75D64CECE8F32426767F5183F740A906861', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-24', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', chain_name: 'persistence' }, chain: { channel_id: 'channel-190' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B6A0CD7A7BDF3A64226A3C26A1594BB57067D18B8D0C36F178102F8430B5AC88', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B6A0CD7A7BDF3A64226A3C26A1594BB57067D18B8D0C36F178102F8430B5AC88', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-24', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-190' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/FA15CB7F6D72756D65B37DEC09945F539D8A7EAB2F77BFDB893117005B9EDE81', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/FA15CB7F6D72756D65B37DEC09945F539D8A7EAB2F77BFDB893117005B9EDE81', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-24', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-190' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -24465,6 +24654,101 @@ const assets: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B309C9763DE6C64A8E8611BE7F260BBB4A37C51B9AFF934A8C564761F0170B83', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-431' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BF78F7AAD6A2570AF85B04B40B13578FC365214CA44AA034B34C387E8DE558A', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-431' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/crescent.ts b/packages/assets/src/mainnet/crescent.ts index 5d9522bed..f8737395f 100644 --- a/packages/assets/src/mainnet/crescent.ts +++ b/packages/assets/src/mainnet/crescent.ts @@ -18847,6 +18847,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-297', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18910,17 +18957,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -18933,6 +18969,17 @@ const assets: AssetList = { channel_id: 'channel-30' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19202,17 +19249,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19225,6 +19261,17 @@ const assets: AssetList = { channel_id: 'channel-30' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19246,6 +19293,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-68', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-30' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19255,19 +19315,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/AB95C850D55C9329FADB69D80BCD81235E85BF3BB2166CD4117F830E0D71A72A', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/AB95C850D55C9329FADB69D80BCD81235E85BF3BB2166CD4117F830E0D71A72A', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-68', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-30' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/42A1A330577D61BD2261BA9A1648E847072A3EB38186120714830A4F9AD89E15', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/42A1A330577D61BD2261BA9A1648E847072A3EB38186120714830A4F9AD89E15', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-68', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-30' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/E02900E459607766B93D7A2F35D033C53D9871E1156929971CA0D2A4A9A0DB32', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/E02900E459607766B93D7A2F35D033C53D9871E1156929971CA0D2A4A9A0DB32', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-68', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-30' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/cryptoorgchain.ts b/packages/assets/src/mainnet/cryptoorgchain.ts index 2a0fa23ef..4d95a41f1 100644 --- a/packages/assets/src/mainnet/cryptoorgchain.ts +++ b/packages/assets/src/mainnet/cryptoorgchain.ts @@ -14135,6 +14135,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14198,17 +14245,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14221,6 +14257,17 @@ const assets: AssetList = { channel_id: 'channel-17' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14490,17 +14537,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14513,6 +14549,17 @@ const assets: AssetList = { channel_id: 'channel-17' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14534,6 +14581,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-17' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14543,19 +14603,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/7F2B47F59BB89A23A760B6E3BC71703348A80885E472360497D1283EF04BFDBE', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/7F2B47F59BB89A23A760B6E3BC71703348A80885E472360497D1283EF04BFDBE', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-11', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-17' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/0D7C41D8B78429E14988458FA0DE254C9A896535BACB311F44794875949ED25D', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0D7C41D8B78429E14988458FA0DE254C9A896535BACB311F44794875949ED25D', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-17' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/C9EAF02291EC61167E8804278EEB7072AB44A65D5B3B10D64905B13AB738A082', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/C9EAF02291EC61167E8804278EEB7072AB44A65D5B3B10D64905B13AB738A082', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-17' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/cudos.ts b/packages/assets/src/mainnet/cudos.ts index 509c7d501..c61c8e94c 100644 --- a/packages/assets/src/mainnet/cudos.ts +++ b/packages/assets/src/mainnet/cudos.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-298', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/decentr.ts b/packages/assets/src/mainnet/decentr.ts index a2c04d460..6c9c6ccd9 100644 --- a/packages/assets/src/mainnet/decentr.ts +++ b/packages/assets/src/mainnet/decentr.ts @@ -13744,6 +13744,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-181', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/desmos.ts b/packages/assets/src/mainnet/desmos.ts index 72714439f..9a512fa49 100644 --- a/packages/assets/src/mainnet/desmos.ts +++ b/packages/assets/src/mainnet/desmos.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-135', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dig.ts b/packages/assets/src/mainnet/dig.ts index 6ffc27db6..e32b6a0d4 100644 --- a/packages/assets/src/mainnet/dig.ts +++ b/packages/assets/src/mainnet/dig.ts @@ -13814,6 +13814,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-128', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/doravota.ts b/packages/assets/src/mainnet/doravota.ts index 1d8a2f2e9..b338bef87 100644 --- a/packages/assets/src/mainnet/doravota.ts +++ b/packages/assets/src/mainnet/doravota.ts @@ -15649,6 +15649,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2694', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ diff --git a/packages/assets/src/mainnet/dydx.ts b/packages/assets/src/mainnet/dydx.ts index 2a933150f..8f34d543d 100644 --- a/packages/assets/src/mainnet/dydx.ts +++ b/packages/assets/src/mainnet/dydx.ts @@ -16861,6 +16861,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6787', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -16924,17 +16971,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -16947,6 +16983,17 @@ const assets: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -17216,17 +17263,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -17239,6 +17275,17 @@ const assets: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -17260,6 +17307,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-131', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -17269,19 +17329,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-131', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', chain_name: 'persistence' }, chain: { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-131', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-131', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -18098,6 +18287,49 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/3FE70329521E882682D5FE840A1FA0FF65AC1A2FBDEA9B7E38F767FD3C5C90A3', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/3FE70329521E882682D5FE840A1FA0FF65AC1A2FBDEA9B7E38F767FD3C5C90A3', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-118', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-8' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dymension.ts b/packages/assets/src/mainnet/dymension.ts index ce43fb808..8d443cf80 100644 --- a/packages/assets/src/mainnet/dymension.ts +++ b/packages/assets/src/mainnet/dymension.ts @@ -1635,6 +1635,184 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' } }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/04E01477A69DF1E5EE99F85C15B66D68D23292275357CAA44B2E0527310A405E', + exponent: 0, + aliases: ['aevmos'] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + base: 'ibc/04E01477A69DF1E5EE99F85C15B66D68D23292275357CAA44B2E0527310A405E', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + coingecko_id: 'evmos', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-109', + base_denom: 'aevmos', + chain_name: 'evmos' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, + { + description: 'Tether USDt on Evmos', + denom_units: [ + { + denom: + 'ibc/B03A352F0BDA6061AB98014CAE999F18BDD96C108EA7231147A935F0EBCB7250', + exponent: 0, + aliases: [ + 'ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B03A352F0BDA6061AB98014CAE999F18BDD96C108EA7231147A935F0EBCB7250', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-109', + base_denom: + 'ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5', + chain_name: 'evmos' + }, + chain: { + channel_id: 'channel-37' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/6C4D9DB68084D08303E480598D82DE54815F0F9FE058AA81F8780C80D2CE9D56', + exponent: 0, + aliases: ['erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9'] + }, + { + denom: 'neok', + exponent: 18 + } + ], + base: 'ibc/6C4D9DB68084D08303E480598D82DE54815F0F9FE058AA81F8780C80D2CE9D56', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-109', + base_denom: 'erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9', + chain_name: 'evmos' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, + { + description: 'The token of Teledisko DAO.', + denom_units: [ + { + denom: + 'ibc/918F72CE9512415DF6378FB70074A7A9D1CE9DE35A8B93DD8B8E5D5B2DF27FC6', + exponent: 0, + aliases: ['erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280'] + }, + { + denom: 'berlin', + exponent: 18 + } + ], + base: 'ibc/918F72CE9512415DF6378FB70074A7A9D1CE9DE35A8B93DD8B8E5D5B2DF27FC6', + name: 'Teledisko DAO', + display: 'berlin', + symbol: 'BERLIN', + type_asset: 'erc20', + address: '0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-109', + base_denom: 'erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280', + chain_name: 'evmos' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -18228,6 +18406,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/dyson.ts b/packages/assets/src/mainnet/dyson.ts index 6b1836831..b2d31ba65 100644 --- a/packages/assets/src/mainnet/dyson.ts +++ b/packages/assets/src/mainnet/dyson.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-526', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/echelon.ts b/packages/assets/src/mainnet/echelon.ts index 9da440fd2..1db28c40e 100644 --- a/packages/assets/src/mainnet/echelon.ts +++ b/packages/assets/src/mainnet/echelon.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/CCC41D3353AB538C19A52BD6418D1EBDD358DB7986AF9C58F3D31BEEC867499C', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/CCC41D3353AB538C19A52BD6418D1EBDD358DB7986AF9C58F3D31BEEC867499C', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-403', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-11' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/emoney.ts b/packages/assets/src/mainnet/emoney.ts index 91e31a48f..0ab21bd46 100644 --- a/packages/assets/src/mainnet/emoney.ts +++ b/packages/assets/src/mainnet/emoney.ts @@ -13995,6 +13995,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/empowerchain.ts b/packages/assets/src/mainnet/empowerchain.ts index c6bf84ef9..503f950bd 100644 --- a/packages/assets/src/mainnet/empowerchain.ts +++ b/packages/assets/src/mainnet/empowerchain.ts @@ -15187,6 +15187,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1411', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/evmos.ts b/packages/assets/src/mainnet/evmos.ts index b6d50b2aa..6e344800a 100644 --- a/packages/assets/src/mainnet/evmos.ts +++ b/packages/assets/src/mainnet/evmos.ts @@ -2824,6 +2824,50 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/9B89949D69EB1552815A25EC9CA5F4F48946F5FF368341B2F8E61A0AEDAA6242', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/9B89949D69EB1552815A25EC9CA5F4F48946F5FF368341B2F8E61A0AEDAA6242', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-109' + } + } + ] + }, { description: 'The native fee token of Gateway.', denom_units: [ @@ -3604,6 +3648,57 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/618CA6DEBCC55577D680A53B4181538A7B20DBDBF5DFFD132E0978A94B22A8F4', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/618CA6DEBCC55577D680A53B4181538A7B20DBDBF5DFFD132E0978A94B22A8F4', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-94' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'The native token of Gravity Bridge', denom_units: [ @@ -19967,6 +20062,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-204', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/fetchhub.ts b/packages/assets/src/mainnet/fetchhub.ts index e1e787638..8dcc4acb2 100644 --- a/packages/assets/src/mainnet/fetchhub.ts +++ b/packages/assets/src/mainnet/fetchhub.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-229', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/furya.ts b/packages/assets/src/mainnet/furya.ts index 4bc159df1..28ac82f72 100644 --- a/packages/assets/src/mainnet/furya.ts +++ b/packages/assets/src/mainnet/furya.ts @@ -15410,6 +15410,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8690', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/fxcore.ts b/packages/assets/src/mainnet/fxcore.ts index f27cbb260..9341dd873 100644 --- a/packages/assets/src/mainnet/fxcore.ts +++ b/packages/assets/src/mainnet/fxcore.ts @@ -15188,6 +15188,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/98F4267F7DB04AE5C710AD1F929C9253DC734D938A5D22263F8DAD0E9612D2C8', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/98F4267F7DB04AE5C710AD1F929C9253DC734D938A5D22263F8DAD0E9612D2C8', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2716', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, { description: 'Pundi X Token', denom_units: [ diff --git a/packages/assets/src/mainnet/galaxy.ts b/packages/assets/src/mainnet/galaxy.ts index 55e22b960..308099dac 100644 --- a/packages/assets/src/mainnet/galaxy.ts +++ b/packages/assets/src/mainnet/galaxy.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-236', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gateway.ts b/packages/assets/src/mainnet/gateway.ts index 67220c38a..0f7fe0cfd 100644 --- a/packages/assets/src/mainnet/gateway.ts +++ b/packages/assets/src/mainnet/gateway.ts @@ -15723,6 +15723,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2186', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/genesisl1.ts b/packages/assets/src/mainnet/genesisl1.ts index b04333d2f..2ecdc1751 100644 --- a/packages/assets/src/mainnet/genesisl1.ts +++ b/packages/assets/src/mainnet/genesisl1.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-253', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gitopia.ts b/packages/assets/src/mainnet/gitopia.ts index d0d0fca03..c7ed2be20 100644 --- a/packages/assets/src/mainnet/gitopia.ts +++ b/packages/assets/src/mainnet/gitopia.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-781', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gravitybridge.ts b/packages/assets/src/mainnet/gravitybridge.ts index 4d9e591dd..38ad67f29 100644 --- a/packages/assets/src/mainnet/gravitybridge.ts +++ b/packages/assets/src/mainnet/gravitybridge.ts @@ -2181,7 +2181,8 @@ const assets: AssetList = { } }, { - description: "NYX Token (NYX) is the Nym Network's native token.", + description: + "NYX Token (NYX) is the Nym Network's native staking and governance token.", denom_units: [ { denom: @@ -2241,21 +2242,21 @@ const assets: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg', theme: { dark_mode: false, circle: true } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg', theme: { dark_mode: true, circle: true @@ -15872,6 +15873,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15935,17 +15983,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -15958,6 +15995,17 @@ const assets: AssetList = { channel_id: 'channel-24' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -16227,17 +16275,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -16250,6 +16287,17 @@ const assets: AssetList = { channel_id: 'channel-24' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -16271,6 +16319,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-24' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -16280,19 +16341,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/6C06EB4419461D232B4EF6CCC6F48EB48A497B8E4C6C6420F55945103AD5ACAB', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/6C06EB4419461D232B4EF6CCC6F48EB48A497B8E4C6C6420F55945103AD5ACAB', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-38', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-24' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/A8AD89C8EC319960C7B7CAF331AFAD0BCC86A806315CC0E7FDA8D0CFA6E63DFF', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A8AD89C8EC319960C7B7CAF331AFAD0BCC86A806315CC0E7FDA8D0CFA6E63DFF', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-24' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/10F20E65BC82509FD763EC293DC9C6191CB97DFDEB52FC06B302F6E533F07946', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/10F20E65BC82509FD763EC293DC9C6191CB97DFDEB52FC06B302F6E533F07946', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-24' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/haqq.ts b/packages/assets/src/mainnet/haqq.ts index b2444661b..00cc6f23e 100644 --- a/packages/assets/src/mainnet/haqq.ts +++ b/packages/assets/src/mainnet/haqq.ts @@ -16007,6 +16007,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1575', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/humans.ts b/packages/assets/src/mainnet/humans.ts index 753cbf4c7..1eaf78b12 100644 --- a/packages/assets/src/mainnet/humans.ts +++ b/packages/assets/src/mainnet/humans.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/9A9C1DB042994A614735796ABB48EEB1DF52B2ECB987DA71E6D303F1985041DD', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/9A9C1DB042994A614735796ABB48EEB1DF52B2ECB987DA71E6D303F1985041DD', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/impacthub.ts b/packages/assets/src/mainnet/impacthub.ts index d0a0f19b7..8f4d98888 100644 --- a/packages/assets/src/mainnet/impacthub.ts +++ b/packages/assets/src/mainnet/impacthub.ts @@ -15363,6 +15363,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/9A9C1DB042994A614735796ABB48EEB1DF52B2ECB987DA71E6D303F1985041DD', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/9A9C1DB042994A614735796ABB48EEB1DF52B2ECB987DA71E6D303F1985041DD', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, { description: "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", diff --git a/packages/assets/src/mainnet/imversed.ts b/packages/assets/src/mainnet/imversed.ts index 8a288635c..8e52f3fe2 100644 --- a/packages/assets/src/mainnet/imversed.ts +++ b/packages/assets/src/mainnet/imversed.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-517', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/index.ts b/packages/assets/src/mainnet/index.ts index 027e818f7..402bc1a30 100644 --- a/packages/assets/src/mainnet/index.ts +++ b/packages/assets/src/mainnet/index.ts @@ -19,6 +19,7 @@ export * as canto from './canto'; export * as carbon from './carbon'; export * as celestia from './celestia'; export * as cerberus from './cerberus'; +export * as chain4energy from './chain4energy'; export * as cheqd from './cheqd'; export * as chihuahua from './chihuahua'; export * as comdex from './comdex'; @@ -89,6 +90,7 @@ export * as planq from './planq'; export * as point from './point'; export * as provenance from './provenance'; export * as pundix from './pundix'; +export * as pylons from './pylons'; export * as quasar from './quasar'; export * as quicksilver from './quicksilver'; export * as qwoyn from './qwoyn'; diff --git a/packages/assets/src/mainnet/injective.ts b/packages/assets/src/mainnet/injective.ts index 11339889b..49f49b934 100644 --- a/packages/assets/src/mainnet/injective.ts +++ b/packages/assets/src/mainnet/injective.ts @@ -2952,6 +2952,57 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/2138C4EA63EFD757D42F75B90177FE34A9508DC0046DC48844CFF26659AE7A9D', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/2138C4EA63EFD757D42F75B90177FE34A9508DC0046DC48844CFF26659AE7A9D', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-13', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-183' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -6477,6 +6528,145 @@ const assets: AssetList = { } ] }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/6ED95AEFA5D9A6F9EF9CDD05FED7D7C9D7F42D9892E7236EB9B251CE9E999701', + exponent: 0, + aliases: ['loki'] + }, + { + denom: 'odin', + exponent: 6 + } + ], + base: 'ibc/6ED95AEFA5D9A6F9EF9CDD05FED7D7C9D7F42D9892E7236EB9B251CE9E999701', + name: 'ODIN', + display: 'odin', + symbol: 'ODIN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + coingecko_id: 'odin-protocol', + images: [ + { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-65', + base_denom: 'loki', + chain_name: 'odin' + }, + chain: { + channel_id: 'channel-214' + } + } + ] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/8E4953E506CF135A3ACDF6D6556ED1DB4F6A749F3910D2B4A77E2E851C4B2638', + exponent: 0, + aliases: ['mGeo'] + }, + { + denom: 'geo', + exponent: 6 + } + ], + base: 'ibc/8E4953E506CF135A3ACDF6D6556ED1DB4F6A749F3910D2B4A77E2E851C4B2638', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-65', + base_denom: 'mGeo', + chain_name: 'odin' + }, + chain: { + channel_id: 'channel-214' + } + } + ] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/AA206C13A2AD46401BD1E8E65F96EC9BF86051A8156A92DD08BEF70381D39CE2', + exponent: 0, + aliases: ['mO9W'] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + base: 'ibc/AA206C13A2AD46401BD1E8E65F96EC9BF86051A8156A92DD08BEF70381D39CE2', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-65', + base_denom: 'mO9W', + chain_name: 'odin' + }, + chain: { + channel_id: 'channel-214' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ @@ -20073,6 +20263,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-122', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -20136,17 +20373,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -20159,6 +20385,17 @@ const assets: AssetList = { channel_id: 'channel-82' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -20428,17 +20665,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -20451,6 +20677,17 @@ const assets: AssetList = { channel_id: 'channel-82' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -20472,6 +20709,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-41', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-82' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -20481,19 +20731,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/77F4E05BDB54051FAF0BE956FCE83D8E0E4227DD53F764BB32D8ECF685A93F55', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/77F4E05BDB54051FAF0BE956FCE83D8E0E4227DD53F764BB32D8ECF685A93F55', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-41', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-82' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/828E0E8A080C608CB69CEBF6572DF45F37D6C7729ABE4113D834F698ABCBB015', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/828E0E8A080C608CB69CEBF6572DF45F37D6C7729ABE4113D834F698ABCBB015', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-41', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-82' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/95D430545024B8919B44C919EB1BD1984810F283EE406B95A74292EAFD091467', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/95D430545024B8919B44C919EB1BD1984810F283EE406B95A74292EAFD091467', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-41', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-82' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -21403,6 +21782,49 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/2FF3DC3A0265B9A220750E75E75E5D44ED2F716B8AC4EDC378A596CC958ABF6B', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/2FF3DC3A0265B9A220750E75E75E5D44ED2F716B8AC4EDC378A596CC958ABF6B', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-116', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-159' + } + } + ] + }, { description: 'The native staking token of XPLA.', denom_units: [ diff --git a/packages/assets/src/mainnet/irisnet.ts b/packages/assets/src/mainnet/irisnet.ts index 5ecd565dc..4a6be2ea5 100644 --- a/packages/assets/src/mainnet/irisnet.ts +++ b/packages/assets/src/mainnet/irisnet.ts @@ -14732,6 +14732,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14795,17 +14842,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14818,6 +14854,17 @@ const assets: AssetList = { channel_id: 'channel-15' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -15087,17 +15134,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -15110,6 +15146,17 @@ const assets: AssetList = { channel_id: 'channel-15' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -15131,6 +15178,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -15140,19 +15200,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/84AD19865C8A4353B10CBFD14CC9D7FCEE1DD03BC00CEE6676549F89EC8ED539', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/84AD19865C8A4353B10CBFD14CC9D7FCEE1DD03BC00CEE6676549F89EC8ED539', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-19', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/30B92D65D53F77B40D652971132788B7130770098559C4598C5214474074A337', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30B92D65D53F77B40D652971132788B7130770098559C4598C5214474074A337', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-15' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/28A10937FA9B2EFC26ED522495B046F9DD41650E38B300650DCE71B032281517', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/28A10937FA9B2EFC26ED522495B046F9DD41650E38B300650DCE71B032281517', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/jackal.ts b/packages/assets/src/mainnet/jackal.ts index 3fd086150..a3abb7db6 100644 --- a/packages/assets/src/mainnet/jackal.ts +++ b/packages/assets/src/mainnet/jackal.ts @@ -16703,6 +16703,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-412', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/juno.ts b/packages/assets/src/mainnet/juno.ts index 24c5cdd39..9814eda9e 100644 --- a/packages/assets/src/mainnet/juno.ts +++ b/packages/assets/src/mainnet/juno.ts @@ -19262,6 +19262,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19325,17 +19372,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -19348,6 +19384,17 @@ const assets: AssetList = { channel_id: 'channel-33' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19617,17 +19664,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19640,6 +19676,17 @@ const assets: AssetList = { channel_id: 'channel-33' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19661,6 +19708,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19670,19 +19730,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/80A3F1A36B6EF7876C8A5143E09BCEACBD5BBA84ED8A865E4A8497F9AE75245A', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/80A3F1A36B6EF7876C8A5143E09BCEACBD5BBA84ED8A865E4A8497F9AE75245A', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-37', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/5054F108D42234903BACFB1948187EBBA5B99FCA1A283C3FA7F5EB4EC2A36A14', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5054F108D42234903BACFB1948187EBBA5B99FCA1A283C3FA7F5EB4EC2A36A14', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-33' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/BC9BBA74D8B9D77A61D95E0860686FA66018472EF51913BF61A00A9684B4036F', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/BC9BBA74D8B9D77A61D95E0860686FA66018472EF51913BF61A00A9684B4036F', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/kava.ts b/packages/assets/src/mainnet/kava.ts index 272194fcc..d5f1a07a5 100644 --- a/packages/assets/src/mainnet/kava.ts +++ b/packages/assets/src/mainnet/kava.ts @@ -17941,6 +17941,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-143', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18004,17 +18051,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -18027,6 +18063,17 @@ const assets: AssetList = { channel_id: 'channel-134' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -18296,17 +18343,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -18319,6 +18355,17 @@ const assets: AssetList = { channel_id: 'channel-134' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -18340,6 +18387,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-129', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-134' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -18349,19 +18409,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/098E4092A7C76486EE10295994773FA7F23149A96CDF638B7E83301C1253148A', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/098E4092A7C76486EE10295994773FA7F23149A96CDF638B7E83301C1253148A', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-129', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-134' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F8AAF12BFFACBC213275994422DCB2C2F0A9379A2127AF0987152B410AE6524A', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F8AAF12BFFACBC213275994422DCB2C2F0A9379A2127AF0987152B410AE6524A', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-129', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-134' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/AA17A7D5B8DAEEC67C284CE0523A9CA1449F9D144F9BE5A31ADBD07C5C8B4F76', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/AA17A7D5B8DAEEC67C284CE0523A9CA1449F9D144F9BE5A31ADBD07C5C8B4F76', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-129', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-134' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/kichain.ts b/packages/assets/src/mainnet/kichain.ts index 6d4bd402e..122a04038 100644 --- a/packages/assets/src/mainnet/kichain.ts +++ b/packages/assets/src/mainnet/kichain.ts @@ -13734,6 +13734,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-77', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/konstellation.ts b/packages/assets/src/mainnet/konstellation.ts index 0e206ad30..af9fbd501 100644 --- a/packages/assets/src/mainnet/konstellation.ts +++ b/packages/assets/src/mainnet/konstellation.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-171', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/kujira.ts b/packages/assets/src/mainnet/kujira.ts index 51f006d00..95af981ab 100644 --- a/packages/assets/src/mainnet/kujira.ts +++ b/packages/assets/src/mainnet/kujira.ts @@ -4231,6 +4231,57 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/ABB187FB2AC9D3A6FE1E94C4440DD2984040B6EF90F2848F8EB862DEE9E32B28', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/ABB187FB2AC9D3A6FE1E94C4440DD2984040B6EF90F2848F8EB862DEE9E32B28', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-9', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-113' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'The native token of Gravity Bridge', denom_units: [ @@ -7661,6 +7712,10 @@ const assets: AssetList = { coingecko_id: 'odin-protocol', images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } @@ -7703,6 +7758,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } @@ -7721,86 +7780,6 @@ const assets: AssetList = { } ] }, - { - description: 'DOKI the last Dragon', - denom_units: [ - { - denom: - 'ibc/DBE837E151E982B03AD5C311C7EF617FE69A435CE36DA3E93CC7BA5F5BC428B0', - exponent: 0, - aliases: ['udoki'] - }, - { - denom: 'doki', - exponent: 6 - } - ], - base: 'ibc/DBE837E151E982B03AD5C311C7EF617FE69A435CE36DA3E93CC7BA5F5BC428B0', - name: 'DOKI', - display: 'doki', - symbol: 'DOKI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-63', - base_denom: 'udoki', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-157' - } - } - ] - }, - { - description: 'Myrkur the leader of OLD Order', - denom_units: [ - { - denom: - 'ibc/BF843A6CD41D816EEFDEFEDBDFABE40743F6CD6AAD698FCF315D24D8D9EFB6E9', - exponent: 0, - aliases: ['umyrk'] - }, - { - denom: 'myrk', - exponent: 6 - } - ], - base: 'ibc/BF843A6CD41D816EEFDEFEDBDFABE40743F6CD6AAD698FCF315D24D8D9EFB6E9', - name: 'MYRK', - display: 'myrk', - symbol: 'MYRK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-63', - base_denom: 'umyrk', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-157' - } - } - ] - }, { description: 'O9W token for ODIN Protocol', denom_units: [ @@ -7825,6 +7804,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } @@ -21728,6 +21711,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-259', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -21791,17 +21821,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -21814,6 +21833,17 @@ const assets: AssetList = { channel_id: 'channel-158' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -22083,17 +22113,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -22106,6 +22125,17 @@ const assets: AssetList = { channel_id: 'channel-158' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -22127,6 +22157,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-152', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-158' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -22136,19 +22179,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/170D4ECAB06FAC46CB9041054B6A0C9710F54B03BC289ECECBE94729B58B26F9', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/170D4ECAB06FAC46CB9041054B6A0C9710F54B03BC289ECECBE94729B58B26F9', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-152', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', chain_name: 'persistence' }, chain: { channel_id: 'channel-158' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BC5AA8149307D657BA195F160E64D38C584D2FA8A60561F79D6BDCCB868D1817', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BC5AA8149307D657BA195F160E64D38C584D2FA8A60561F79D6BDCCB868D1817', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-152', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-158' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/75644B3D5A593494281748A046F4A972B6C260072BF194E08D3C9371FD92A0E7', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/75644B3D5A593494281748A046F4A972B6C260072BF194E08D3C9371FD92A0E7', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-152', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-158' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -23719,6 +23891,101 @@ const assets: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3A444C1CFACF63632F191BB6984E916464CC1D0322923672D048B6319B21FAFC', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-30', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-89' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/17CAE1EA52EB482C7D4C91D962242FBE7A47EAA0756D40E20E0FDE8CFB573C67', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-30', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-89' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/kyve.ts b/packages/assets/src/mainnet/kyve.ts index 4ba0ae2a8..06a51dd78 100644 --- a/packages/assets/src/mainnet/kyve.ts +++ b/packages/assets/src/mainnet/kyve.ts @@ -15050,6 +15050,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-767', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lambda.ts b/packages/assets/src/mainnet/lambda.ts index 5212f0a8f..4f4488267 100644 --- a/packages/assets/src/mainnet/lambda.ts +++ b/packages/assets/src/mainnet/lambda.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-378', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/likecoin.ts b/packages/assets/src/mainnet/likecoin.ts index 0d99eae0f..9ea95233f 100644 --- a/packages/assets/src/mainnet/likecoin.ts +++ b/packages/assets/src/mainnet/likecoin.ts @@ -13734,6 +13734,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumenx.ts b/packages/assets/src/mainnet/lumenx.ts index 3eae98644..3c1a907c8 100644 --- a/packages/assets/src/mainnet/lumenx.ts +++ b/packages/assets/src/mainnet/lumenx.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-286', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumnetwork.ts b/packages/assets/src/mainnet/lumnetwork.ts index d9b356894..80cbc88a8 100644 --- a/packages/assets/src/mainnet/lumnetwork.ts +++ b/packages/assets/src/mainnet/lumnetwork.ts @@ -13734,6 +13734,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-115', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/mars.ts b/packages/assets/src/mainnet/mars.ts index 2bab12ee6..9091de5dd 100644 --- a/packages/assets/src/mainnet/mars.ts +++ b/packages/assets/src/mainnet/mars.ts @@ -16507,6 +16507,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-557', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/medasdigital.ts b/packages/assets/src/mainnet/medasdigital.ts index 589a69777..67f722327 100644 --- a/packages/assets/src/mainnet/medasdigital.ts +++ b/packages/assets/src/mainnet/medasdigital.ts @@ -13598,6 +13598,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-519', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/assets/src/mainnet/meme.ts b/packages/assets/src/mainnet/meme.ts index 671bebb32..04ba79b68 100644 --- a/packages/assets/src/mainnet/meme.ts +++ b/packages/assets/src/mainnet/meme.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-238', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/microtick.ts b/packages/assets/src/mainnet/microtick.ts index 7df14141f..cd2bd40f0 100644 --- a/packages/assets/src/mainnet/microtick.ts +++ b/packages/assets/src/mainnet/microtick.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/0E2ED7C8E6E100CB923F42923EF19010B6FFAA1B6866ECACB99339060A192BFC', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/0E2ED7C8E6E100CB923F42923EF19010B6FFAA1B6866ECACB99339060A192BFC', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-39', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/migaloo.ts b/packages/assets/src/mainnet/migaloo.ts index 91be347cf..91818295b 100644 --- a/packages/assets/src/mainnet/migaloo.ts +++ b/packages/assets/src/mainnet/migaloo.ts @@ -18036,6 +18036,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-642', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/neutron.ts b/packages/assets/src/mainnet/neutron.ts index 1eaea0dcf..d6e629ca0 100644 --- a/packages/assets/src/mainnet/neutron.ts +++ b/packages/assets/src/mainnet/neutron.ts @@ -19523,6 +19523,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-874', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19586,17 +19633,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -19609,6 +19645,17 @@ const assets: AssetList = { channel_id: 'channel-49' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19878,17 +19925,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19901,6 +19937,17 @@ const assets: AssetList = { channel_id: 'channel-49' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19922,6 +19969,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-136', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-49' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19931,19 +19991,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/70EA746EEF02A20CC34F5E1A8387D0D060ADF9778097B2703ED68139B91C21E7', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/70EA746EEF02A20CC34F5E1A8387D0D060ADF9778097B2703ED68139B91C21E7', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-136', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-49' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/099FE322A8510C2F2C024BE1DF474BA3631CD6654329FEC8FA3C5EE9FDC25AD5', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/099FE322A8510C2F2C024BE1DF474BA3631CD6654329FEC8FA3C5EE9FDC25AD5', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-136', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-49' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/56D7B43EE040E63A6EA3F188D0EAC00FCB0275FF94B8A3780D454AD4DE31BC4B', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/56D7B43EE040E63A6EA3F188D0EAC00FCB0275FF94B8A3780D454AD4DE31BC4B', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-136', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-49' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/noble.ts b/packages/assets/src/mainnet/noble.ts index bc4e73305..ae2b5b6e0 100644 --- a/packages/assets/src/mainnet/noble.ts +++ b/packages/assets/src/mainnet/noble.ts @@ -18716,6 +18716,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-750', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18779,17 +18826,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -18802,6 +18838,17 @@ const assets: AssetList = { channel_id: 'channel-36' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19071,17 +19118,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19094,6 +19130,17 @@ const assets: AssetList = { channel_id: 'channel-36' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19115,6 +19162,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-132', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-36' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19124,19 +19184,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/8436BC6581504626A5E04ABB06E4B541757033674806A2B295F01DF1017B7E13', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/8436BC6581504626A5E04ABB06E4B541757033674806A2B295F01DF1017B7E13', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-132', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', chain_name: 'persistence' }, chain: { channel_id: 'channel-36' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/AE3390048D1ECA9BCEF0ED512966EB3A69FFC630E4DE05C5AF3A2AC8C4FE6F8C', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AE3390048D1ECA9BCEF0ED512966EB3A69FFC630E4DE05C5AF3A2AC8C4FE6F8C', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-132', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-36' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/8C16BBBCFD1914BF383B5D3C474E4C01253308E063E20686ADB09DDC7AC4093D', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8C16BBBCFD1914BF383B5D3C474E4C01253308E063E20686ADB09DDC7AC4093D', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-132', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-36' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -19909,6 +20098,101 @@ const assets: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D0CD2D776017271939EE1C4ABD6D949CD08DF90858F6F56532F5B5172461539E', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-54' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D46512AC048C9BE19928E2024A285F9B5FE471EB5A45E03F6A0BE6623B79C2E', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-62', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-54' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -20178,6 +20462,49 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/7AD8FD805B32DBE678C21A712E322A56E974DE8CDC9242579F4074AF7C6F51DE', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/7AD8FD805B32DBE678C21A712E322A56E974DE8CDC9242579F4074AF7C6F51DE', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-120', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-51' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nois.ts b/packages/assets/src/mainnet/nois.ts index f8777c83b..c7bbb104f 100644 --- a/packages/assets/src/mainnet/nois.ts +++ b/packages/assets/src/mainnet/nois.ts @@ -15717,6 +15717,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/250FDD590D613C525D3DEADB5DD66A188F393A74DAC5AD6ECCC0D4943CAFD347', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/250FDD590D613C525D3DEADB5DD66A188F393A74DAC5AD6ECCC0D4943CAFD347', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8277', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ diff --git a/packages/assets/src/mainnet/nolus.ts b/packages/assets/src/mainnet/nolus.ts index a91de3ca2..fd97b2a50 100644 --- a/packages/assets/src/mainnet/nolus.ts +++ b/packages/assets/src/mainnet/nolus.ts @@ -14827,6 +14827,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-783', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nomic.ts b/packages/assets/src/mainnet/nomic.ts index f055465b6..1adc47732 100644 --- a/packages/assets/src/mainnet/nomic.ts +++ b/packages/assets/src/mainnet/nomic.ts @@ -16203,6 +16203,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6897', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nyx.ts b/packages/assets/src/mainnet/nyx.ts index afddab624..324e17bae 100644 --- a/packages/assets/src/mainnet/nyx.ts +++ b/packages/assets/src/mainnet/nyx.ts @@ -14026,6 +14026,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15464', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/odin.ts b/packages/assets/src/mainnet/odin.ts index b66a3e6af..825ac5c20 100644 --- a/packages/assets/src/mainnet/odin.ts +++ b/packages/assets/src/mainnet/odin.ts @@ -1455,6 +1455,533 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' } }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/D81F6FFB8675A994DBB94B4CA9777CA03A3DEDBAC3E61685E350C1CA20731AF8', + exponent: 0, + aliases: ['inj'] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + base: 'ibc/D81F6FFB8675A994DBB94B4CA9777CA03A3DEDBAC3E61685E350C1CA20731AF8', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + coingecko_id: 'injective-protocol', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: 'inj', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: 'Tether USDt on Injective', + denom_units: [ + { + denom: + 'ibc/75946EEBB3750508CDC4C506945BD858FE3542F30C3D431E073F1B84ADB0B1CB', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75946EEBB3750508CDC4C506945BD858FE3542F30C3D431E073F1B84ADB0B1CB', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'ERIS liquid staked INJ', + denom_units: [ + { + denom: + 'ibc/C9EE3DBE66EABB407F9C858D3079E84D038042AC776C367485963A7430CBC0A9', + exponent: 0, + aliases: ['factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ'] + }, + { + denom: 'ampINJ', + exponent: 6 + } + ], + base: 'ibc/C9EE3DBE66EABB407F9C858D3079E84D038042AC776C367485963A7430CBC0A9', + name: 'ERIS Amplified INJ', + display: 'ampINJ', + symbol: 'ampINJ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/38F6850EDA1488827295EC4F4CE67D19FAA05D975FB6CB3232183FA696F55898', + exponent: 0, + aliases: ['factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'] + }, + { + denom: 'autism', + exponent: 6 + } + ], + base: 'ibc/38F6850EDA1488827295EC4F4CE67D19FAA05D975FB6CB3232183FA696F55898', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + coingecko_id: 'autism', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/0AE13635417141FBDB0E4556F442E44D9E0C41B4315D0F3365E6621904747C15', + exponent: 0, + aliases: ['factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + base: 'ibc/0AE13635417141FBDB0E4556F442E44D9E0C41B4315D0F3365E6621904747C15', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + coingecko_id: 'dog-wif-nuchucks', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: 'The $WGMI Token - We Gonna Make It. Are you ready?', + denom_units: [ + { + denom: + 'ibc/3F528F0722B225AA782C801E4E8D8D02CBF298A991D5B49788286BE45E1E199F', + exponent: 0, + aliases: ['factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI'] + }, + { + denom: 'WGMI', + exponent: 6 + } + ], + base: 'ibc/3F528F0722B225AA782C801E4E8D8D02CBF298A991D5B49788286BE45E1E199F', + name: 'WGMI', + display: 'WGMI', + symbol: 'WGMI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: 'The first memecoin on osmosis.', + denom_units: [ + { + denom: + 'ibc/513024ED7C92842F11296C9A3573BD9EC4CC0BA466E2777EAE18F30BB378120B', + exponent: 0, + aliases: [ + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3' + ] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/513024ED7C92842F11296C9A3573BD9EC4CC0BA466E2777EAE18F30BB378120B', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/F3A0F20C92CF9F5947F54EE4F7CB06F4E9A38A6074D3C0A5ACCDB6CC8CADA4B6', + exponent: 0, + aliases: ['peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2'] + }, + { + denom: 'glto', + exponent: 6 + } + ], + base: 'ibc/F3A0F20C92CF9F5947F54EE4F7CB06F4E9A38A6074D3C0A5ACCDB6CC8CADA4B6', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: 'peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + }, + { + description: + 'Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/', + denom_units: [ + { + denom: + 'ibc/33ECF787DF70CC72BD9CC9F9C106B92C81622E695EED1D1D5F5CBAD019B33A5A', + exponent: 0, + aliases: ['factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava'] + }, + { + denom: 'hava', + exponent: 6 + } + ], + base: 'ibc/33ECF787DF70CC72BD9CC9F9C106B92C81622E695EED1D1D5F5CBAD019B33A5A', + name: 'Hava Coin', + display: 'hava', + symbol: 'HAVA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/0F911FD475FD4C73E4BF012764F5DBBE92D17DF047F85CF431B7311DBFE36645', + exponent: 0, + aliases: [ + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0F911FD475FD4C73E4BF012764F5DBBE92D17DF047F85CF431B7311DBFE36645', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + }, + { + description: 'The second meme coin on Injective.', + denom_units: [ + { + denom: + 'ibc/B7F8FD97AEE5505CA5C8E8EE3B4346E276A3A8760FBB56C9595043243E71D531', + exponent: 0, + aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88'] + }, + { + denom: 'NINPO', + exponent: 6 + } + ], + base: 'ibc/B7F8FD97AEE5505CA5C8E8EE3B4346E276A3A8760FBB56C9595043243E71D531', + name: 'Ninpo', + display: 'NINPO', + symbol: 'NINPO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, + { + description: 'JUDO is a very futuristic meme token.', + denom_units: [ + { + denom: + 'ibc/8A8DF591E236E8FF9E87A28DBA8824FE77497D3185AF574AD2B1D6EC6559FE37', + exponent: 0, + aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h'] + }, + { + denom: 'JUDO', + exponent: 6 + } + ], + base: 'ibc/8A8DF591E236E8FF9E87A28DBA8824FE77497D3185AF574AD2B1D6EC6559FE37', + name: 'Judo', + display: 'JUDO', + symbol: 'JUDO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-214', + base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-65' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -16470,6 +16997,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/035EBB65C2A2B526CD4DDFCA387F162E2AD6D2A5234C4678667E567570427947', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-258', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/omniflixhub.ts b/packages/assets/src/mainnet/omniflixhub.ts index 1eb259629..1f47a7ba3 100644 --- a/packages/assets/src/mainnet/omniflixhub.ts +++ b/packages/assets/src/mainnet/omniflixhub.ts @@ -17016,6 +17016,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-199', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/onomy.ts b/packages/assets/src/mainnet/onomy.ts index ab9c1f09d..f715ce9f2 100644 --- a/packages/assets/src/mainnet/onomy.ts +++ b/packages/assets/src/mainnet/onomy.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-525', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/oraichain.ts b/packages/assets/src/mainnet/oraichain.ts index 3ab3b090e..47e292849 100644 --- a/packages/assets/src/mainnet/oraichain.ts +++ b/packages/assets/src/mainnet/oraichain.ts @@ -13727,6 +13727,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/8F207D323EA2DA1F11B483BE22F3CF1F44C89DC7C84D6670EE7667527C4B3183', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/8F207D323EA2DA1F11B483BE22F3CF1F44C89DC7C84D6670EE7667527C4B3183', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-216', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-13' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/osmosis.ts b/packages/assets/src/mainnet/osmosis.ts index da40cecda..9defa93bc 100644 --- a/packages/assets/src/mainnet/osmosis.ts +++ b/packages/assets/src/mainnet/osmosis.ts @@ -3914,6 +3914,47 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Chain4Energy', + denom_units: [ + { + denom: + 'ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8', + exponent: 0, + aliases: ['uc4e'] + }, + { + denom: 'c4e', + exponent: 6 + } + ], + base: 'ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8', + name: 'Chain4Energy', + display: 'c4e', + symbol: 'C4E', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'uc4e', + chain_name: 'chain4energy' + }, + chain: { + channel_id: 'channel-22172' + } + } + ] + }, { description: 'Native token for the cheqd network', denom_units: [ @@ -6995,6 +7036,57 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-2186' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', @@ -13619,7 +13711,8 @@ const assets: AssetList = { ] }, { - description: "NYX Token (NYX) is the Nym Network's native token.", + description: + "NYX Token (NYX) is the Nym Network's native staking and governance token.", denom_units: [ { denom: @@ -13679,21 +13772,21 @@ const assets: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg', theme: { dark_mode: false, circle: true } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg', theme: { dark_mode: true, circle: true @@ -13739,6 +13832,10 @@ const assets: AssetList = { coingecko_id: 'odin-protocol', images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } @@ -13781,6 +13878,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } @@ -13799,86 +13900,6 @@ const assets: AssetList = { } ] }, - { - description: 'DOKI the last Dragon', - denom_units: [ - { - denom: - 'ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B', - exponent: 0, - aliases: ['udoki'] - }, - { - denom: 'doki', - exponent: 6 - } - ], - base: 'ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B', - name: 'DOKI', - display: 'doki', - symbol: 'DOKI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-3', - base_denom: 'udoki', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-258' - } - } - ] - }, - { - description: 'Myrkur the leader of OLD Order', - denom_units: [ - { - denom: - 'ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752', - exponent: 0, - aliases: ['umyrk'] - }, - { - denom: 'myrk', - exponent: 6 - } - ], - base: 'ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752', - name: 'MYRK', - display: 'myrk', - symbol: 'MYRK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-3', - base_denom: 'umyrk', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-258' - } - } - ] - }, { description: 'O9W token for ODIN Protocol', denom_units: [ @@ -13903,6 +13924,10 @@ const assets: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } @@ -14446,17 +14471,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14469,6 +14483,17 @@ const assets: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14738,17 +14763,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14761,6 +14775,17 @@ const assets: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14782,6 +14807,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14791,19 +14829,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-6', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -15032,6 +15199,46 @@ const assets: AssetList = { } ] }, + { + description: 'The revenue token for Pylons', + denom_units: [ + { + denom: + 'ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF', + exponent: 0, + aliases: ['ubedrock'] + }, + { + denom: 'rock', + exponent: 6 + } + ], + base: 'ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF', + name: 'Pylons', + display: 'rock', + symbol: 'ROCK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-29', + base_denom: 'ubedrock', + chain_name: 'pylons' + }, + chain: { + channel_id: 'channel-17683' + } + } + ] + }, { description: 'The native token of Quasar', denom_units: [ @@ -17829,6 +18036,101 @@ const assets: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0DF5483CE99697A45A65CEBE373DE3535F117877F07E5F480E1BE3BD8818E3E8', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-362' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/87D9B43B0B1F00D37417FE7A79CDDCD144175631D5F743146DF6A7CF1CE59A91', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-362' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra Classic.', denom_units: [ @@ -21160,6 +21462,8 @@ const assets: AssetList = { }, { description: 'Kleomedes Token', + extended_description: + 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.', type_asset: 'cw20', address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', @@ -22658,6 +22962,102 @@ const assets: AssetList = { } ] }, + { + description: 'ATEN is NETA.', + type_asset: 'cw20', + address: + 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + denom_units: [ + { + denom: + 'ibc/BD34998D398D927B04616A3FFC6A513A10AF203A80E0B0DAD5F01CEA9E050C20', + exponent: 0, + aliases: [ + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r' + ] + }, + { + denom: 'aten', + exponent: 6 + } + ], + base: 'ibc/BD34998D398D927B04616A3FFC6A513A10AF203A80E0B0DAD5F01CEA9E050C20', + name: 'ATEN', + display: 'aten', + symbol: 'ATEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, + { + description: 'HERA is the goddess of marriage in Greek mythology.', + type_asset: 'cw20', + address: + 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + denom_units: [ + { + denom: + 'ibc/D29CE169AD7EDB6E9DFC3B42179D54B7EC756C9EB1790E9CAD888A203C17E102', + exponent: 0, + aliases: [ + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0' + ] + }, + { + denom: 'hera', + exponent: 6 + } + ], + base: 'ibc/D29CE169AD7EDB6E9DFC3B42179D54B7EC756C9EB1790E9CAD888A203C17E102', + name: 'HERA', + display: 'hera', + symbol: 'HERA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, { description: 'ELEVENPARIS loyalty token on KiChain', type_asset: 'cw20', diff --git a/packages/assets/src/mainnet/panacea.ts b/packages/assets/src/mainnet/panacea.ts index 2f6427423..8add77171 100644 --- a/packages/assets/src/mainnet/panacea.ts +++ b/packages/assets/src/mainnet/panacea.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/passage.ts b/packages/assets/src/mainnet/passage.ts index 92a1dab73..fc13a6946 100644 --- a/packages/assets/src/mainnet/passage.ts +++ b/packages/assets/src/mainnet/passage.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2494', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/persistence.ts b/packages/assets/src/mainnet/persistence.ts index a4a846797..9908cd634 100644 --- a/packages/assets/src/mainnet/persistence.ts +++ b/packages/assets/src/mainnet/persistence.ts @@ -2,6 +2,94 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { chain_name: 'persistence', assets: [ + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407', + exponent: 0, + aliases: ['ubld'] + }, + { + denom: 'bld', + exponent: 6 + } + ], + base: 'ibc/5BCA39AEE3A48194602328FF11D873FCC61ADDD40C7F1BBB7B05C9AA2896B407', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + coingecko_id: 'agoric', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-72', + base_denom: 'ubld', + chain_name: 'agoric' + }, + chain: { + channel_id: 'channel-202' + } + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF', + exponent: 0, + aliases: ['uist'] + }, + { + denom: 'ist', + exponent: 6 + } + ], + base: 'ibc/6E73A953427F83D642FF19A844C2FC38DDFFB7311A4FF25BCD87F33215A56CFF', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + coingecko_id: 'inter-stable-token', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-72', + base_denom: 'uist', + chain_name: 'agoric' + }, + chain: { + channel_id: 'channel-202' + } + } + ] + }, { description: "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", @@ -95,912 +183,870 @@ const assets: AssetList = { } }, { - description: 'Native Token of Comdex Protocol', + description: 'The native token of Chihuahua Chain', denom_units: [ { denom: - 'ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE', + 'ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4', exponent: 0, - aliases: ['ucmdx'] + aliases: ['uhuahua'] }, { - denom: 'cmdx', + denom: 'huahua', exponent: 6 } ], - base: 'ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE', - name: 'Comdex', - display: 'cmdx', - symbol: 'CMDX', + base: 'ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' }, - coingecko_id: 'comdex', + coingecko_id: 'chihuahua-token', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-57', - base_denom: 'ucmdx', - chain_name: 'comdex' + channel_id: 'channel-94', + base_denom: 'uhuahua', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-71' + channel_id: 'channel-203' } } ] }, { - description: 'Governance Token of Harbor protocol on Comdex network', + description: 'has a hat', denom_units: [ { denom: - 'ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C', + 'ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB', exponent: 0, - aliases: ['uharbor'] + aliases: [ + 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat' + ] }, { - denom: 'harbor', + denom: 'achihuahuawifhat', exponent: 6 } ], - base: 'ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C', - name: 'Harbor', - display: 'harbor', - symbol: 'HARBOR', + base: 'ibc/FC9E93E6AE9F6CD8956550B0E445A936DFBA7805862DD50B7A05735E1BC1EEBB', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' }, - coingecko_id: 'harbor-2', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-57', - base_denom: 'uharbor', - chain_name: 'comdex' + channel_id: 'channel-94', + base_denom: + 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-71' + channel_id: 'channel-203' } } ] }, { - description: 'Stable Token of Harbor protocol on Comdex network', + description: 'Woof', denom_units: [ { denom: - 'ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB', + 'ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8', exponent: 0, - aliases: ['ucmst'] + aliases: [ + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof' + ] }, { - denom: 'cmst', + denom: 'WOOF', exponent: 6 } ], - base: 'ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB', - name: 'CMST', - display: 'cmst', - symbol: 'CMST', + base: 'ibc/F7AD43E94235A259F82E2FDF097556DDCF9C8D820FC06E3AC2F939EA7DD362D8', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' }, - coingecko_id: 'composite', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-57', - base_denom: 'ucmst', - chain_name: 'comdex' + channel_id: 'channel-94', + base_denom: + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-71' + channel_id: 'channel-203' } } ] }, { - description: 'The native staking and governance token of the Cosmos Hub.', + description: 'Tacos', denom_units: [ { denom: - 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', + 'ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18', exponent: 0, - aliases: ['uatom'] + aliases: [ + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos' + ] }, { - denom: 'atom', + denom: 'TACOS', exponent: 6 } ], - base: 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', + base: 'ibc/A1E32AE96F2EC346748E1164388DBDF91B0054EB65D88987C63C93BB2EE80C18', + name: 'TACOS', + display: 'TACOS', + symbol: 'TACOS', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png' }, - coingecko_id: 'cosmos', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-190', - base_denom: 'uatom', - chain_name: 'cosmoshub' + channel_id: 'channel-94', + base_denom: + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-24' + channel_id: 'channel-203' } } ] }, { - description: 'Tether USDt on the Cosmos Hub', + description: 'Weed', denom_units: [ { denom: - 'ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C', + 'ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75', exponent: 0, aliases: [ - 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0' + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed' ] }, { - denom: 'usdt', + denom: 'WEED', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', + base: 'ibc/791629B16EF96FD10237AF8B1F9BEAAF782C81B32EC4C21C6DF5FA5D83742E75', + name: 'WEED', + display: 'WEED', + symbol: 'WEED', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-190', + channel_id: 'channel-94', base_denom: - 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', - chain_name: 'cosmoshub' + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-24' + channel_id: 'channel-203' } } - ], - images: [ - { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } + ] }, { - description: 'FX on Cosmos Hub', + description: 'Bulldog', denom_units: [ { denom: - 'ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1', + 'ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B', exponent: 0, aliases: [ - 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729' + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog' ] + }, + { + denom: 'BDOG', + exponent: 6 + } + ], + base: 'ibc/340A7C4C68A1C3FF008AA36D4CBDB0AE38F0928F322CE35395BC9BD4BB46A48B', + name: 'BDOG', + display: 'BDOG', + symbol: 'BDOG', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png' } ], - type_asset: 'ics20', - base: 'ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1', - name: 'Function X', - display: 'FX', - symbol: 'FX', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-190', + channel_id: 'channel-94', base_denom: - 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', - chain_name: 'cosmoshub' + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-24' + channel_id: 'channel-203' } } - ], - images: [ - { - image_sync: { - chain_name: 'fxcore', - base_denom: 'FX' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' - } + ] }, { - description: 'The native token of Crescent', + description: 'CaneCorso', denom_units: [ { denom: - 'ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921', + 'ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44', exponent: 0, - aliases: ['ucre'] + aliases: [ + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso' + ] }, { - denom: 'cre', + denom: 'CORSO', exponent: 6 } ], - base: 'ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921', - name: 'Crescent', - display: 'cre', - symbol: 'CRE', + base: 'ibc/B830FB417F33DD96F605EEDE167B831F6D01DD747BBF2200CE24E27F1C127D44', + name: 'CORSO', + display: 'CORSO', + symbol: 'CORSO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png' }, - coingecko_id: 'crescent-network', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-30', - base_denom: 'ucre', - chain_name: 'crescent' + channel_id: 'channel-94', + base_denom: + 'factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso', + chain_name: 'chihuahua' }, chain: { - channel_id: 'channel-68' + channel_id: 'channel-203' } } ] }, { - description: 'The bonded token of Crescent', + description: 'Native Token of Comdex Protocol', denom_units: [ { denom: - 'ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874', + 'ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE', exponent: 0, - aliases: ['ubcre'] + aliases: ['ucmdx'] }, { - denom: 'bcre', + denom: 'cmdx', exponent: 6 } ], - base: 'ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874', - name: 'Bonded Crescent', - display: 'bcre', - symbol: 'bCRE', + base: 'ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' }, - coingecko_id: 'liquid-staking-crescent', + coingecko_id: 'comdex', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-30', - base_denom: 'ubcre', - chain_name: 'crescent' + channel_id: 'channel-57', + base_denom: 'ucmdx', + chain_name: 'comdex' }, chain: { - channel_id: 'channel-68' + channel_id: 'channel-71' } } ] }, { - description: - 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + description: 'Governance Token of Harbor protocol on Comdex network', denom_units: [ { denom: - 'ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A', + 'ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C', exponent: 0, - aliases: ['basecro'] + aliases: ['uharbor'] }, { - denom: 'cro', - exponent: 8 + denom: 'harbor', + exponent: 6 } ], - base: 'ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A', - name: 'Cronos', - display: 'cro', - symbol: 'CRO', + base: 'ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' }, - coingecko_id: 'crypto-com-chain', + coingecko_id: 'harbor-2', images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' - }, - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-17', - base_denom: 'basecro', - chain_name: 'cryptoorgchain' + channel_id: 'channel-57', + base_denom: 'uharbor', + chain_name: 'comdex' }, chain: { - channel_id: 'channel-11' + channel_id: 'channel-71' } } ] }, { - description: 'The native staking token of dYdX Protocol.', + description: 'Stable Token of Harbor protocol on Comdex network', denom_units: [ { denom: - 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', + 'ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB', exponent: 0, - aliases: ['adydx'] + aliases: ['ucmst'] }, { - denom: 'dydx', - exponent: 18 + denom: 'cmst', + exponent: 6 } ], - base: 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', - name: 'dYdX', - display: 'dydx', - symbol: 'DYDX', + base: 'ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' }, - coingecko_id: 'dydx', + coingecko_id: 'composite', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg', - theme: { - circle: true - } + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', - base_denom: 'adydx', - chain_name: 'dydx' + channel_id: 'channel-57', + base_denom: 'ucmst', + chain_name: 'comdex' }, chain: { - channel_id: 'channel-131' + channel_id: 'channel-71' } } ] }, { - description: 'Noble USDC on dYdX Protocol.', - denom_units: [ - { - denom: - 'ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A', - exponent: 0, - aliases: [ - 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5' - ] - }, - { - denom: 'usdc', - exponent: 6 - } - ], - type_asset: 'ics20', - base: 'ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A', - name: 'Noble USDC', - display: 'usdc', - symbol: 'USDC', - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-4', - base_denom: - 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', - chain_name: 'dydx' - }, - chain: { - channel_id: 'channel-131' - } - } - ], - images: [ - { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - } - }, - { - description: 'The native token of Gravity Bridge', + description: 'The native staking and governance token of the Cosmos Hub.', denom_units: [ { denom: - 'ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA', + 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', exponent: 0, - aliases: ['ugraviton'] + aliases: ['uatom'] }, { - denom: 'graviton', + denom: 'atom', exponent: 6 } ], - base: 'ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA', - name: 'Graviton', - display: 'graviton', - symbol: 'GRAV', - coingecko_id: 'graviton', + base: 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, + coingecko_id: 'cosmos', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'ugraviton', - chain_name: 'gravitybridge' + channel_id: 'channel-190', + base_denom: 'uatom', + chain_name: 'cosmoshub' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-24' } } ] }, { - description: - 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', + description: 'Tether USDt on the Cosmos Hub', denom_units: [ { denom: - 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + 'ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C', exponent: 0, - aliases: ['gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006'] + aliases: [ + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0' + ] }, { - denom: 'pstake', - exponent: 18 + denom: 'usdt', + exponent: 6 } ], - base: 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', - name: 'pSTAKE Finance', - display: 'pstake', - symbol: 'PSTAKE', + type_asset: 'ics20', + base: 'ibc/F0FD51B14D12832A869AE7DF39BCD0B2B32A11C579F123F770EEA6269DA6C67C', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', - chain_name: 'gravitybridge' + channel_id: 'channel-190', + base_denom: + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', + chain_name: 'cosmoshub' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-24' } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' - }, images: [ { image_sync: { - chain_name: 'ethereum', - base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } - ] + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } }, { - description: 'Gravity Bridge WETH', + description: 'FX on Cosmos Hub', denom_units: [ { denom: - 'ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7', + 'ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1', exponent: 0, - aliases: ['gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'] - }, - { - denom: 'gweth', - exponent: 18 + aliases: [ + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729' + ] } ], - base: 'ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7', - name: 'Wrapped Ethereum', - display: 'gweth', - symbol: 'WETH', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' - }, + type_asset: 'ics20', + base: 'ibc/C0A9D2CA46B33B210EB01E3675ACF6976DD0253F8E7DFBA80AF8398F6FA1F0F1', + name: 'Function X', + display: 'FX', + symbol: 'FX', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', - chain_name: 'gravitybridge' + channel_id: 'channel-190', + base_denom: + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', + chain_name: 'cosmoshub' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-24' } } ], images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + image_sync: { + chain_name: 'fxcore', + base_denom: 'FX' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' } - ] + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } }, { - description: 'Gravity Bridge USDC', + description: 'The native token of Crescent', denom_units: [ { denom: - 'ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D', + 'ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921', exponent: 0, - aliases: ['gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'] + aliases: ['ucre'] }, { - denom: 'gusdc', + denom: 'cre', exponent: 6 } ], - base: 'ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D', - name: 'USD Coin', - display: 'gusdc', - symbol: 'USDC', + base: 'ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' }, + coingecko_id: 'crescent-network', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', - chain_name: 'gravitybridge' + channel_id: 'channel-30', + base_denom: 'ucre', + chain_name: 'crescent' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-68' } } - ], - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' - } ] }, { - description: 'Gravity Bridge USDT', + description: 'The bonded token of Crescent', denom_units: [ { denom: - 'ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17', + 'ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874', exponent: 0, - aliases: ['gravity0xdAC17F958D2ee523a2206206994597C13D831ec7'] + aliases: ['ubcre'] }, { - denom: 'gusdt', + denom: 'bcre', exponent: 6 } ], - base: 'ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17', - name: 'Tether USD', - display: 'gusdt', - symbol: 'USDT', + base: 'ibc/92818A7F38A90C0D2CFBA5409417F0A2AC1E4B46B2D4E4869DD96081EC39A874', + name: 'Bonded Crescent', + display: 'bcre', + symbol: 'bCRE', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg' }, + coingecko_id: 'liquid-staking-crescent', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.svg' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7', - chain_name: 'gravitybridge' + channel_id: 'channel-30', + base_denom: 'ubcre', + chain_name: 'crescent' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-68' } } - ], - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } ] }, { - description: 'Gravity Bridge WBTC', + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', denom_units: [ { denom: - 'ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A', + 'ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A', exponent: 0, - aliases: ['gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599'] + aliases: ['basecro'] }, { - denom: 'gwbtc', + denom: 'cro', exponent: 8 } ], - base: 'ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A', - name: 'Wrapped Bitcoin', - display: 'gwbtc', - symbol: 'WBTC', + base: 'ibc/F53B622B0117ECCD0908C1F33ED71B846D9B0C888BE8A16C58098C0AB9497B0A', + name: 'Cronos', + display: 'cro', + symbol: 'CRO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' }, + coingecko_id: 'crypto-com-chain', + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599', - chain_name: 'gravitybridge' + channel_id: 'channel-17', + base_denom: 'basecro', + chain_name: 'cryptoorgchain' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-11' } } - ], - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' - } ] }, { - description: 'Gravity Bridge DAI', + description: 'The native staking token of dYdX Protocol.', denom_units: [ { denom: - 'ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C', + 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', exponent: 0, - aliases: ['gravity0x6B175474E89094C44Da98b954EedeAC495271d0F'] + aliases: ['adydx'] }, { - denom: 'gdai', + denom: 'dydx', exponent: 18 } ], - base: 'ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C', - name: 'Dai Stablecoin', - display: 'gdai', - symbol: 'DAI', + base: 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', + name: 'dYdX', + display: 'dydx', + symbol: 'DYDX', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' }, + coingecko_id: 'dydx', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg', + theme: { + circle: true + } + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0x6B175474E89094C44Da98b954EedeAC495271d0F', - chain_name: 'gravitybridge' + channel_id: 'channel-4', + base_denom: 'adydx', + chain_name: 'dydx' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-131' } } - ], - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' - } ] }, { - description: 'Gravity Bridge sDAI', + description: 'Noble USDC on dYdX Protocol.', denom_units: [ { denom: - 'ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544', + 'ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A', exponent: 0, - aliases: ['gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA'] + aliases: [ + 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5' + ] }, { - denom: 'gsdai', - exponent: 18 + denom: 'usdc', + exponent: 6 } ], - base: 'ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544', - name: 'Savings Dai', - display: 'gsdai', - symbol: 'sDAI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' - }, + type_asset: 'ics20', + base: 'ibc/B9748CF9A4A92AE57252FF523DE35D0169E38DB30C8961A6024AD93F1651097A', + name: 'Noble USDC', + display: 'usdc', + symbol: 'USDC', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-24', - base_denom: 'gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA', - chain_name: 'gravitybridge' + channel_id: 'channel-4', + base_denom: + 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', + chain_name: 'dydx' }, chain: { - channel_id: 'channel-38' + channel_id: 'channel-131' } } ], images: [ { image_sync: { - base_denom: 'ethereum', - chain_name: '0x83F20F44975D03b1b09e64809B757c47f942BEeA' + chain_name: 'noble', + base_denom: 'uusdc' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } - ] + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } }, { - description: 'Gravity Bridge OCC', + description: 'The native token of Gravity Bridge', denom_units: [ { denom: - 'ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823', + 'ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA', exponent: 0, - aliases: ['gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207'] + aliases: ['ugraviton'] }, { - denom: 'gocc', - exponent: 18 + denom: 'graviton', + exponent: 6 } ], - base: 'ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823', - name: 'OccamFi', - display: 'gocc', - symbol: 'OCC', + base: 'ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA', + name: 'Graviton', + display: 'graviton', + symbol: 'GRAV', + coingecko_id: 'graviton', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-24', - base_denom: 'gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207', + base_denom: 'ugraviton', chain_name: 'gravitybridge' }, chain: { channel_id: 'channel-38' } } - ], - images: [ - { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' - } ] }, { description: - 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.', denom_units: [ { denom: - 'ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3', + 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', exponent: 0, - aliases: ['gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e'] + aliases: ['gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006'] }, { - denom: 'page', - exponent: 8 + denom: 'pstake', + exponent: 18 } ], - base: 'ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3', - name: 'Page', - display: 'page', - symbol: 'PAGE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' - }, + base: 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-24', - base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', + base_denom: 'gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006', chain_name: 'gravitybridge' }, chain: { @@ -1008,354 +1054,346 @@ const assets: AssetList = { } } ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, images: [ { image_sync: { chain_name: 'ethereum', - base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + base_denom: '0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' } ] }, { - description: - 'The INJ token is the native governance token for the Injective chain.', + description: 'Gravity Bridge WETH', denom_units: [ { denom: - 'ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73', + 'ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7', exponent: 0, - aliases: ['inj'] + aliases: ['gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'] }, { - denom: 'INJ', + denom: 'gweth', exponent: 18 } ], - base: 'ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73', - name: 'Injective', - display: 'INJ', - symbol: 'INJ', + base: 'ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7', + name: 'Wrapped Ethereum', + display: 'gweth', + symbol: 'WETH', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' }, - coingecko_id: 'injective-protocol', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' - } - ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: 'inj', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } + ], + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + } ] }, { - description: 'Tether USDt on Injective', + description: 'Gravity Bridge USDC', denom_units: [ { denom: - 'ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17', + 'ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D', exponent: 0, - aliases: [ - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' - ] + aliases: ['gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'] }, { - denom: 'usdt', + denom: 'gusdc', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', + base: 'ibc/6F681B32B47E765AE278844A8A97C8B7AD5A3FB591E37CFDFA0E208EFEBEF97D', + name: 'USD Coin', + display: 'gusdc', + symbol: 'USDC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } ], images: [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } + ] }, { - description: 'ERIS liquid staked INJ', + description: 'Gravity Bridge USDT', denom_units: [ { denom: - 'ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7', + 'ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17', exponent: 0, - aliases: ['factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ'] + aliases: ['gravity0xdAC17F958D2ee523a2206206994597C13D831ec7'] }, { - denom: 'ampINJ', + denom: 'gusdt', exponent: 6 } ], - base: 'ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7', - name: 'ERIS Amplified INJ', - display: 'ampINJ', - symbol: 'ampINJ', + base: 'ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17', + name: 'Tether USD', + display: 'gusdt', + symbol: 'USDT', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' - } - ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } + ], + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } ] }, { - description: - '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + description: 'Gravity Bridge WBTC', denom_units: [ { denom: - 'ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C', + 'ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A', exponent: 0, - aliases: ['factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'] + aliases: ['gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599'] }, { - denom: 'autism', - exponent: 6 + denom: 'gwbtc', + exponent: 8 } ], - base: 'ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C', - name: 'Autism', - display: 'autism', - symbol: 'AUTISM', + base: 'ibc/16254B8D442184E723683C38F09E7945AF5849E0F5FB9C1890494EF2AC65532A', + name: 'Wrapped Bitcoin', + display: 'gwbtc', + symbol: 'WBTC', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' }, - coingecko_id: 'autism', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' - } - ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } ] }, { - description: - 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + description: 'Gravity Bridge DAI', denom_units: [ { denom: - 'ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C', + 'ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C', exponent: 0, - aliases: ['factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'] + aliases: ['gravity0x6B175474E89094C44Da98b954EedeAC495271d0F'] }, { - denom: 'NINJA', - exponent: 6 + denom: 'gdai', + exponent: 18 } ], - base: 'ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C', - name: 'Dog wif nunchucks', - display: 'NINJA', - symbol: 'NINJA', + base: 'ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C', + name: 'Dai Stablecoin', + display: 'gdai', + symbol: 'DAI', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' }, - coingecko_id: 'dog-wif-nuchucks', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' - } - ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0x6B175474E89094C44Da98b954EedeAC495271d0F', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } + ], + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } ] }, { - description: 'The $WGMI Token - We Gonna Make It. Are you ready?', + description: 'Gravity Bridge sDAI', denom_units: [ { denom: - 'ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5', + 'ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544', exponent: 0, - aliases: ['factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI'] + aliases: ['gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA'] }, { - denom: 'WGMI', - exponent: 6 + denom: 'gsdai', + exponent: 18 } ], - base: 'ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5', - name: 'WGMI', - display: 'WGMI', - symbol: 'WGMI', + base: 'ibc/76464BD93F13DED4381980282741D7A1C14DC9ECD3F13778FEF474423DD2D544', + name: 'Savings Dai', + display: 'gsdai', + symbol: 'sDAI', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' - } - ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } + ], + images: [ + { + image_sync: { + base_denom: 'ethereum', + chain_name: '0x83F20F44975D03b1b09e64809B757c47f942BEeA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.svg' + } ] }, { - description: 'The first memecoin on osmosis.', + description: 'Gravity Bridge OCC', denom_units: [ { denom: - 'ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE', + 'ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823', exponent: 0, - aliases: [ - 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3' - ] + aliases: ['gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207'] }, { - denom: 'WOSMO', - exponent: 6 + denom: 'gocc', + exponent: 18 } ], - type_asset: 'ics20', - base: 'ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE', - name: 'Wosmo', - display: 'WOSMO', - symbol: 'WOSMO', + base: 'ibc/14EA52FE50F7B63F377798E22751D1773B3016B07884904C0430818C48F54823', + name: 'OccamFi', + display: 'gocc', + symbol: 'OCC', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' + }, traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: - 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } ], images: [ { image_sync: { - chain_name: 'osmosis', - base_denom: - 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + chain_name: 'ethereum', + base_denom: '0x2F109021aFe75B949429fe30523Ee7C0D5B27207' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png' } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' - } + ] }, { - description: 'GLTO-ERC20 on injective', + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', denom_units: [ { denom: - 'ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20', + 'ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3', exponent: 0, - aliases: ['peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2'] + aliases: ['gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e'] }, { - denom: 'glto', - exponent: 6 + denom: 'page', + exponent: 8 } ], - base: 'ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20', - name: 'Gelotto', - display: 'glto', - symbol: 'GLTO', + base: 'ibc/E4E6AD88A4C3754ADABE5CEFCD92C00EF7C1CA9A760BAA654D0A923D7B0347D3', + name: 'Page', + display: 'page', + symbol: 'PAGE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-82', - base_denom: 'peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2', - chain_name: 'injective' + channel_id: 'channel-24', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e', + chain_name: 'gravitybridge' }, chain: { - channel_id: 'channel-41' + channel_id: 'channel-38' } } ], @@ -1363,42 +1401,41 @@ const assets: AssetList = { { image_sync: { chain_name: 'ethereum', - base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + base_denom: '0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' - } + ] }, { description: - 'Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/', + 'The INJ token is the native governance token for the Injective chain.', denom_units: [ { denom: - 'ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6', + 'ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73', exponent: 0, - aliases: ['factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava'] + aliases: ['inj'] }, { - denom: 'hava', - exponent: 6 + denom: 'INJ', + exponent: 18 } ], - base: 'ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6', - name: 'Hava Coin', - display: 'hava', - symbol: 'HAVA', + base: 'ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' }, + coingecko_id: 'injective-protocol', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], traces: [ @@ -1406,8 +1443,7 @@ const assets: AssetList = { type: 'ibc', counterparty: { channel_id: 'channel-82', - base_denom: - 'factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava', + base_denom: 'inj', chain_name: 'injective' }, chain: { @@ -1417,34 +1453,33 @@ const assets: AssetList = { ] }, { - description: - "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + description: 'Tether USDt on Injective', denom_units: [ { denom: - 'ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19', + 'ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17', exponent: 0, aliases: [ - 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8' + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' ] }, { - denom: 'BADKID', + denom: 'usdt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19', - name: 'Badkid', - display: 'BADKID', - symbol: 'BADKID', + base: 'ibc/DF1678DE660C411E6EE3779FBCA350E8561A009F50CC25D33D6FC93E2C388B17', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-82', base_denom: - 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8', + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', chain_name: 'injective' }, chain: { @@ -1455,41 +1490,40 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'osmosis', - base_denom: - 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } }, { - description: 'The second meme coin on Injective.', + description: 'ERIS liquid staked INJ', denom_units: [ { denom: - 'ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965', + 'ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7', exponent: 0, - aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88'] + aliases: ['factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ'] }, { - denom: 'NINPO', + denom: 'ampINJ', exponent: 6 } ], - base: 'ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965', - name: 'Ninpo', - display: 'NINPO', - symbol: 'NINPO', + base: 'ibc/45D63C7E4A7295D5B7BAC0E30DEFD58B610905DCA4AA84CD7DAA81A94FED0FE7', + name: 'ERIS Amplified INJ', + display: 'ampINJ', + symbol: 'ampINJ', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' } ], traces: [ @@ -1497,7 +1531,8 @@ const assets: AssetList = { type: 'ibc', counterparty: { channel_id: 'channel-82', - base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88', + base_denom: + 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', chain_name: 'injective' }, chain: { @@ -1507,29 +1542,31 @@ const assets: AssetList = { ] }, { - description: 'JUDO is a very futuristic meme token.', + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', denom_units: [ { denom: - 'ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18', + 'ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C', exponent: 0, - aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h'] + aliases: ['factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'] }, { - denom: 'JUDO', + denom: 'autism', exponent: 6 } ], - base: 'ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18', - name: 'Judo', - display: 'JUDO', - symbol: 'JUDO', + base: 'ibc/A2CAE89DBF96B49C72595D21E80DA4CEADCC706F85B259DFEE1FB70E8D62C01C', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' }, + coingecko_id: 'autism', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' } ], traces: [ @@ -1537,7 +1574,8 @@ const assets: AssetList = { type: 'ibc', counterparty: { channel_id: 'channel-82', - base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', chain_name: 'injective' }, chain: { @@ -1548,433 +1586,438 @@ const assets: AssetList = { }, { description: - 'The IRIS token is the native governance token for the IrisNet chain.', + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', denom_units: [ { denom: - 'ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B', + 'ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C', exponent: 0, - aliases: ['uiris'] + aliases: ['factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'] }, { - denom: 'iris', + denom: 'NINJA', exponent: 6 } ], - base: 'ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B', - name: 'IRISnet', - display: 'iris', - symbol: 'IRIS', + base: 'ibc/2C593A9B8482C8CD2D942346DB49238B586343E4AC69C06F4760E9BE4169AC1C', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' }, - coingecko_id: 'iris-network', + coingecko_id: 'dog-wif-nuchucks', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-15', - base_denom: 'uiris', - chain_name: 'irisnet' + channel_id: 'channel-82', + base_denom: + 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', + chain_name: 'injective' }, chain: { - channel_id: 'channel-19' + channel_id: 'channel-41' } } ] }, { - description: 'The native token of JUNO Chain', + description: 'The $WGMI Token - We Gonna Make It. Are you ready?', denom_units: [ { denom: - 'ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F', + 'ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5', exponent: 0, - aliases: ['ujuno'] + aliases: ['factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI'] }, { - denom: 'juno', + denom: 'WGMI', exponent: 6 } ], - base: 'ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F', - name: 'Juno', - display: 'juno', - symbol: 'JUNO', + base: 'ibc/A8E9E51C5C0ABDFF317EAFF94024545ED5483E07531A9DF6A3F2BC56BABBA1A5', + name: 'WGMI', + display: 'WGMI', + symbol: 'WGMI', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' }, - coingecko_id: 'juno-network', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-33', - base_denom: 'ujuno', - chain_name: 'juno' + channel_id: 'channel-82', + base_denom: + 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', + chain_name: 'injective' }, chain: { - channel_id: 'channel-37' + channel_id: 'channel-41' } } ] }, { + description: 'The first memecoin on osmosis.', denom_units: [ { denom: - 'ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B', + 'ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE', exponent: 0, aliases: [ - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3' ] }, { - denom: 'atom', + denom: 'WOSMO', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B', - name: 'ATOM on Juno', - display: 'atom', - symbol: 'ATOM', + base: 'ibc/427AD134AD5550B4A814C23954F460A8A6C82BDC67005DC1E29626F5FE95BDEE', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-33', + channel_id: 'channel-82', base_denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - chain_name: 'juno' + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3', + chain_name: 'injective' }, chain: { - channel_id: 'channel-37' + channel_id: 'channel-41' } } ], images: [ { image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' } }, { - description: 'Bored APE IBC club token', - type_asset: 'cw20', - address: - 'juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', + description: 'GLTO-ERC20 on injective', denom_units: [ { denom: - 'cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', - exponent: 0 + 'ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20', + exponent: 0, + aliases: ['peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2'] }, { - denom: 'banana', + denom: 'glto', exponent: 6 } ], - base: 'ibc/239CF26B6804489BBFDE89257D4520FCDCFC3B66AE28EE838AA60D9BFC52315D', - name: 'Banana Token', - display: 'banana', - symbol: 'BANANA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' - } - ], + base: 'ibc/DE90E51564FBE392C9518331945675B6B3C46AD2E7032AFF92C1C5D143115F20', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-33', - base_denom: - 'cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', - chain_name: 'juno' + channel_id: 'channel-82', + base_denom: 'peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2', + chain_name: 'injective' }, chain: { - channel_id: 'channel-37' + channel_id: 'channel-41' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } }, { + description: + 'Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/', denom_units: [ { denom: - 'ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80', + 'ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6', exponent: 0, - aliases: ['factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX'] + aliases: ['factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava'] }, { - denom: 'nexx', + denom: 'hava', exponent: 6 } ], - address: 'juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh', - base: 'ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80', - name: 'NEXX GEN AI', - display: 'nexx', - symbol: 'NEXX', + base: 'ibc/AACEC684E43F2D90F8191A753D23AC00E23B435B4621CDBE32BC601D017381F6', + name: 'Hava Coin', + display: 'hava', + symbol: 'HAVA', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-33', + channel_id: 'channel-82', base_denom: - 'factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX', - chain_name: 'juno' + 'factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava', + chain_name: 'injective' }, chain: { - channel_id: 'channel-37' + channel_id: 'channel-41' } } ] }, { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", denom_units: [ { denom: - 'ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6', + 'ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19', exponent: 0, - aliases: ['factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL'] + aliases: [ + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8' + ] }, { - denom: 'dgl', + denom: 'BADKID', exponent: 6 } ], - address: 'juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e', - base: 'ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6', - name: 'Licorice', - display: 'dgl', - symbol: 'DGL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' - } - ], + type_asset: 'ics20', + base: 'ibc/8AF39FFD051CEA5D121A60EA3747901D857EE61227D21BE2F41B186CF233BA19', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-33', + channel_id: 'channel-82', base_denom: - 'factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL', - chain_name: 'juno' + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8', + chain_name: 'injective' }, chain: { - channel_id: 'channel-37' + channel_id: 'channel-41' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } }, { - description: 'The native staking and governance token of Kava', + description: 'The second meme coin on Injective.', denom_units: [ { denom: - 'ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0', + 'ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965', exponent: 0, - aliases: ['ukava'] + aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88'] }, { - denom: 'kava', + denom: 'NINPO', exponent: 6 } ], - base: 'ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0', - name: 'Kava', - display: 'kava', - symbol: 'KAVA', + base: 'ibc/4D4C6AB745B925711964030E90B16A9444ACE09A62051868DE2DE745185AA965', + name: 'Ninpo', + display: 'NINPO', + symbol: 'NINPO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' }, - coingecko_id: 'kava', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-134', - base_denom: 'ukava', - chain_name: 'kava' + channel_id: 'channel-82', + base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88', + chain_name: 'injective' }, chain: { - channel_id: 'channel-129' + channel_id: 'channel-41' } } ] }, { - description: 'Governance token of Kava Lend Protocol', + description: 'JUDO is a very futuristic meme token.', denom_units: [ { denom: - 'ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76', + 'ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18', exponent: 0, - aliases: ['hard'] + aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h'] }, { - denom: 'HARD', + denom: 'JUDO', exponent: 6 } ], - base: 'ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76', - name: 'Kava Hard', - display: 'HARD', - symbol: 'HARD', + base: 'ibc/5ED709CB17ED2CE8A947D17C7880910CBCFA21742D8AF5835F47026A8BD75B18', + name: 'Judo', + display: 'JUDO', + symbol: 'JUDO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' }, - coingecko_id: 'kava-lend', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-134', - base_denom: 'hard', - chain_name: 'kava' + channel_id: 'channel-82', + base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h', + chain_name: 'injective' }, chain: { - channel_id: 'channel-129' + channel_id: 'channel-41' } } ] }, { - description: 'Governance token of Kava Swap Protocol', + description: + 'The IRIS token is the native governance token for the IrisNet chain.', denom_units: [ { denom: - 'ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A', + 'ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B', exponent: 0, - aliases: ['swp'] + aliases: ['uiris'] }, { - denom: 'SWP', + denom: 'iris', exponent: 6 } ], - base: 'ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A', - name: 'Kava Swap', - display: 'SWP', - symbol: 'SWP', + base: 'ibc/5709B8339F05C7E37D27FCFEC18CEDBB0747309144C8B3C4A49C122F0F30B96B', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' }, - coingecko_id: 'kava-swap', + coingecko_id: 'iris-network', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-134', - base_denom: 'swp', - chain_name: 'kava' + channel_id: 'channel-15', + base_denom: 'uiris', + chain_name: 'irisnet' }, chain: { - channel_id: 'channel-129' + channel_id: 'channel-19' } } ] }, { - description: 'The native stablecoin of Kava', + description: 'The native token of JUNO Chain', denom_units: [ { denom: - 'ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51', + 'ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F', exponent: 0, - aliases: ['usdx'] + aliases: ['ujuno'] }, { - denom: 'USDX', + denom: 'juno', exponent: 6 } ], - base: 'ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51', - name: 'Kava USDX', - display: 'USDX', - symbol: 'USDX', + base: 'ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' }, - coingecko_id: 'usdx', + coingecko_id: 'juno-network', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-134', - base_denom: 'usdx', - chain_name: 'kava' + channel_id: 'channel-33', + base_denom: 'ujuno', + chain_name: 'juno' }, chain: { - channel_id: 'channel-129' + channel_id: 'channel-37' } } ] @@ -1983,385 +2026,420 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', + 'ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B', exponent: 0, - aliases: ['erc20/tether/usdt'] + aliases: [ + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' + ] }, { - denom: 'usdt', + denom: 'atom', exponent: 6 } ], - base: 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', - name: 'Tether USD', - display: 'usdt', - symbol: 'USDT', - coingecko_id: 'tether', + type_asset: 'ics20', + base: 'ibc/8E6F67AF9FFFF4D3304EC0C27774A90A1A85D5CFA23AB9E2ECDEF6C056E7C24B', + name: 'ATOM on Juno', + display: 'atom', + symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-134', - base_denom: 'erc20/tether/usdt', - chain_name: 'kava' + channel_id: 'channel-33', + base_denom: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + chain_name: 'juno' }, chain: { - channel_id: 'channel-129' + channel_id: 'channel-37' } } ], images: [ { image_sync: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + chain_name: 'cosmoshub', + base_denom: 'uatom' }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } }, { - description: - 'The native staking and governance token of the Kujira chain.', + description: 'Bored APE IBC club token', + type_asset: 'cw20', + address: + 'juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', denom_units: [ { denom: - 'ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D', - exponent: 0, - aliases: ['ukuji'] + 'cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', + exponent: 0 }, { - denom: 'kuji', + denom: 'banana', exponent: 6 } ], - base: 'ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D', - name: 'Kujira', - display: 'kuji', - symbol: 'KUJI', - coingecko_id: 'kujira', + base: 'ibc/239CF26B6804489BBFDE89257D4520FCDCFC3B66AE28EE838AA60D9BFC52315D', + name: 'Banana Token', + display: 'banana', + symbol: 'BANANA', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', - base_denom: 'ukuji', - chain_name: 'kujira' + channel_id: 'channel-33', + base_denom: + 'cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj', + chain_name: 'juno' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-37' } } ] }, { - description: - 'The native over-collateralized stablecoin from the Kujira chain.', denom_units: [ { denom: - 'ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E', + 'ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80', exponent: 0, - aliases: [ - 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk' - ] + aliases: ['factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX'] }, { - denom: 'usk', + denom: 'nexx', exponent: 6 } ], - base: 'ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E', - name: 'USK', - display: 'usk', - symbol: 'USK', - coingecko_id: 'usk', + address: 'juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh', + base: 'ibc/AFAD662DEA3F4785C22C7B24098E371624AF5D651DF24488FF705F67BF2DAD80', + name: 'NEXX GEN AI', + display: 'nexx', + symbol: 'NEXX', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', + channel_id: 'channel-33', base_denom: - 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', - chain_name: 'kujira' + 'factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX', + chain_name: 'juno' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-37' } } ] }, { - description: "Quark's auto-compounding KUJI derivative", denom_units: [ { denom: - 'ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659', + 'ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6', exponent: 0, - aliases: [ - 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt' - ] + aliases: ['factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL'] }, { - denom: 'qcKUJI', + denom: 'dgl', exponent: 6 } ], - base: 'ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659', - name: 'qcKUJI', - display: 'qcKUJI', - symbol: 'qcKUJI', + address: 'juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e', + base: 'ibc/9A7D7CCB2CC02750C70FF1A3B716486048F232029C6AAD4A500FAA58E212E5D6', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', + channel_id: 'channel-33', base_denom: - 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt', - chain_name: 'kujira' + 'factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL', + chain_name: 'juno' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-37' } } ] }, { - description: 'ampKUJI', + description: 'The native staking and governance token of Kava', denom_units: [ { denom: - 'ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32', + 'ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0', exponent: 0, - aliases: [ - 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI' - ] + aliases: ['ukava'] }, { - denom: 'ampKUJI', + denom: 'kava', exponent: 6 } ], - base: 'ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32', - name: 'ampKUJI', - display: 'ampKUJI', - symbol: 'ampKUJI', + base: 'ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' }, + coingecko_id: 'kava', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', - base_denom: - 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI', - chain_name: 'kujira' + channel_id: 'channel-134', + base_denom: 'ukava', + chain_name: 'kava' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-129' } } ] }, { - description: 'MantaDAO Governance Token', + description: 'Governance token of Kava Lend Protocol', denom_units: [ { denom: - 'ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918', + 'ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76', exponent: 0, - aliases: [ - 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta' - ] + aliases: ['hard'] }, { - denom: 'mnta', + denom: 'HARD', exponent: 6 } ], - base: 'ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918', - name: 'MantaDAO', - display: 'mnta', - symbol: 'MNTA', - coingecko_id: 'mantadao', + base: 'ibc/9B4A725BA18733BEA727BE42A1B2438177CF545BA2F2CE1B295DF9FBCB0F3C76', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' }, + coingecko_id: 'kava-lend', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', - base_denom: - 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', - chain_name: 'kujira' + channel_id: 'channel-134', + base_denom: 'hard', + chain_name: 'kava' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-129' } } ] }, { - description: "Quark's auto-compounding MNTA derivative", + description: 'Governance token of Kava Swap Protocol', denom_units: [ { denom: - 'ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569', + 'ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A', exponent: 0, - aliases: [ - 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt' - ] + aliases: ['swp'] }, { - denom: 'qcMNTA', + denom: 'SWP', exponent: 6 } ], - base: 'ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569', - name: 'qcMNTA', - display: 'qcMNTA', - symbol: 'qcMNTA', + base: 'ibc/8E9B60996FD71950B0A147F79ED469EF4EE8EB6E5887EB3C802CA6F3E85AEE8A', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' }, + coingecko_id: 'kava-swap', images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', - base_denom: - 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt', - chain_name: 'kujira' + channel_id: 'channel-134', + base_denom: 'swp', + chain_name: 'kava' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-129' } } ] }, { - description: 'ERIS Liquid Staked MNTA', + description: 'The native stablecoin of Kava', denom_units: [ { denom: - 'ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08', + 'ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51', exponent: 0, - aliases: [ - 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA' - ] + aliases: ['usdx'] }, { - denom: 'ampMNTA', + denom: 'USDX', exponent: 6 } ], - base: 'ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08', - name: 'ERIS Amplified MNTA', - display: 'ampMNTA', - symbol: 'ampMNTA', + base: 'ibc/B7136D180EE06B80585209B9C12C5069B2FFA949658A3146D31F76DE2BB0DA51', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' }, + coingecko_id: 'usdx', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-158', - base_denom: - 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA', - chain_name: 'kujira' + channel_id: 'channel-134', + base_denom: 'usdx', + chain_name: 'kava' }, chain: { - channel_id: 'channel-152' + channel_id: 'channel-129' } } ] }, { - description: 'The content house of Kujira', denom_units: [ { denom: - 'ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98', + 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', exponent: 0, - aliases: [ - 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink' - ] + aliases: ['erc20/tether/usdt'] }, { - denom: 'wink', + denom: 'usdt', exponent: 6 } ], - base: 'ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98', - name: 'WINK', - display: 'wink', - symbol: 'WINK', + base: 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + coingecko_id: 'tether', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-134', + base_denom: 'erc20/tether/usdt', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-129' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D', + exponent: 0, + aliases: ['ukuji'] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + base: 'ibc/98248BECF49363FACC3BA46A557771ED4F9F593F821D7E390BD89E201441E12D', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + coingecko_id: 'kujira', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], traces: [ @@ -2369,8 +2447,7 @@ const assets: AssetList = { type: 'ibc', counterparty: { channel_id: 'channel-158', - base_denom: - 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink', + base_denom: 'ukuji', chain_name: 'kujira' }, chain: { @@ -2380,31 +2457,35 @@ const assets: AssetList = { ] }, { - description: 'Blend Token', + description: + 'The native over-collateralized stablecoin from the Kujira chain.', denom_units: [ { denom: - 'ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64', + 'ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E', exponent: 0, aliases: [ - 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend' + 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk' ] }, { - denom: 'blend', + denom: 'usk', exponent: 6 } ], - base: 'ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64', - name: 'BLEND', - display: 'blend', - symbol: 'BLEND', + base: 'ibc/9363DA0E65BCCDBD58B29F49968BE599CC7152FF29ADEF05ECEFFCC6C8EAE07E', + name: 'USK', + display: 'usk', + symbol: 'USK', + coingecko_id: 'usk', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' } ], traces: [ @@ -2413,7 +2494,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend', + 'factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk', chain_name: 'kujira' }, chain: { @@ -2423,81 +2504,76 @@ const assets: AssetList = { ] }, { - description: 'Tether USDt on Kujira', + description: "Quark's auto-compounding KUJI derivative", denom_units: [ { denom: - 'ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28', + 'ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659', exponent: 0, aliases: [ - 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8' + 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt' ] }, { - denom: 'usdt', + denom: 'qcKUJI', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28', - name: 'Tether USD', - display: 'usdt', - symbol: 'USDT', + base: 'ibc/0769EACCC9D1862679192FB98FBA7968952388468E69775BE785B3BACE589659', + name: 'qcKUJI', + display: 'qcKUJI', + symbol: 'qcKUJI', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8', + 'factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - } + ] }, { - description: 'The staking and governance token of Fuzion', + description: 'ampKUJI', denom_units: [ { denom: - 'ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E', + 'ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32', exponent: 0, aliases: [ - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn' + 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI' ] }, { - denom: 'fuzn', + denom: 'ampKUJI', exponent: 6 } ], - base: 'ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E', - name: 'Fuzion', - display: 'fuzn', - symbol: 'FUZN', + base: 'ibc/93DD5BA707C43059ED3CB2FA2D1286997748A5CA38D5990E87781C8239892A32', + name: 'ampKUJI', + display: 'ampKUJI', + symbol: 'ampKUJI', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.svg' } ], traces: [ @@ -2506,7 +2582,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn', + 'factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI', chain_name: 'kujira' }, chain: { @@ -2516,31 +2592,34 @@ const assets: AssetList = { ] }, { - description: 'The receipt token of Fuzion', + description: 'MantaDAO Governance Token', denom_units: [ { denom: - 'ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8', + 'ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918', exponent: 0, aliases: [ - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn' + 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta' ] }, { - denom: 'rfuzn', + denom: 'mnta', exponent: 6 } ], - base: 'ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8', - name: 'Fuzion Receipt', - display: 'rfuzn', - symbol: 'rFUZN', + base: 'ibc/F4A889DA35409FF9EA6F417E7388C0CEDF518976BE6B8598C6B311B466B7F918', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + coingecko_id: 'mantadao', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' } ], traces: [ @@ -2549,7 +2628,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn', + 'factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta', chain_name: 'kujira' }, chain: { @@ -2559,31 +2638,31 @@ const assets: AssetList = { ] }, { - description: 'The yield token of Fuzion', + description: "Quark's auto-compounding MNTA derivative", denom_units: [ { denom: - 'ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140', + 'ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569', exponent: 0, aliases: [ - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn' + 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt' ] }, { - denom: 'yfuzn', + denom: 'qcMNTA', exponent: 6 } ], - base: 'ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140', - name: 'Fuzion Yield', - display: 'yfuzn', - symbol: 'yFUZN', + base: 'ibc/8F8E77C70496C3ECEC9085610447299D6288CEADBBA72AE7A91CC47D468A2569', + name: 'qcMNTA', + display: 'qcMNTA', + symbol: 'qcMNTA', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg' } ], traces: [ @@ -2592,7 +2671,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn', + 'factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt', chain_name: 'kujira' }, chain: { @@ -2602,31 +2681,31 @@ const assets: AssetList = { ] }, { - description: "Quark's auto-compounding FUZN derivative", + description: 'ERIS Liquid Staked MNTA', denom_units: [ { denom: - 'ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0', + 'ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08', exponent: 0, aliases: [ - 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt' + 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA' ] }, { - denom: 'qcFUZN', + denom: 'ampMNTA', exponent: 6 } ], - base: 'ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0', - name: 'qcFUZN', - display: 'qcFUZN', - symbol: 'qcFUZN', + base: 'ibc/CB6C995396EE9EECC4E518D20C212D4A1640D63C1D7DC6A62A67A81282C34F08', + name: 'ERIS Amplified MNTA', + display: 'ampMNTA', + symbol: 'ampMNTA', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png' } ], traces: [ @@ -2635,7 +2714,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt', + 'factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA', chain_name: 'kujira' }, chain: { @@ -2645,32 +2724,33 @@ const assets: AssetList = { ] }, { - description: 'The Revenue & Governance token of Unstake.fi', + description: 'The content house of Kujira', denom_units: [ { denom: - 'ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60', + 'ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98', exponent: 0, aliases: [ - 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk' + 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink' ] }, { - denom: 'nstk', + denom: 'wink', exponent: 6 } ], - base: 'ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60', - name: 'Unstake Fi', - display: 'nstk', - symbol: 'NSTK', + base: 'ibc/CFB7E03FA067C3AD6E4671E1560ADB916C2E1C734C808F28416C3A83FADD6B98', + name: 'WINK', + display: 'wink', + symbol: 'WINK', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' }, - coingecko_id: 'unstake-fi', images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.svg' } ], traces: [ @@ -2679,7 +2759,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk', + 'factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink', chain_name: 'kujira' }, chain: { @@ -2689,31 +2769,31 @@ const assets: AssetList = { ] }, { - description: 'Local Money', + description: 'Blend Token', denom_units: [ { denom: - 'ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717', + 'ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64', exponent: 0, aliases: [ - 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local' + 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend' ] }, { - denom: 'local', + denom: 'blend', exponent: 6 } ], - base: 'ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717', - name: 'LOCAL', - display: 'local', - symbol: 'LOCAL', + base: 'ibc/86502BBC14C360F970412ED7A27DE8DC2CE283BCC0360E3BCE59CD5E7A3ADF64', + name: 'BLEND', + display: 'blend', + symbol: 'BLEND', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg' } ], traces: [ @@ -2722,7 +2802,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local', + 'factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend', chain_name: 'kujira' }, chain: { @@ -2732,408 +2812,383 @@ const assets: AssetList = { ] }, { - description: 'Food for whales', + description: 'Tether USDt on Kujira', denom_units: [ { denom: - 'ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4', + 'ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28', exponent: 0, aliases: [ - 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk' + 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8' ] }, { - denom: 'PLNK', + denom: 'usdt', exponent: 6 } ], - base: 'ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4', - name: 'Plankton', - display: 'PLNK', - symbol: 'PLNK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' - } - ], + type_asset: 'ics20', + base: 'ibc/CB6D6D6D9E5A8135B8AFE296A3E8F183305C8A0EB80D9E7D432F1F018D0F3A28', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk', + 'ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } }, { + description: 'The staking and governance token of Fuzion', denom_units: [ { denom: - 'ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2', + 'ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E', exponent: 0, aliases: [ - 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3' + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn' ] }, { - denom: 'sol', - exponent: 8 + denom: 'fuzn', + exponent: 6 + } + ], + base: 'ibc/ADC0B9727D3D5494879D8B34B21D563FB29E2F309C1B9E18EF067C5EDC95048E', + name: 'Fuzion', + display: 'fuzn', + symbol: 'FUZN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.svg' } ], - base: 'ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2', - name: 'Wormhole Solana', - display: 'sol', - symbol: 'whSOL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'gateway', - base_denom: - 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' - } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' - } + ] }, { + description: 'The receipt token of Fuzion', denom_units: [ { denom: - 'ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC', + 'ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8', exponent: 0, aliases: [ - 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10' + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn' ] }, { - denom: 'evmos', - exponent: 18 + denom: 'rfuzn', + exponent: 6 + } + ], + base: 'ibc/37288C8111DAD5AE7EC6A3564514A995A66876BA061E2740EC60544EF2E434F8', + name: 'Fuzion Receipt', + display: 'rfuzn', + symbol: 'rFUZN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png' } ], - base: 'ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC', - name: 'Evmos', - display: 'evmos', - symbol: 'EVMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'evmos', - base_denom: 'aevmos' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' - } + ] }, { + description: 'The yield token of Fuzion', denom_units: [ { denom: - 'ibc/AE85906E24825503D641ABC48514AA8FB3C090872E546B34156BB8C3A99D4AC0', + 'ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140', exponent: 0, aliases: [ - 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2' + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn' ] }, { - denom: 'avax', - exponent: 18 + denom: 'yfuzn', + exponent: 6 + } + ], + base: 'ibc/D0EF653E1077E08B814B7B81054CD93E805DB320BCF4DC9ECE89A6D99F38F140', + name: 'Fuzion Yield', + display: 'yfuzn', + symbol: 'yFUZN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg' } ], - type_asset: 'ics20', - base: 'ibc/AE85906E24825503D641ABC48514AA8FB3C090872E546B34156BB8C3A99D4AC0', - name: 'Axelar Wrapped AVAX', - display: 'avax', - symbol: 'wAVAX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', + 'factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' - } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' - } + ] }, { + description: "Quark's auto-compounding FUZN derivative", denom_units: [ { denom: - 'ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8', + 'ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0', exponent: 0, aliases: [ - 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9' + 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt' ] }, { - denom: 'usdc', + denom: 'qcFUZN', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8', - name: 'Noble USD Coin', - display: 'usdc', - symbol: 'USDC', + base: 'ibc/CAECEB6562CDCA92DAD1FE1F92DDE0911A68C09C815E5FF0C7B687F6A61B3ED0', + name: 'qcFUZN', + display: 'qcFUZN', + symbol: 'qcFUZN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + 'factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - } + ] }, { + description: 'The Revenue & Governance token of Unstake.fi', denom_units: [ { denom: - 'ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C', + 'ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60', exponent: 0, aliases: [ - 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23' + 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk' ] }, { - denom: 'osmo', + denom: 'nstk', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', + base: 'ibc/3F11E73189D90FA528021B8005433BF7BAC62210880B6BF2CF2A67042A400B60', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + coingecko_id: 'unstake-fi', + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', + 'factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'osmosis', - base_denom: 'uosmo' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' - } + ] }, { + description: 'Local Money', denom_units: [ { denom: - 'ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917', + 'ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717', exponent: 0, aliases: [ - 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F' + 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local' ] }, { - denom: 'usdc', + denom: 'local', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917', - name: 'Axelar USD Coin', - display: 'usdc', - symbol: 'axlUSDC', + base: 'ibc/E0613527E6ADA30BBBA6D5B17882CB99B8FF9A15C6D6120BD82C274507E25717', + name: 'LOCAL', + display: 'local', + symbol: 'LOCAL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', + 'factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' - } + ] }, { + description: 'Food for whales', denom_units: [ { denom: - 'ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98', + 'ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4', exponent: 0, aliases: [ - 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07' + 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk' ] }, { - denom: 'cmdx', + denom: 'PLNK', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98', - name: 'Comdex', - display: 'cmdx', - symbol: 'CMDX', + base: 'ibc/8FAA579A3DD402FA0110FC38AF1384315A818FD8CCD709EADE23FE95D4BD7CF4', + name: 'Plankton', + display: 'PLNK', + symbol: 'PLNK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', + 'factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk', chain_name: 'kujira' }, chain: { channel_id: 'channel-152' } } - ], - images: [ - { - image_sync: { - chain_name: 'comdex', - base_denom: 'ucmdx' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' - } + ] }, { denom_units: [ { denom: - 'ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0', + 'ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2', exponent: 0, aliases: [ - 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5' + 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3' ] }, { - denom: 'juno', - exponent: 6 + denom: 'sol', + exponent: 8 } ], - base: 'ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0', - name: 'Juno', - display: 'juno', - symbol: 'JUNO', + base: 'ibc/3D5C2DF59BCA5931B982E97BD46BC170BB81A251DFE67F7F8F473BD168DFAFE2', + name: 'Wormhole Solana', + display: 'sol', + symbol: 'whSOL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', + 'ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3', chain_name: 'kujira' }, chain: { @@ -3144,45 +3199,43 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'juno', - base_denom: 'ujuno' + chain_name: 'gateway', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' } }, { denom_units: [ { denom: - 'ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26', + 'ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC', exponent: 0, aliases: [ - 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7' + 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10' ] }, { - denom: 'weth', + denom: 'evmos', exponent: 18 } ], - type_asset: 'ics20', - base: 'ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26', - name: 'Axelar Wrapped Ether', - display: 'weth', - symbol: 'wETH', + base: 'ibc/E883B7FEFAFEF397C046305A024ACAAD6BED88891AA7C46DF25B78AC8CB86FFC', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', + 'ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10', chain_name: 'kujira' }, chain: { @@ -3192,40 +3245,46 @@ const assets: AssetList = { ], images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + image_sync: { + chain_name: 'evmos', + base_denom: 'aevmos' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } }, { denom_units: [ { denom: - 'ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7', + 'ibc/AE85906E24825503D641ABC48514AA8FB3C090872E546B34156BB8C3A99D4AC0', exponent: 0, aliases: [ - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2' ] }, { - denom: 'atom', - exponent: 6 + denom: 'avax', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7', - name: 'Cosmos Hub Atom', - display: 'atom', - symbol: 'ATOM', + base: 'ibc/AE85906E24825503D641ABC48514AA8FB3C090872E546B34156BB8C3A99D4AC0', + name: 'Axelar Wrapped AVAX', + display: 'avax', + symbol: 'wAVAX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + 'ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2', chain_name: 'kujira' }, chain: { @@ -3235,45 +3294,40 @@ const assets: AssetList = { ], images: [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' } }, { denom_units: [ { denom: - 'ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58', + 'ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8', exponent: 0, aliases: [ - 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986' + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9' ] }, { - denom: 'luna', + denom: 'usdc', exponent: 6 } ], - base: 'ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58', - name: 'Luna', - display: 'luna', - symbol: 'LUNA', + type_asset: 'ics20', + base: 'ibc/C2460FE7A0C79E305DE92A4BADB31F684708FF71D5AE880FE81728ED782CA3C8', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', chain_name: 'kujira' }, chain: { @@ -3284,45 +3338,45 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'luna', - base_denom: 'uluna' + chain_name: 'noble', + base_denom: 'uusdc' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } }, { denom_units: [ { denom: - 'ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068', + 'ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C', exponent: 0, aliases: [ - 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602' + 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23' ] }, { - denom: 'stars', + denom: 'osmo', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068', - name: 'Stargaze', - display: 'stars', - symbol: 'STARS', + base: 'ibc/0A8AEE7ECA757053E81E99430E88244D1837C6ABF8283B418E95DDC6143E108C', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', + 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23', chain_name: 'kujira' }, chain: { @@ -3333,44 +3387,45 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'stargaze', - base_denom: 'ustars' + chain_name: 'osmosis', + base_denom: 'uosmo' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' } }, { denom_units: [ { denom: - 'ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31', + 'ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917', exponent: 0, aliases: [ - 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5' + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F' ] }, { - denom: 'scrt', + denom: 'usdc', exponent: 6 } ], - base: 'ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31', - name: 'Secret Network', - display: 'scrt', - symbol: 'SCRT', + type_asset: 'ics20', + base: 'ibc/FCC07D8C02F890D71D4C27E8BF66FDD735F9E7BEADB171D1652B25C6EA1D7917', + name: 'Axelar USD Coin', + display: 'usdc', + symbol: 'axlUSDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', chain_name: 'kujira' }, chain: { @@ -3381,46 +3436,45 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'scrt', - base_denom: 'uscrt' + chain_name: 'axelar', + base_denom: 'uusdc' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' } }, { denom_units: [ { denom: - 'ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4', + 'ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98', exponent: 0, aliases: [ - 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8' + 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07' ] }, { - denom: 'stkatom', - exponent: 6, - aliases: ['stk/atom'] + denom: 'cmdx', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4', - name: 'PSTAKE staked ATOM', - display: 'stkatom', - symbol: 'stkATOM', + base: 'ibc/A0F91D0965E532F8030B8A794C4605768AEC1B78C2FAEF0C973A632E28E4DE98', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-158', base_denom: - 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8', + 'ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07', chain_name: 'kujira' }, chain: { @@ -3431,428 +3485,380 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'persistence', - base_denom: 'stk/uatom' + chain_name: 'comdex', + base_denom: 'ucmdx' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' } }, { - description: 'The native token of Neutron chain.', denom_units: [ { denom: - 'ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63', + 'ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0', exponent: 0, - aliases: ['untrn'] + aliases: [ + 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5' + ] }, { - denom: 'ntrn', + denom: 'juno', exponent: 6 } ], - base: 'ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63', - name: 'Neutron', - display: 'ntrn', - symbol: 'NTRN', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' - }, - coingecko_id: 'neutron-3', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' - } - ], + base: 'ibc/EFECE96151EBF7891E0EE54F9DB7DBD841A4CE19D2C12FFBC56EFD38421C12C0', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', - base_denom: 'untrn', - chain_name: 'neutron' + channel_id: 'channel-158', + base_denom: + 'ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: 'ujuno' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } }, { - description: 'IBC uatom through cosmoshub-4 transfer/channel-1', denom_units: [ { denom: - 'ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331', + 'ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26', exponent: 0, aliases: [ - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' + 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7' ] }, { - denom: 'atom', - exponent: 6 + denom: 'weth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331', - name: 'IBC atom', - display: 'atom', - symbol: 'ATOM', + base: 'ibc/02E2C873E8D71B6C2DB52FA57A30F76EF269191E8F5C7EE219952E42F2FE5E26', + name: 'Axelar Wrapped Ether', + display: 'weth', + symbol: 'wETH', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', - chain_name: 'neutron' + 'ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { - image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' } }, { - description: 'IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2', denom_units: [ { denom: - 'ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625', + 'ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7', exponent: 0, aliases: [ - 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349' + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' ] }, { - denom: 'usdc', + denom: 'atom', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625', - name: 'IBC usdc', - display: 'usdc', - symbol: 'USDC', + base: 'ibc/CF6C850AE6962AD3B0CD150C25737889794E0C0276DFA30FDDE991E9AD5302F7', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', - chain_name: 'neutron' + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' + chain_name: 'cosmoshub', + base_denom: 'uatom' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } }, { - description: 'Tia on Neutron', denom_units: [ { denom: - 'ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F', + 'ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58', exponent: 0, aliases: [ - 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7' + 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986' ] }, { - denom: 'tia', + denom: 'luna', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F', - name: 'Celestia TIA', - display: 'tia', - symbol: 'TIA', + base: 'ibc/D16C5A18FAAFC466D4E89B7EF57A476A3C8363CBD807E0FE03E3A35C620BCE58', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', - chain_name: 'neutron' + 'ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { image_sync: { - chain_name: 'celestia', - base_denom: 'utia' + chain_name: 'luna', + base_denom: 'uluna' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } }, { - description: 'Astropepe meme coin', denom_units: [ { denom: - 'ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D', + 'ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068', exponent: 0, aliases: [ - 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe' + 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602' ] }, { - denom: 'ASTROPEPE', + denom: 'stars', exponent: 6 } ], - base: 'ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D', - name: 'AstroPepe', - display: 'ASTROPEPE', - symbol: 'ASTROPEPE', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-49', - base_denom: - 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', - chain_name: 'neutron' - }, - chain: { - channel_id: 'channel-136' - } - } - ] - }, - { - description: 'wstETH on Neutron', - denom_units: [ - { - denom: - 'ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D', - exponent: 0, - aliases: [ - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' - ] - }, - { - denom: 'wstETH', - exponent: 18 - } - ], - base: 'ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D', - name: 'wstETH', - display: 'wstETH', - symbol: 'wstETH', + type_asset: 'ics20', + base: 'ibc/6408AAF3446D1DFB125B9F5F7CD90CEE1DE472B796FCE79C3D8FB0485F591068', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', - chain_name: 'neutron' + 'ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { image_sync: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + chain_name: 'stargaze', + base_denom: 'ustars' }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } }, { - description: 'NBTC on Neutron', denom_units: [ { denom: - 'ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38', + 'ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31', exponent: 0, aliases: [ - 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920' + 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5' ] }, { - denom: 'sat', + denom: 'scrt', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38', - name: 'Nomic NBTC', - display: 'sat', - symbol: 'SAT', + base: 'ibc/5C5DF71C1C56D394B34D1F53C72E8F14EC9B478A0C412C9493511CDE888ADA31', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', - chain_name: 'neutron' + 'ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { image_sync: { - chain_name: 'nomic', - base_denom: 'usat' + chain_name: 'scrt', + base_denom: 'uscrt' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } }, { - description: 'DYDX on Neutron', denom_units: [ { denom: - 'ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D', + 'ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4', exponent: 0, aliases: [ - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130' + 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8' ] }, { - denom: 'dydx', - exponent: 18 + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] } ], type_asset: 'ics20', - base: 'ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D', - name: 'DYDX', - display: 'dydx', - symbol: 'DYDX', + base: 'ibc/E9F1AB43A1F6295B35EE99346FAB9C3A8EEDEDCCF8796AD27FACC26EEBA859F4', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-49', + channel_id: 'channel-158', base_denom: - 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', - chain_name: 'neutron' + 'ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8', + chain_name: 'kujira' }, chain: { - channel_id: 'channel-136' + channel_id: 'channel-152' } } ], images: [ { image_sync: { - chain_name: 'dydx', - base_denom: 'adydx' + chain_name: 'persistence', + base_denom: 'stk/uatom' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' } }, { - description: 'The cutest NEWT token on Neutron chain.', + description: 'The native token of Neutron chain.', denom_units: [ { denom: - 'ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E', + 'ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63', exponent: 0, - aliases: [ - 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt' - ] + aliases: ['untrn'] }, { - denom: 'newt', + denom: 'ntrn', exponent: 6 } ], - base: 'ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E', - name: 'Newt', - display: 'newt', - symbol: 'NEWT', + base: 'ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' - }, - coingecko_id: 'newt', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + coingecko_id: 'neutron-3', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], traces: [ @@ -3860,8 +3866,7 @@ const assets: AssetList = { type: 'ibc', counterparty: { channel_id: 'channel-49', - base_denom: - 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', + base_denom: 'untrn', chain_name: 'neutron' }, chain: { @@ -3871,33 +3876,33 @@ const assets: AssetList = { ] }, { - description: 'ASTRO on Neutron', + description: 'IBC uatom through cosmoshub-4 transfer/channel-1', denom_units: [ { denom: - 'ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0', + 'ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331', exponent: 0, aliases: [ - 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A' + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' ] }, { - denom: 'astro', + denom: 'atom', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0', - name: 'Astroport token', - display: 'astro', - symbol: 'ASTRO', + base: 'ibc/966025FD5D0D35ADB7833D0F491BA0D9681D3AAF0183CFC1527B35ED0492B331', + name: 'IBC atom', + display: 'atom', + symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', chain_name: 'neutron' }, chain: { @@ -3908,131 +3913,144 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'terra2', - base_denom: - 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26' + chain_name: 'cosmoshub', + base_denom: 'uatom' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } }, { - description: 'Baby Corgi is the real doggo of Neutron!', + description: 'IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2', denom_units: [ { denom: - 'ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0', + 'ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625', exponent: 0, aliases: [ - 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi' + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349' ] }, { - denom: 'corgi', + denom: 'usdc', exponent: 6 } ], - base: 'ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0', - name: 'Baby Corgi', - display: 'corgi', - symbol: 'CORGI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' - } - ], + type_asset: 'ics20', + base: 'ibc/E3B1B362C9FAC2BC1C4CC224241229A0014BCAF7FB9ED1725F15CCA2EA563625', + name: 'IBC usdc', + display: 'usdc', + symbol: 'USDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } }, { - description: 'clownmaxxed store of value', + description: 'Tia on Neutron', denom_units: [ { denom: - 'ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236', + 'ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F', exponent: 0, aliases: [ - 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus' + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7' ] }, { - denom: 'circus', + denom: 'tia', exponent: 6 } ], - base: 'ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236', - name: 'AtomEconomicZone69JaeKwonInu', - display: 'circus', - symbol: 'CIRCUS', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' - } - ], + type_asset: 'ics20', + base: 'ibc/2444438574D7C2FAC67EEDF28F83C95C1B4AAE538E8B5BBEA28E2D46D4AAB26F', + name: 'Celestia TIA', + display: 'tia', + symbol: 'TIA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } }, { - description: 'Jimmy Neutron Finance', + description: 'Astropepe meme coin', denom_units: [ { denom: - 'ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE', + 'ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D', exponent: 0, aliases: [ - 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY' + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe' ] }, { - denom: 'jimmy', + denom: 'ASTROPEPE', exponent: 6 } ], - base: 'ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE', - name: 'jimmy', - display: 'jimmy', - symbol: 'JIMMY', + base: 'ibc/C04F984183075A59DE75013363D68B64641ADE5FBA6BFE6F591403F8A93F3A0D', + name: 'AstroPepe', + display: 'ASTROPEPE', + symbol: 'ASTROPEPE', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' } ], traces: [ @@ -4041,7 +4059,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', chain_name: 'neutron' }, chain: { @@ -4051,118 +4069,180 @@ const assets: AssetList = { ] }, { - description: 'Baddest coin on Cosmos', + description: 'wstETH on Neutron', denom_units: [ { denom: - 'ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A', + 'ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D', exponent: 0, aliases: [ - 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad' + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' ] }, { - denom: 'bad', - exponent: 6 - } - ], - base: 'ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A', - name: 'Badcoin', - display: 'bad', - symbol: 'BAD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + denom: 'wstETH', + exponent: 18 } ], + base: 'ibc/F32C0B1FE24F67A0C14CBC1EB19EE95F56AF461641A5954DC1D6CB399126670D', + name: 'wstETH', + display: 'wstETH', + symbol: 'wstETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } }, { - description: 'BITCOSMOS', + description: 'NBTC on Neutron', denom_units: [ { denom: - 'ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E', + 'ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38', exponent: 0, aliases: [ - 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj' + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920' ] }, { - denom: 'bitcosmos', + denom: 'sat', exponent: 6 } ], - base: 'ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E', - name: 'Bitcosmos', - display: 'bitcosmos', - symbol: 'BTC', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' - } - ], + type_asset: 'ics20', + base: 'ibc/B7BFCE5B38F83E3A44631337774C2C91D66956A1E104BDD8B1F8E99EBAFABD38', + name: 'Nomic NBTC', + display: 'sat', + symbol: 'SAT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } }, { - description: 'What the Fuck', + description: 'DYDX on Neutron', denom_units: [ { denom: - 'ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907', + 'ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D', exponent: 0, aliases: [ - 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf' + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130' ] }, { - denom: 'wtf', - exponent: 6 + denom: 'dydx', + exponent: 18 } ], - base: 'ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907', - name: 'wtf', - display: 'wtf', - symbol: 'WTF', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' - } + type_asset: 'ics20', + base: 'ibc/9C17B1AD182BF552B494C56C7774219414EC7F011CC55A5E81219CC00C29E84D', + name: 'DYDX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-49', + base_denom: + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-136' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E', + exponent: 0, + aliases: [ + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + base: 'ibc/10960B263E6942247150AE0B741AF86D3DD09F23FB305154B121B664B61F723E', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + coingecko_id: 'newt', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } ], traces: [ { @@ -4170,7 +4250,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', chain_name: 'neutron' }, chain: { @@ -4180,33 +4260,33 @@ const assets: AssetList = { ] }, { - description: 'NLS on Neutron', + description: 'ASTRO on Neutron', denom_units: [ { denom: - 'ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011', + 'ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0', exponent: 0, aliases: [ - 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972' + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A' ] }, { - denom: 'nls', + denom: 'astro', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011', - name: 'Nolus NLS', - display: 'nls', - symbol: 'NLS', + base: 'ibc/E6BF3BB3FC131D2ADC098D2922CFCA23F7CA653DB173DCCC51A1496164E15CD0', + name: 'Astroport token', + display: 'astro', + symbol: 'ASTRO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', chain_name: 'neutron' }, chain: { @@ -4217,44 +4297,45 @@ const assets: AssetList = { images: [ { image_sync: { - chain_name: 'nolus', - base_denom: 'unls' + chain_name: 'terra2', + base_denom: + 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' } }, { - description: 'A Mechanical Canine', + description: 'Baby Corgi is the real doggo of Neutron!', denom_units: [ { denom: - 'ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE', + 'ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0', exponent: 0, aliases: [ - 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard' + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi' ] }, { - denom: 'goddard', + denom: 'corgi', exponent: 6 } ], - base: 'ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE', - name: 'Goddard', - display: 'goddard', - symbol: 'GODRD', + base: 'ibc/F6411E5108BA49F31AAD977CB6232910B366FD37980B6E8717FBD99175F9E2C0', + name: 'Baby Corgi', + display: 'corgi', + symbol: 'CORGI', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' } ], traces: [ @@ -4263,7 +4344,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', chain_name: 'neutron' }, chain: { @@ -4273,31 +4354,31 @@ const assets: AssetList = { ] }, { - description: 'The deflationary utility token of the Apollo DAO project', + description: 'clownmaxxed store of value', denom_units: [ { denom: - 'ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105', + 'ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236', exponent: 0, aliases: [ - 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO' + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus' ] }, { - denom: 'apollo', + denom: 'circus', exponent: 6 } ], - base: 'ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105', - name: 'Apollo DAO', - display: 'apollo', - symbol: 'APOLLO', + base: 'ibc/1C3305DA2EAB9A354DE252F74932777A425E5DAC25BA838E83C690F14C70F236', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' } ], traces: [ @@ -4306,7 +4387,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', chain_name: 'neutron' }, chain: { @@ -4316,31 +4397,31 @@ const assets: AssetList = { ] }, { - description: 'NEWTROLL', + description: 'Jimmy Neutron Finance', denom_units: [ { denom: - 'ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC', + 'ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE', exponent: 0, aliases: [ - 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll' + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY' ] }, { - denom: 'newtroll', + denom: 'jimmy', exponent: 6 } ], - base: 'ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC', - name: 'Newtroll', - display: 'newtroll', - symbol: 'NTRL', + base: 'ibc/35C9CC97C082FBA77D4F5F3708C95B9CC9AE0A1BAABBCE629C0C3707BAE864CE', + name: 'jimmy', + display: 'jimmy', + symbol: 'JIMMY', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' } ], traces: [ @@ -4349,7 +4430,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', chain_name: 'neutron' }, chain: { @@ -4359,31 +4440,31 @@ const assets: AssetList = { ] }, { - description: 'Retro Game', + description: 'Baddest coin on Cosmos', denom_units: [ { denom: - 'ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F', + 'ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A', exponent: 0, aliases: [ - 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro' + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad' ] }, { - denom: 'retro', + denom: 'bad', exponent: 6 } ], - base: 'ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F', - name: 'Retro', - display: 'retro', - symbol: 'RETRO', + base: 'ibc/43B7302B4BDC12372B6E3909A2EA66904103C98D13ECBEE6B0D8F2D7771B7A3A', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' } ], traces: [ @@ -4392,7 +4473,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', chain_name: 'neutron' }, chain: { @@ -4402,31 +4483,31 @@ const assets: AssetList = { ] }, { - description: 'THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON', + description: 'BITCOSMOS', denom_units: [ { denom: - 'ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68', + 'ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E', exponent: 0, aliases: [ - 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD' + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj' ] }, { - denom: 'goddard', + denom: 'bitcosmos', exponent: 6 } ], - base: 'ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68', - name: 'Goddard', - display: 'goddard', - symbol: 'GODDARD', + base: 'ibc/5338ECB32187F1417530CD66371434D69EDF1DA6F384435B01533E426B45971E', + name: 'Bitcosmos', + display: 'bitcosmos', + symbol: 'BTC', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' } ], traces: [ @@ -4435,7 +4516,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD', + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', chain_name: 'neutron' }, chain: { @@ -4445,173 +4526,167 @@ const assets: AssetList = { ] }, { - description: 'The first memecoin on osmosis.', + description: 'What the Fuck', denom_units: [ { denom: - 'ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1', + 'ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907', exponent: 0, aliases: [ - 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958' + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf' ] }, { - denom: 'WOSMO', + denom: 'wtf', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1', - name: 'Wosmo', - display: 'WOSMO', - symbol: 'WOSMO', + base: 'ibc/95AF5A5D4DF438898DDB71B9D8B769D87AE9B0844929F155C9E4B1238CD06907', + name: 'wtf', + display: 'wtf', + symbol: 'WTF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958', + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ], - images: [ - { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' - } + ] }, { - description: 'Astro BOY', + description: 'NLS on Neutron', denom_units: [ { denom: - 'ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11', + 'ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011', exponent: 0, aliases: [ - 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv' + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972' ] }, { - denom: 'boy', + denom: 'nls', exponent: 6 } ], - base: 'ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11', - name: 'boy', - display: 'boy', - symbol: 'BOY', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' - } - ], + type_asset: 'ics20', + base: 'ibc/1585A07B63661F264D9F1D412A85DBE217368E87C5CF905435B9E73E4F704011', + name: 'Nolus NLS', + display: 'nls', + symbol: 'NLS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv', + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } }, { - description: - "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + description: 'A Mechanical Canine', denom_units: [ { denom: - 'ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F', + 'ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE', exponent: 0, aliases: [ - 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8' + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard' ] }, { - denom: 'BADKID', + denom: 'goddard', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F', - name: 'Badkid', - display: 'BADKID', - symbol: 'BADKID', + base: 'ibc/3AF6FB9CEB58FB1E8E5E83251542E247812594DEBDE818C8B8B071E81FEECCBE', + name: 'Goddard', + display: 'goddard', + symbol: 'GODRD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' + } + ], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-49', base_denom: - 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8', + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', chain_name: 'neutron' }, chain: { channel_id: 'channel-136' } } - ], - images: [ - { - image_sync: { - chain_name: 'osmosis', - base_denom: - 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' - } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' - } + ] }, { - description: 'Reflections of cartel activity on Cosmos.', + description: 'The deflationary utility token of the Apollo DAO project', denom_units: [ { denom: - 'ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B', + 'ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105', exponent: 0, aliases: [ - 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel' + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO' ] }, { - denom: 'cartel', + denom: 'apollo', exponent: 6 } ], - base: 'ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B', - name: 'cartel', - display: 'cartel', - symbol: 'CARTEL', + base: 'ibc/4DE7C4DE671191B9533EF6603E3F7C07943DE4018BF29C72F4683D7C198CD105', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' } ], traces: [ @@ -4620,7 +4695,7 @@ const assets: AssetList = { counterparty: { channel_id: 'channel-49', base_denom: - 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel', + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', chain_name: 'neutron' }, chain: { @@ -4630,590 +4705,611 @@ const assets: AssetList = { ] }, { - description: 'The permissioned staking asset for Noble Chain', + description: 'NEWTROLL', denom_units: [ { denom: - 'ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1', + 'ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC', exponent: 0, - aliases: ['ustake'] + aliases: [ + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll' + ] }, { - denom: 'stake', + denom: 'newtroll', exponent: 6 } ], - base: 'ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1', - name: 'Stake', - display: 'stake', - symbol: 'STAKE', + base: 'ibc/07C3F7B80743C42FDF1BCDED745FF7824F95DD2A07E992B14C82897081F282EC', + name: 'Newtroll', + display: 'newtroll', + symbol: 'NTRL', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-36', - base_denom: 'ustake', - chain_name: 'noble' + channel_id: 'channel-49', + base_denom: + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-132' + channel_id: 'channel-136' } } ] }, { - description: - 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + description: 'Retro Game', denom_units: [ { denom: - 'ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52', + 'ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F', exponent: 0, - aliases: ['ufrienzies'] + aliases: [ + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro' + ] }, { - denom: 'frienzies', + denom: 'retro', exponent: 6 } ], - base: 'ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52', - display: 'frienzies', - name: 'Frienzies', - symbol: 'FRNZ', + base: 'ibc/FC2E6B5C81B3CAC48A7349F2A8671593725A647356C41EDBF0A626FCAF4DD01F', + name: 'Retro', + display: 'retro', + symbol: 'RETRO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-36', - base_denom: 'ufrienzies', - chain_name: 'noble' + channel_id: 'channel-49', + base_denom: + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-132' + channel_id: 'channel-136' } } ] }, { - description: 'ATOM token on Noble', + description: 'THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON', denom_units: [ { denom: - 'ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA', + 'ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68', exponent: 0, aliases: [ - 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD' ] }, { - denom: 'atom', - exponent: 6, - aliases: ['ATOM'] + denom: 'goddard', + exponent: 6 + } + ], + base: 'ibc/EDDAB98B6ADCEEF46DA483D3AFB27F6A38F43DD34BEEA812550EA285B11D6E68', + name: 'Goddard', + display: 'goddard', + symbol: 'GODDARD', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' } ], - type_asset: 'ics20', - base: 'ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA', - name: 'Atom Staking Coin', - display: 'atom', - symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-36', + channel_id: 'channel-49', base_denom: - 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', - chain_name: 'noble' + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-132' + channel_id: 'channel-136' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' - } ] }, { - description: 'USD Coin', + description: 'The first memecoin on osmosis.', denom_units: [ { denom: - 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', + 'ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1', exponent: 0, - aliases: ['uusdc'] + aliases: [ + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958' + ] }, { - denom: 'usdc', + denom: 'WOSMO', exponent: 6 } ], - base: 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', - display: 'usdc', - name: 'USD Coin', - symbol: 'USDC', - coingecko_id: 'usd-coin', + type_asset: 'ics20', + base: 'ibc/709A8782BCF5DBBBEC3EC2231249ED1289199A37E456562D0A8A1A7631A265B1', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-36', - base_denom: 'uusdc', - chain_name: 'noble' + channel_id: 'channel-49', + base_denom: + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-132' + channel_id: 'channel-136' } } ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' } - ] - }, - { - description: 'The native token of Osmosis', + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + }, + { + description: 'Astro BOY', denom_units: [ { denom: - 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85', + 'ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11', exponent: 0, - aliases: ['uosmo'] + aliases: [ + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv' + ] }, { - denom: 'osmo', + denom: 'boy', exponent: 6 } ], - type_asset: 'sdk.coin', - base: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', + base: 'ibc/142595FF1A1A745BE68E39DBDAD9BDBE1D97EBFCDF123269A186F23072854D11', + name: 'boy', + display: 'boy', + symbol: 'BOY', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' } ], - coingecko_id: 'osmosis', - keywords: ['dex', 'staking'], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', - base_denom: 'uosmo', - chain_name: 'osmosis' + channel_id: 'channel-49', + base_denom: + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-136' } } ] }, { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", denom_units: [ { denom: - 'ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389', + 'ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F', exponent: 0, - aliases: ['uion'] + aliases: [ + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8' + ] }, { - denom: 'ion', + denom: 'BADKID', exponent: 6 } ], - type_asset: 'sdk.coin', - base: 'ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389', - name: 'Ion DAO', - display: 'ion', - symbol: 'ION', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' - } - ], - coingecko_id: 'ion', - keywords: ['memecoin'], + type_asset: 'ics20', + base: 'ibc/6DD413BAF84794BC3B70D67971AD917A7362C81F4A378EFCEEAC36FA99E6839F', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', - base_denom: 'uion', - chain_name: 'osmosis' + channel_id: 'channel-49', + base_denom: + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-136' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } }, { - description: "Circle's stablecoin on Axelar", + description: 'Reflections of cartel activity on Cosmos.', denom_units: [ { denom: - 'ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1', + 'ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B', exponent: 0, aliases: [ - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel' ] }, { - denom: 'usdc', + denom: 'cartel', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1', - name: 'USD Coin (Axelar)', - display: 'usdc', - symbol: 'USDC.axl', + base: 'ibc/CC10E17D9F8C641C6A1A1B973269F7F5482B66EECC2D9A4880B5E77445EA9F3B', + name: 'cartel', + display: 'cartel', + symbol: 'CARTEL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-49', base_denom: - 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', - chain_name: 'osmosis' + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-136' } } + ] + }, + { + description: 'The permissioned staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } ], + base: 'ibc/81D03D8FCD6171B36317A487BF846D75D1178F252D204C01A0986AB371971FC1', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' - }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + } + ], + traces: [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'uusdc' + type: 'ibc', + counterparty: { + channel_id: 'channel-36', + base_denom: 'ustake', + chain_name: 'noble' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + chain: { + channel_id: 'channel-132' + } } ] }, { description: - "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', denom_units: [ { denom: - 'ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543', + 'ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52', exponent: 0, - aliases: [ - 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' - ] + aliases: ['ufrienzies'] }, { - denom: 'weth', - exponent: 18 + denom: 'frienzies', + exponent: 6 + } + ], + base: 'ibc/BA279CFC912BC0D7515522C217126891F1AB46B37ECB418BE066808097E7FC52', + display: 'frienzies', + name: 'Frienzies', + symbol: 'FRNZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' } ], - type_asset: 'ics20', - base: 'ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543', - name: 'Ether', - display: 'weth', - symbol: 'ETH', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', - base_denom: - 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', - chain_name: 'osmosis' + channel_id: 'channel-36', + base_denom: 'ufrienzies', + chain_name: 'noble' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-132' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' - } ] }, { - description: 'Wrapped Bitcoin on Axelar', + description: 'ATOM token on Noble', denom_units: [ { denom: - 'ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A', + 'ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA', exponent: 0, aliases: [ - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' ] }, { - denom: 'wbtc', - exponent: 8 + denom: 'atom', + exponent: 6, + aliases: ['ATOM'] } ], type_asset: 'ics20', - base: 'ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A', - name: 'Wrapped Bitcoin (Axelar)', - display: 'wbtc', - symbol: 'WBTC.axl', + base: 'ibc/1763582ED57DC337CF6435A7F92CA0FD8A617A53BB84AAEF6CC81AADA4D0A1BA', + name: 'Atom Staking Coin', + display: 'atom', + symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-36', base_denom: - 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', - chain_name: 'osmosis' + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', + chain_name: 'noble' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-132' } } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' - }, - { - image_sync: { - chain_name: 'axelar', - base_denom: 'wbtc-satoshi' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ] }, { - description: "Tether's USD stablecoin on Axelar", + description: 'USD Coin', denom_units: [ { denom: - 'ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A', + 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', exponent: 0, - aliases: [ - 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' - ] + aliases: ['uusdc'] }, { - denom: 'usdt', + denom: 'usdc', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A', - name: 'Tether USD (Axelar)', - display: 'usdt', - symbol: 'USDT.axl', + base: 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + coingecko_id: 'usd-coin', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', - base_denom: - 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', - chain_name: 'osmosis' + channel_id: 'channel-36', + base_denom: 'uusdc', + chain_name: 'noble' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-132' } } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' } ] }, { - description: - 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + description: 'The native token of Osmosis', denom_units: [ { denom: - 'ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B', + 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85', exponent: 0, - aliases: [ - 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' - ] + aliases: ['uosmo'] }, { - denom: 'dai', - exponent: 18 + denom: 'osmo', + exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B', - name: 'Dai Stablecoin', - display: 'dai', - symbol: 'DAI', + type_asset: 'sdk.coin', + base: 'ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', - base_denom: - 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + base_denom: 'uosmo', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' - } ] }, { - description: - 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', denom_units: [ { denom: - 'ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158', + 'ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389', exponent: 0, - aliases: [ - 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' - ] + aliases: ['uion'] }, { - denom: 'busd', - exponent: 18 + denom: 'ion', + exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158', - name: 'Binance USD', - display: 'busd', - symbol: 'BUSD', + type_asset: 'sdk.coin', + base: 'ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', - base_denom: - 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + base_denom: 'uion', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' - } ] }, { - description: 'The native staking and governance token of the Cosmos Hub.', + description: "Circle's stablecoin on Axelar", denom_units: [ { denom: - 'ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C', + 'ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1', exponent: 0, aliases: [ - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' ] }, { - denom: 'atom', + denom: 'usdc', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C', - name: 'Cosmos Hub', - display: 'atom', - symbol: 'ATOM', + base: 'ibc/D652CF3DD8442315EEC2F45DFB643B9C3F73BC0E2A563EB33E9AD4F3A077BCE1', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', chain_name: 'osmosis' }, chain: { @@ -5222,49 +5318,53 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' }, images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, { image_sync: { - chain_name: 'cosmoshub', - base_denom: 'uatom' + chain_name: 'axelar', + base_denom: 'uusdc' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' } ] }, { description: - 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", denom_units: [ { denom: - 'ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8', + 'ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543', exponent: 0, aliases: [ - 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' ] }, { - denom: 'cro', - exponent: 8 + denom: 'weth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8', - name: 'Cronos POS Chain', - display: 'cro', - symbol: 'CRO', + base: 'ibc/24AB598706D1A5039B026EFDCDEA9BE72651513C1BF67878EB044DDBE061C543', + name: 'Ether', + display: 'weth', + symbol: 'ETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', chain_name: 'osmosis' }, chain: { @@ -5273,47 +5373,43 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' }, images: [ { - image_sync: { - chain_name: 'cryptoorgchain', - base_denom: 'basecro' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' } ] }, { - description: - 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + description: 'Wrapped Bitcoin on Axelar', denom_units: [ { denom: - 'ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409', + 'ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A', exponent: 0, aliases: [ - 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' ] }, { - denom: 'wbnb', - exponent: 18 + denom: 'wbtc', + exponent: 8 } ], type_asset: 'ics20', - base: 'ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409', - name: 'Binance Coin', - display: 'wbnb', - symbol: 'BNB', + base: 'ibc/90917DBA892E9DAB893589DDE17D2F407DC93C57245099290BD66E48621D6F6A', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', chain_name: 'osmosis' }, chain: { @@ -5322,45 +5418,51 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' } ] }, { - description: - 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + description: "Tether's USD stablecoin on Axelar", denom_units: [ { denom: - 'ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D', + 'ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A', exponent: 0, aliases: [ - 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' ] }, { - denom: 'wmatic', - exponent: 18 + denom: 'usdt', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D', - name: 'Polygon', - display: 'wmatic', - symbol: 'MATIC', + base: 'ibc/9B7F406936F99FEA2B37D0B2829F5FAF9F6E423CB925E79973CE7CA2FCFED83A', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', chain_name: 'osmosis' }, chain: { @@ -5369,44 +5471,47 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' } ] }, { description: - 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', denom_units: [ { denom: - 'ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3', + 'ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B', exponent: 0, aliases: [ - 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' ] }, { - denom: 'avax', + denom: 'dai', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3', - name: 'Avalanche', - display: 'avax', - symbol: 'AVAX', + base: 'ibc/44976AC8928C028A260743781CF56F6B5F4380857DFEC818A9EA4E891C2BA24B', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', chain_name: 'osmosis' }, chain: { @@ -5415,49 +5520,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' } ] }, { - description: 'The native staking token of Terra Classic.', + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', denom_units: [ { denom: - 'ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB', + 'ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158', exponent: 0, aliases: [ - 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' ] }, { - denom: 'mluna', - exponent: 3, - aliases: ['milliluna'] - }, - { - denom: 'luna', - exponent: 6, - aliases: ['lunc'] + denom: 'busd', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB', - name: 'Luna Classic', - display: 'luna', - symbol: 'LUNC', + base: 'ibc/CE4738D21F24C15527CE647F9ABDE89AB635A03E63CBE0B4064F9DBE8404A158', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', chain_name: 'osmosis' }, chain: { @@ -5466,44 +5565,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' } ] }, { - description: 'The native token of JUNO Chain', + description: 'The native staking and governance token of the Cosmos Hub.', denom_units: [ { denom: - 'ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA', + 'ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C', exponent: 0, aliases: [ - 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' ] }, { - denom: 'juno', + denom: 'atom', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA', - name: 'Juno', - display: 'juno', - symbol: 'JUNO', + base: 'ibc/81844CA896A4C233B331A468123AF2AACDC580DE294C5528A6E3F661A136795C', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', chain_name: 'osmosis' }, chain: { @@ -5512,44 +5611,49 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ] }, { - description: 'Wrapped Polkadot on Axelar', + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', denom_units: [ { denom: - 'ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888', + 'ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8', exponent: 0, aliases: [ - 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' ] }, { - denom: 'dot', - exponent: 10 + denom: 'cro', + exponent: 8 } ], type_asset: 'ics20', - base: 'ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888', - name: 'Wrapped Polkadot (Axelar)', - display: 'dot', - symbol: 'DOT.axl', + base: 'ibc/97D8B16FCE2560015857DB6DC7123B92B6336584B18C7FFF9D4C423DB05997E8', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', chain_name: 'osmosis' }, chain: { @@ -5558,47 +5662,47 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' } ] }, { description: - 'The native EVM, governance and staking token of the Evmos Hub', + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', denom_units: [ { denom: - 'ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5', + 'ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409', exponent: 0, aliases: [ - 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' ] }, { - denom: 'evmos', + denom: 'wbnb', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5', - name: 'Evmos', - display: 'evmos', - symbol: 'EVMOS', + base: 'ibc/BBBB338483FC26357A3106F7BCFF1EB52BBF782C3A53E0DB874FB23BD8E25409', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', chain_name: 'osmosis' }, chain: { @@ -5607,44 +5711,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' } ] }, { - description: 'The native staking and governance token of Kava', + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', denom_units: [ { denom: - 'ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480', + 'ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D', exponent: 0, aliases: [ - 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' ] }, { - denom: 'kava', - exponent: 6 + denom: 'wmatic', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480', - name: 'Kava', - display: 'kava', - symbol: 'KAVA', + base: 'ibc/C5A2C2CDDDAFF9F8B3333C817AB8258A28E13F5612EBBDCAF51E5CCCEEF1223D', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', chain_name: 'osmosis' }, chain: { @@ -5653,44 +5758,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' } ] }, { - description: 'The native token of Secret Network', + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', denom_units: [ { denom: - 'ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77', + 'ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3', exponent: 0, aliases: [ - 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' ] }, { - denom: 'scrt', - exponent: 6 + denom: 'avax', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77', - name: 'Secret Network', - display: 'scrt', - symbol: 'SCRT', + base: 'ibc/B81829221936373A816C54D42A4347C56BE53F25FFABB59B584FE6CAF45153E3', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', chain_name: 'osmosis' }, chain: { @@ -5699,50 +5804,49 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' } ] }, { - description: 'The USD stablecoin of Terra Classic.', + description: 'The native staking token of Terra Classic.', denom_units: [ { denom: - 'ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7', + 'ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB', exponent: 0, aliases: [ - 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' ] }, { - denom: 'musd', + denom: 'mluna', exponent: 3, - aliases: ['milliusd'] + aliases: ['milliluna'] }, { - denom: 'ust', + denom: 'luna', exponent: 6, - aliases: ['ustc'] + aliases: ['lunc'] } ], type_asset: 'ics20', - base: 'ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7', - name: 'TerraClassicUSD', - display: 'ust', - symbol: 'USTC', + base: 'ibc/2853AF2D1099CEC31B5D6BBF7C875E542302A3C74BDC7831E4F91426159296BB', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', chain_name: 'osmosis' }, chain: { @@ -5751,44 +5855,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' } ] }, { - description: 'The native token of Stargaze', + description: 'The native token of JUNO Chain', denom_units: [ { denom: - 'ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE', + 'ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA', exponent: 0, aliases: [ - 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' ] }, { - denom: 'stars', + denom: 'juno', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE', - name: 'Stargaze', - display: 'stars', - symbol: 'STARS', + base: 'ibc/407C7F3CC55EBB0C034D92F7BD4C424643CA92137DDCB61AC8081B84B719F2BA', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', chain_name: 'osmosis' }, chain: { @@ -5797,48 +5901,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' }, images: [ { - image_sync: { - chain_name: 'stargaze', - base_denom: 'ustars' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ] }, { - description: 'The native token of Chihuahua Chain', + description: 'Wrapped Polkadot on Axelar', denom_units: [ { denom: - 'ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276', + 'ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888', exponent: 0, aliases: [ - 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' ] }, { - denom: 'huahua', - exponent: 6 + denom: 'dot', + exponent: 10 } ], type_asset: 'ics20', - base: 'ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276', - name: 'Chihuahua', - display: 'huahua', - symbol: 'HUAHUA', + base: 'ibc/AD87FB798F0485F0065C2386AF71874A6C94BD063241B1BD593E07982F674888', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', chain_name: 'osmosis' }, chain: { @@ -5847,45 +5947,47 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' } ] }, { description: - 'The XPRT token is primarily a governance token for the Persistence chain.', + 'The native EVM, governance and staking token of the Evmos Hub', denom_units: [ { denom: - 'ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6', + 'ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5', exponent: 0, aliases: [ - 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' ] }, { - denom: 'xprt', - exponent: 6 + denom: 'evmos', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6', - name: 'Persistence', - display: 'xprt', - symbol: 'XPRT', + base: 'ibc/A6B2E5AF1C86A0C7C0EB67EBB5860E314A3E0B8DC2E3493594621FBA07F737A5', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', chain_name: 'osmosis' }, chain: { @@ -5894,45 +5996,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ] }, { - description: - 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + description: 'The native staking and governance token of Kava', denom_units: [ { denom: - 'ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873', + 'ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480', exponent: 0, aliases: [ - 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' ] }, { - denom: 'pstake', - exponent: 18 + denom: 'kava', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873', - name: 'pSTAKE Finance', - display: 'pstake', - symbol: 'PSTAKE', + base: 'ibc/EC01557776C08537D6E75564004DD1EC3DC02AF703547BAB3E0C5A13D1D50480', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', chain_name: 'osmosis' }, chain: { @@ -5941,46 +6042,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } - ], - keywords: ['canon'] + ] }, { - description: - "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + description: 'The native token of Secret Network', denom_units: [ { denom: - 'ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2', + 'ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77', exponent: 0, aliases: [ - 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' ] }, { - denom: 'akt', + denom: 'scrt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2', - name: 'Akash', - display: 'akt', - symbol: 'AKT', + base: 'ibc/0D3C3B676FB92E46FCF700A94F3567F8B67E0EF0BC5AAB07643D6515BAE60D77', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', chain_name: 'osmosis' }, chain: { @@ -5989,44 +6088,50 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ] }, { - description: 'REGEN coin is the token for the Regen Network Platform', + description: 'The USD stablecoin of Terra Classic.', denom_units: [ { denom: - 'ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423', + 'ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7', exponent: 0, aliases: [ - 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' ] }, { - denom: 'regen', - exponent: 6 + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] } ], type_asset: 'ics20', - base: 'ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423', - name: 'Regen', - display: 'regen', - symbol: 'REGEN', + base: 'ibc/F421E79C9373EF718AB7906B297885FBD95584CAE3E15601F5230598E9A902B7', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', chain_name: 'osmosis' }, chain: { @@ -6035,44 +6140,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' } ] }, { - description: 'DVPN is the native token of the Sentinel Hub.', + description: 'The native token of Stargaze', denom_units: [ { denom: - 'ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B', + 'ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE', exponent: 0, aliases: [ - 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' ] }, { - denom: 'dvpn', + denom: 'stars', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B', - name: 'Sentinel', - display: 'dvpn', - symbol: 'DVPN', + base: 'ibc/4B796CD8B925D210AE8EF1D6E7C8FF9C8AE508A808883DABAD44BB0B6E6792EE', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', chain_name: 'osmosis' }, chain: { @@ -6081,45 +6186,48 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ] }, { - description: - 'The IRIS token is the native governance token for the IrisNet chain.', + description: 'The native token of Chihuahua Chain', denom_units: [ { denom: - 'ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE', + 'ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276', exponent: 0, aliases: [ - 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' ] }, { - denom: 'iris', + denom: 'huahua', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE', - name: 'IRISnet', - display: 'iris', - symbol: 'IRIS', + base: 'ibc/BDBF03D0ADB11EDE69CFB464234D52057E85E069F21122EC4732BFF907BEE276', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', chain_name: 'osmosis' }, chain: { @@ -6128,45 +6236,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' } ] }, { description: - 'IOV coin is the token for the Starname (IOV) Asset Name Service', + 'The XPRT token is primarily a governance token for the Persistence chain.', denom_units: [ { denom: - 'ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954', + 'ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6', exponent: 0, aliases: [ - 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' ] }, { - denom: 'iov', + denom: 'xprt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954', - name: 'Starname', - display: 'iov', - symbol: 'IOV', + base: 'ibc/152D4459578B85FC03D6648F9E04E7972A9CC11BFC2BB378683B9877009B80E6', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', chain_name: 'osmosis' }, chain: { @@ -6175,45 +6283,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ] }, { description: - 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', denom_units: [ { denom: - 'ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358', + 'ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873', exponent: 0, aliases: [ - 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' ] }, { - denom: 'ngm', - exponent: 6 + denom: 'pstake', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358', - name: 'e-Money', - display: 'ngm', - symbol: 'NGM', + base: 'ibc/2D21163AA3F62B5D19B940063D9B95837B19F7E8404344DCCE0C1950D659B873', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', chain_name: 'osmosis' }, chain: { @@ -6222,45 +6330,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' } - ] + ], + keywords: ['canon'] }, { description: - 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", denom_units: [ { denom: - 'ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935', + 'ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2', exponent: 0, aliases: [ - 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' ] }, { - denom: 'eur', + denom: 'akt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935', - name: 'e-Money EUR', - display: 'eur', - symbol: 'EEUR', + base: 'ibc/F9B0A90BD48629BEA2A331AC7A0EEB5B95A780CEA3E32772F138F433E6C04EF2', + name: 'Akash', + display: 'akt', + symbol: 'AKT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', chain_name: 'osmosis' }, chain: { @@ -6269,45 +6378,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ] }, { - description: - 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + description: 'REGEN coin is the token for the Regen Network Platform', denom_units: [ { denom: - 'ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1', + 'ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423', exponent: 0, aliases: [ - 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' ] }, { - denom: 'like', - exponent: 9 + denom: 'regen', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1', - name: 'LikeCoin', - display: 'like', - symbol: 'LIKE', + base: 'ibc/AA6BC4A39C0DC1588624274815F71ECCA955DCF04B76EF37F4A85CD02D615423', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', chain_name: 'osmosis' }, chain: { @@ -6316,44 +6424,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ] }, { - description: 'The native token of IXO Chain', + description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ { denom: - 'ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752', + 'ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B', exponent: 0, aliases: [ - 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' ] }, { - denom: 'ixo', + denom: 'dvpn', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752', - name: 'ixo', - display: 'ixo', - symbol: 'IXO', + base: 'ibc/2D71847CBC849F6A6B39E5142DC8A38B0055E20583D77E96CB17EF6687190C3B', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', chain_name: 'osmosis' }, chain: { @@ -6362,45 +6470,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ] }, { description: - 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + 'The IRIS token is the native governance token for the IrisNet chain.', denom_units: [ { denom: - 'ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA', + 'ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE', exponent: 0, aliases: [ - 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' ] }, { - denom: 'bcna', + denom: 'iris', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA', - name: 'BitCanna', - display: 'bcna', - symbol: 'BCNA', + base: 'ibc/098F71CB80343AF906A67BC2C6CD434874187B540E245C1ABAFAD284A69F6DBE', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', chain_name: 'osmosis' }, chain: { @@ -6409,44 +6517,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' } ] }, { - description: 'BitSong Native Token', + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', denom_units: [ { denom: - 'ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71', + 'ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954', exponent: 0, aliases: [ - 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' ] }, { - denom: 'btsg', + denom: 'iov', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71', - name: 'BitSong', - display: 'btsg', - symbol: 'BTSG', + base: 'ibc/F80576AB9ABB9E94FD607C825DEBCBF9DE195FC88EA6D7C28FF04416A13C5954', + name: 'Starname', + display: 'iov', + symbol: 'IOV', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', chain_name: 'osmosis' }, chain: { @@ -6455,44 +6564,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ] }, { - description: 'The native token of Ki Chain', + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', denom_units: [ { denom: - 'ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A', + 'ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358', exponent: 0, aliases: [ - 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' ] }, { - denom: 'xki', + denom: 'ngm', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A', - name: 'Ki', - display: 'xki', - symbol: 'XKI', + base: 'ibc/D9149857EEF53D196F914B9A8DDF33C9299BD4100B1F4B51BADD65E35A410358', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', chain_name: 'osmosis' }, chain: { @@ -6501,45 +6611,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' } ] }, { description: - 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', denom_units: [ { denom: - 'ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634', + 'ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935', exponent: 0, aliases: [ - 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' ] }, { - denom: 'med', + denom: 'eur', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634', - name: 'Medibloc', - display: 'med', - symbol: 'MED', + base: 'ibc/F99C2F8D72C75F838F2D85598BB800FC3C55BC5F414EFEB823944B5CE26DA935', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', chain_name: 'osmosis' }, chain: { @@ -6548,41 +6658,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' } ] }, { - description: 'The staking token of Bostrom', + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', denom_units: [ { denom: - 'ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22', + 'ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1', exponent: 0, aliases: [ - 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' ] + }, + { + denom: 'like', + exponent: 9 } ], type_asset: 'ics20', - base: 'ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22', - name: 'bostrom', - display: - 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', - symbol: 'BOOT', + base: 'ibc/7055AA5724248B3A6B4CECF1D896BA0F0B2E7D484782C10DD380A9361DBFDAC1', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', chain_name: 'osmosis' }, chain: { @@ -6591,44 +6705,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' } ] }, { - description: 'Native Token of Comdex Protocol', + description: 'The native token of IXO Chain', denom_units: [ { denom: - 'ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8', + 'ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752', exponent: 0, aliases: [ - 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' ] }, { - denom: 'cmdx', + denom: 'ixo', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8', - name: 'Comdex', - display: 'cmdx', - symbol: 'CMDX', + base: 'ibc/9C0ED9F0F0CB1D4C175B4C4CC21D3F3ABAA736FE86728356F023C175BA1AD752', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', chain_name: 'osmosis' }, chain: { @@ -6637,44 +6751,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' } ] }, { - description: 'Native token for the cheqd network', + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', denom_units: [ { denom: - 'ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35', + 'ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA', exponent: 0, aliases: [ - 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' ] }, { - denom: 'cheq', - exponent: 9 + denom: 'bcna', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35', - name: 'Cheqd', - display: 'cheq', - symbol: 'CHEQ', + base: 'ibc/AB0B69E6CE77E89ECBB22B36F4D86879A90DEA21B6743B5123BB6EC8F0695BBA', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', chain_name: 'osmosis' }, chain: { @@ -6683,44 +6798,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' } ] }, { - description: 'Native token of the Lum Network', + description: 'BitSong Native Token', denom_units: [ { denom: - 'ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25', + 'ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71', exponent: 0, aliases: [ - 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' ] }, { - denom: 'lum', + denom: 'btsg', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25', - name: 'Lum Network', - display: 'lum', - symbol: 'LUM', + base: 'ibc/72E10CAB081C00CFCD5809852237528644C52CF80F72DF701FA45A7C19737D71', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', chain_name: 'osmosis' }, chain: { @@ -6729,44 +6844,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ] }, { - description: 'The native token of Vidulum', + description: 'The native token of Ki Chain', denom_units: [ { denom: - 'ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472', + 'ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A', exponent: 0, aliases: [ - 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' ] }, { - denom: 'vdl', + denom: 'xki', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472', - name: 'Vidulum', - display: 'vdl', - symbol: 'VDL', + base: 'ibc/25C22C58F30C98BAC39015670F7EBB9F88DC0488CB412AEF7423063CF121816A', + name: 'Ki', + display: 'xki', + symbol: 'XKI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', chain_name: 'osmosis' }, chain: { @@ -6775,44 +6890,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' } ] }, { - description: 'The native token of Desmos', + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', denom_units: [ { denom: - 'ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F', + 'ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634', exponent: 0, aliases: [ - 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' ] }, { - denom: 'dsm', + denom: 'med', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F', - name: 'Desmos', - display: 'dsm', - symbol: 'DSM', + base: 'ibc/2390007D418D210AA8E3A5E06D4AE3F25BEE89BCA3567C2E8EBB4E203C1FA634', + name: 'Medibloc', + display: 'med', + symbol: 'MED', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', chain_name: 'osmosis' }, chain: { @@ -6821,44 +6937,41 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' } ] }, { - description: 'Native token of Dig Chain', + description: 'The staking token of Bostrom', denom_units: [ { denom: - 'ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E', + 'ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22', exponent: 0, aliases: [ - 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' ] - }, - { - denom: 'dig', - exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E', - name: 'Dig Chain', - display: 'dig', - symbol: 'DIG', + base: 'ibc/10C6150434ACCEA843B1B5C40BBAF6C61AB5245DDE8219135EB6AF2AFB90FB22', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', chain_name: 'osmosis' }, chain: { @@ -6867,49 +6980,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: - 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + description: 'Native Token of Comdex Protocol', denom_units: [ { denom: - 'ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A', + 'ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8', exponent: 0, aliases: [ - 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' ] }, { - denom: 'msomm', - exponent: 3, - aliases: ['millisomm'] - }, - { - denom: 'somm', + denom: 'cmdx', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A', - name: 'Sommelier', - display: 'somm', - symbol: 'SOMM', + base: 'ibc/4601D1D9F455B956B2AC18DB04786DDE0E4134C267D393473006CF166D8AF8E8', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', chain_name: 'osmosis' }, chain: { @@ -6918,44 +7026,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' } ] }, { - description: 'The native token of BandChain', + description: 'Native token for the cheqd network', denom_units: [ { denom: - 'ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718', + 'ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35', exponent: 0, aliases: [ - 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' ] }, { - denom: 'band', - exponent: 6 + denom: 'cheq', + exponent: 9 } ], type_asset: 'ics20', - base: 'ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718', - name: 'Band Protocol', - display: 'band', - symbol: 'BAND', + base: 'ibc/E2933FF79DC208B3C77AE3E855F21E6C7267B4BF6E1E31A968CC3486CAC6EC35', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', chain_name: 'osmosis' }, chain: { @@ -6964,44 +7072,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' } ] }, { - description: 'The native token of Konstellation Network', + description: 'Native token of the Lum Network', denom_units: [ { denom: - 'ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9', + 'ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25', exponent: 0, aliases: [ - 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' ] }, { - denom: 'darc', + denom: 'lum', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9', - name: 'Konstellation', - display: 'darc', - symbol: 'DARC', + base: 'ibc/9C927B26383CF52CD4F9037B2B6958D5F39DB5710EF383FD1409196741676F25', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', chain_name: 'osmosis' }, chain: { @@ -7010,44 +7118,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' } ] }, { - description: 'The native token of Umee', + description: 'The native token of Vidulum', denom_units: [ { denom: - 'ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839', + 'ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472', exponent: 0, aliases: [ - 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' ] }, { - denom: 'umee', + denom: 'vdl', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839', - name: 'Umee', - display: 'umee', - symbol: 'UMEE', + base: 'ibc/42C3CEB77A4F4B15DBA707C8A9D1816839D7F1A342D449C29B01214C267AA472', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', chain_name: 'osmosis' }, chain: { @@ -7056,44 +7164,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' } ] }, { - description: 'The native token of Gravity Bridge', + description: 'The native token of Desmos', denom_units: [ { denom: - 'ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E', + 'ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F', exponent: 0, aliases: [ - 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' ] }, { - denom: 'graviton', + denom: 'dsm', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E', - name: 'Gravity Bridge', - display: 'graviton', - symbol: 'GRAV', + base: 'ibc/795413A585B893903A7192DCE1E59DF4F345D480F6E98ECFF8949570B675282F', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', chain_name: 'osmosis' }, chain: { @@ -7102,44 +7210,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' } ] }, { - description: 'The native token of Decentr', + description: 'Native token of Dig Chain', denom_units: [ { denom: - 'ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5', + 'ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E', exponent: 0, aliases: [ - 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' ] }, { - denom: 'dec', + denom: 'dig', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5', - name: 'Decentr', - display: 'dec', - symbol: 'DEC', + base: 'ibc/A9B5FAB36DB39EC2BECD5CF14978E126B1E8CD0BA8F1BC86EBAB859387EB254E', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', chain_name: 'osmosis' }, chain: { @@ -7148,44 +7256,49 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'The native token cw20 for Marble DAO on Juno Chain', + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', denom_units: [ { denom: - 'ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC', + 'ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A', exponent: 0, aliases: [ - 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' ] }, { - denom: 'marble', - exponent: 3 + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC', - name: 'Marble', - display: 'marble', - symbol: 'MARBLE', + base: 'ibc/91AD07A94F5C5CB58EC560AC862E56358796F70E89F1E02807DC4639BBC32D3A', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', chain_name: 'osmosis' }, chain: { @@ -7194,45 +7307,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ] }, { - description: 'The native governance token of Carbon', + description: 'The native token of BandChain', denom_units: [ { denom: - 'ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79', + 'ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718', exponent: 0, aliases: [ - 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' ] }, { - denom: 'dswth', - exponent: 8, - aliases: ['SWTH'] + denom: 'band', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79', - name: 'Carbon', - display: 'dswth', - symbol: 'SWTH', + base: 'ibc/515500CF37650F476CE7F53C9B8A5478B9BFE9899D79613C9AB8BE72D2133718', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', chain_name: 'osmosis' }, chain: { @@ -7241,44 +7353,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' } ] }, { - description: 'The native token of Cerberus Chain', + description: 'The native token of Konstellation Network', denom_units: [ { denom: - 'ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7', + 'ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9', exponent: 0, aliases: [ - 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' ] }, { - denom: 'crbrus', + denom: 'darc', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7', - name: 'Cerberus', - display: 'crbrus', - symbol: 'CRBRUS', + base: 'ibc/FE759B68A2FDE4AD3E232DD017B8768333104C1162255CFB6A26FE4715BB0BE9', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', chain_name: 'osmosis' }, chain: { @@ -7287,45 +7399,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: 'The native staking and governance token of the Fetch Hub.', + description: 'The native token of Umee', denom_units: [ { denom: - 'ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA', + 'ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839', exponent: 0, aliases: [ - 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' ] }, { - denom: 'fet', - exponent: 18 + denom: 'umee', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA', - name: 'Fetch.ai', - display: 'fet', - symbol: 'FET', + base: 'ibc/EF895E2ACBA054DEE5FF947EC78B9F31978B35802748416E79F60432682DD839', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', chain_name: 'osmosis' }, chain: { @@ -7334,44 +7445,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' } ] }, { - description: 'The native token of Asset Mantle', + description: 'The native token of Gravity Bridge', denom_units: [ { denom: - 'ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7', + 'ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E', exponent: 0, aliases: [ - 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' ] }, { - denom: 'mntl', + denom: 'graviton', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7', - name: 'AssetMantle', - display: 'mntl', - symbol: 'MNTL', + base: 'ibc/ED03D37A003B5716EBC376806D27D0FCA8897BFAEB601A5D9AE965076D11119E', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', chain_name: 'osmosis' }, chain: { @@ -7380,44 +7491,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ] }, { - description: 'The native token cw20 for Neta on Juno Chain', + description: 'The native token of Decentr', denom_units: [ { denom: - 'ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61', + 'ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5', exponent: 0, aliases: [ - 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' ] }, { - denom: 'neta', + denom: 'dec', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61', - name: 'Neta', - display: 'neta', - symbol: 'NETA', + base: 'ibc/76D2EB3FBFED4979838C84B9F63156908BFCD4F38555D37ED4A6503F47E89DD5', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', chain_name: 'osmosis' }, chain: { @@ -7426,45 +7537,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' } ] }, { - description: - 'The INJ token is the native governance token for the Injective chain.', + description: 'The native token cw20 for Marble DAO on Juno Chain', denom_units: [ { denom: - 'ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233', + 'ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC', exponent: 0, aliases: [ - 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' ] }, { - denom: 'INJ', - exponent: 18 + denom: 'marble', + exponent: 3 } ], type_asset: 'ics20', - base: 'ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233', - name: 'Injective', - display: 'INJ', - symbol: 'INJ', - traces: [ - { + base: 'ibc/4346230289DEFD16CD5A6F3D951E4D47D306F061B820C3E9637E563CA133D6AC', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', chain_name: 'osmosis' }, chain: { @@ -7473,50 +7583,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' } ] }, { - description: 'The KRW stablecoin of Terra Classic.', + description: 'The native governance token of Carbon', denom_units: [ { denom: - 'ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5', + 'ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79', exponent: 0, aliases: [ - 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' ] }, { - denom: 'mkrw', - exponent: 3, - aliases: ['millikrw'] - }, - { - denom: 'krt', - exponent: 6, - aliases: ['krtc'] + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] } ], type_asset: 'ics20', - base: 'ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5', - name: 'TerraClassicKRW', - display: 'krt', - symbol: 'KRTC', + base: 'ibc/2AD06252FE7DED1CE1D2D021B30DDE24A274C2137B4132D5C2ADFCDAFEF43C79', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', chain_name: 'osmosis' }, chain: { @@ -7525,45 +7630,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' } ] }, { - description: - 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + description: 'The native token of Cerberus Chain', denom_units: [ { denom: - 'ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919', + 'ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7', exponent: 0, aliases: [ - 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' ] }, { - denom: 'tick', + denom: 'crbrus', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919', - name: 'Microtick', - display: 'tick', - symbol: 'TICK', + base: 'ibc/10FEEE0A8CC89834608B8586F1255FB0A0DEF0644142B3E6E2CB639A38F86BF7', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', chain_name: 'osmosis' }, chain: { @@ -7572,46 +7676,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' } ], keywords: ['osmosis_unstable'] }, { - description: - "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + description: 'The native staking and governance token of the Fetch Hub.', denom_units: [ { denom: - 'ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E', + 'ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA', exponent: 0, aliases: [ - 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' ] }, { - denom: 'ROWAN', + denom: 'fet', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E', - name: 'Sifchain', - display: 'ROWAN', - symbol: 'ROWAN', + base: 'ibc/C256F0A143B8C5FABAEB06CB53C7B72306945DE8DA390E787AE82B38C97692AA', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', chain_name: 'osmosis' }, chain: { @@ -7620,45 +7723,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: 'The native token of Shentu', + description: 'The native token of Asset Mantle', denom_units: [ { denom: - 'ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1', + 'ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7', exponent: 0, aliases: [ - 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' ] }, { - denom: 'ctk', + denom: 'mntl', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1', - name: 'Shentu', - display: 'ctk', - symbol: 'CTK', + base: 'ibc/0AFB3C0E6CAB652CFB7C852473173CAF9ED34274CCE374D51AE15F59853795E7', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', chain_name: 'osmosis' }, chain: { @@ -7667,45 +7769,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ] }, { - description: - 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + description: 'The native token cw20 for Neta on Juno Chain', denom_units: [ { denom: - 'ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23', + 'ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61', exponent: 0, aliases: [ - 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' ] }, { - denom: 'hope', + denom: 'neta', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23', - name: 'Hope Galaxy', - display: 'hope', - symbol: 'HOPE', + base: 'ibc/3045DDB61C58B1D939D38C3915AF4A93E09E37D736BA296D9CBF036CB7FDCA61', + name: 'Neta', + display: 'neta', + symbol: 'NETA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', chain_name: 'osmosis' }, chain: { @@ -7714,45 +7815,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' } ] }, { description: - 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + 'The INJ token is the native governance token for the Injective chain.', denom_units: [ { denom: - 'ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A', + 'ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233', exponent: 0, aliases: [ - 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' ] }, { - denom: 'rac', - exponent: 6 + denom: 'INJ', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A', - name: 'Racoon', - display: 'rac', - symbol: 'juno.RAC', + base: 'ibc/5EB41F525D882444935964F1B8093BEFA57BF3FB0B6E6B68AB72725896894233', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', chain_name: 'osmosis' }, chain: { @@ -7761,45 +7862,50 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ] }, { - description: - 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + description: 'The KRW stablecoin of Terra Classic.', denom_units: [ { denom: - 'ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957', + 'ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5', exponent: 0, aliases: [ - 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' ] }, { - denom: 'frax', - exponent: 18 + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] } ], type_asset: 'ics20', - base: 'ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957', - name: 'Frax', - display: 'frax', - symbol: 'FRAX', + base: 'ibc/9CDC08EB8E31B989774E36D10C589944F81684AC3162E0D2B0AF7AE153A31BE5', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', chain_name: 'osmosis' }, chain: { @@ -7808,42 +7914,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' } ] }, { - description: 'Gravity Bridge WBTC', + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', denom_units: [ { denom: - 'ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530', + 'ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919', exponent: 0, aliases: [ - 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' ] }, { - denom: 'gwbtc', - exponent: 8 + denom: 'tick', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530', - name: 'Wrapped Bitcoin (Gravity Bridge)', - display: 'gwbtc', - symbol: 'WBTC.grv', + base: 'ibc/C8CDE539DB7B96F730CB014E0247FB5A4269C0EE15FFB500F1C9D18C8E856919', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', chain_name: 'osmosis' }, chain: { @@ -7852,46 +7961,46 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'Gravity Bridge WETH', + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", denom_units: [ { denom: - 'ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04', + 'ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E', exponent: 0, aliases: [ - 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' ] }, { - denom: 'gweth', + denom: 'ROWAN', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04', - name: 'Ether (Gravity Bridge)', - display: 'gweth', - symbol: 'WETH.grv', + base: 'ibc/DE50391662A7DB127A8A8C224A3F0954EAD204FD28F92B58B01286E526A9BE1E', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', chain_name: 'osmosis' }, chain: { @@ -7900,45 +8009,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'Gravity Bridge USDC', + description: 'The native token of Shentu', denom_units: [ { denom: - 'ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264', + 'ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1', exponent: 0, aliases: [ - 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' ] }, { - denom: 'gusdc', + denom: 'ctk', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264', - name: 'USD Coin (Gravity Bridge)', - display: 'gusdc', - symbol: 'USDC.grv', + base: 'ibc/A54B0700A0902B81F34D04AC6FF04245B4A1440F9F2FB8B16F0739AAD46B83E1', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', chain_name: 'osmosis' }, chain: { @@ -7947,45 +8056,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' } ] }, { - description: 'Gravity Bridge DAI', + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', denom_units: [ { denom: - 'ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5', + 'ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23', exponent: 0, aliases: [ - 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' ] }, { - denom: 'gdai', - exponent: 18 + denom: 'hope', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5', - name: 'DAI Stablecoin (Gravity Bridge)', - display: 'gdai', - symbol: 'DAI.grv', + base: 'ibc/1A9D4C0B08BCBBE023C8F818295BEDE503CCF7F7813E4197F4B093E0F094CA23', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', chain_name: 'osmosis' }, chain: { @@ -7994,45 +8103,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' } ] }, { - description: 'Gravity Bridge USDT', + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', denom_units: [ { denom: - 'ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA', + 'ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A', exponent: 0, aliases: [ - 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' ] }, { - denom: 'gusdt', + denom: 'rac', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA', - name: 'Tether USD (Gravity Bridge)', - display: 'gusdt', - symbol: 'USDT.grv', + base: 'ibc/FB6AEB231EA3A91A4265AC42F51A28650CF407DF21C01DA713AC787109888E1A', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', chain_name: 'osmosis' }, chain: { @@ -8041,45 +8150,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' } ] }, { - description: 'The native token of Marble DEX on Juno Chain', + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', denom_units: [ { denom: - 'ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07', + 'ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957', exponent: 0, aliases: [ - 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' ] }, { - denom: 'block', - exponent: 6 + denom: 'frax', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07', - name: 'Block', - display: 'block', - symbol: 'BLOCK', + base: 'ibc/B7B3AC3F2FC60872EF0629F8C62FFE13711A3B0BAA09BAA6C2B2FF5646AAC957', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', chain_name: 'osmosis' }, chain: { @@ -8088,44 +8197,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' } ] }, { - description: 'Hash is the staking token of the Provenance Blockchain', + description: 'Gravity Bridge WBTC', denom_units: [ { denom: - 'ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028', + 'ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530', exponent: 0, aliases: [ - 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' ] }, { - denom: 'hash', - exponent: 9 + denom: 'gwbtc', + exponent: 8 } ], type_asset: 'ics20', - base: 'ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028', - name: 'Provenance', - display: 'hash', - symbol: 'HASH', + base: 'ibc/E87FB22959FF076873006383196DCAFCD02695B7B74040B1D21D7E4431ECA530', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', chain_name: 'osmosis' }, chain: { @@ -8134,44 +8241,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' } ] }, { - description: 'GLX is the staking token of the Galaxy Chain', + description: 'Gravity Bridge WETH', denom_units: [ { denom: - 'ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317', + 'ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04', exponent: 0, aliases: [ - 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' ] }, { - denom: 'glx', - exponent: 6 + denom: 'gweth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317', - name: 'Galaxy', - display: 'glx', - symbol: 'GLX', + base: 'ibc/F89325FFC1A0629271AFA5EAE826894C1078D275D57F1D6D48CE5579C45CEA04', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', chain_name: 'osmosis' }, chain: { @@ -8180,40 +8289,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' } ] }, { - description: 'The DAO token to build consensus among Hong Kong People', + description: 'Gravity Bridge USDC', denom_units: [ { denom: - 'ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73', + 'ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264', exponent: 0, aliases: [ - 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' ] + }, + { + denom: 'gusdc', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73', - name: 'DHK', - display: 'dhk', - symbol: 'DHK', + base: 'ibc/25297CD9A18F67ADB4CA161EE7B2E49A56886213095B36F4A11A1489352A3264', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', chain_name: 'osmosis' }, chain: { @@ -8222,44 +8336,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' } ] }, { - description: 'Token governance for Junoswap', + description: 'Gravity Bridge DAI', denom_units: [ { denom: - 'ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13', + 'ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5', exponent: 0, aliases: [ - 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' ] }, { - denom: 'raw', - exponent: 6 + denom: 'gdai', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13', - name: 'JunoSwap', - display: 'raw', - symbol: 'RAW', + base: 'ibc/61ACA1155D12C865C7399E8525FFE14FB9FAF543FFC859F18D4F8500CDFB26E5', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', chain_name: 'osmosis' }, chain: { @@ -8268,45 +8383,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' } ] }, { - description: - 'MEME Token (MEME) is the native staking token of the MEME Chain', + description: 'Gravity Bridge USDT', denom_units: [ { denom: - 'ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320', + 'ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA', exponent: 0, aliases: [ - 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' ] }, { - denom: 'meme', + denom: 'gusdt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320', - name: 'MEME', - display: 'meme', - symbol: 'MEME', + base: 'ibc/19E7E3DC1A5B19DE1026EE870D0FF974B130FE73AD389C595A768BAFED8570FA', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', chain_name: 'osmosis' }, chain: { @@ -8315,45 +8430,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' } ] }, { - description: - 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + description: 'The native token of Marble DEX on Juno Chain', denom_units: [ { denom: - 'ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26', + 'ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07', exponent: 0, aliases: [ - 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' ] }, { - denom: 'asvt', + denom: 'block', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26', - name: 'Another.Software Validator Token', - display: 'asvt', - symbol: 'ASVT', + base: 'ibc/9DB09F88979E9A91F2CC587939E585159200934FA92CA7196C0F17DC13FEFF07', + name: 'Block', + display: 'block', + symbol: 'BLOCK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', chain_name: 'osmosis' }, chain: { @@ -8362,42 +8477,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' } ] }, { - description: 'DAO dedicated to building tools on the Juno Network', + description: 'Hash is the staking token of the Provenance Blockchain', denom_units: [ { denom: - 'ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390', + 'ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028', exponent: 0, aliases: [ - 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' ] }, { - denom: 'joe', - exponent: 6 + denom: 'hash', + exponent: 9 } ], type_asset: 'ics20', - base: 'ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390', - name: 'JoeDAO', - display: 'joe', - symbol: 'JOE', + base: 'ibc/0066CE67CB96FF8B2D01E3318216419EC7540A0AC878D85FE9EC5CC5C3414028', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', chain_name: 'osmosis' }, chain: { @@ -8406,42 +8523,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' } ] }, { - description: 'The native staking token of Terra.', + description: 'GLX is the staking token of the Galaxy Chain', denom_units: [ { denom: - 'ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414', + 'ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317', exponent: 0, aliases: [ - 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' ] }, { - denom: 'luna', + denom: 'glx', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414', - name: 'Luna', - display: 'luna', - symbol: 'LUNA', + base: 'ibc/4F912EAF60A779C82A183305BEE2F7CF6F17CD3EEC7E61C503ED18B4BB360317', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', chain_name: 'osmosis' }, chain: { @@ -8450,44 +8569,40 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' } ] }, { - description: 'Native token of Rizon Chain', + description: 'The DAO token to build consensus among Hong Kong People', denom_units: [ { denom: - 'ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E', + 'ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73', exponent: 0, aliases: [ - 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' ] - }, - { - denom: 'atolo', - exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E', - name: 'Rizon', - display: 'atolo', - symbol: 'ATOLO', + base: 'ibc/FC0ABA4C3A423FF0970FF952A91A3299CE9FD8CC871FB880B809D63E36371E73', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', chain_name: 'osmosis' }, chain: { @@ -8496,44 +8611,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' } ] }, { - description: 'Governance token of Kava Lend Protocol', + description: 'Token governance for Junoswap', denom_units: [ { denom: - 'ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00', + 'ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13', exponent: 0, aliases: [ - 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' ] }, { - denom: 'HARD', + denom: 'raw', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00', - name: 'Kava Hard', - display: 'HARD', - symbol: 'HARD', + base: 'ibc/58DA34A082A02613C409226F76AE07C0C69EDD9F3DB351C34196D23C3105DB13', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', chain_name: 'osmosis' }, chain: { @@ -8542,44 +8657,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' } ] }, { - description: 'Governance token of Kava Swap Protocol', + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', denom_units: [ { denom: - 'ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7', + 'ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320', exponent: 0, aliases: [ - 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' ] }, { - denom: 'SWP', + denom: 'meme', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7', - name: 'Kava Swap', - display: 'SWP', - symbol: 'SWP', + base: 'ibc/9589F00EDB1EDE21EBBBD8E1F8744A4146BB0D481AF22D217FDF8C9AD2918320', + name: 'MEME', + display: 'meme', + symbol: 'MEME', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', chain_name: 'osmosis' }, chain: { @@ -8588,45 +8704,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' } ] }, { description: - 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', denom_units: [ { denom: - 'ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C', + 'ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26', exponent: 0, aliases: [ - 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' ] }, { - denom: 'link', - exponent: 18 + denom: 'asvt', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C', - name: 'Chainlink', - display: 'link', - symbol: 'LINK', + base: 'ibc/0D7EC64E8363FD7FFC5B88EA82053E37B49864A8127222969E6A54B1C3771E26', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', chain_name: 'osmosis' }, chain: { @@ -8635,45 +8751,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' } ] }, { - description: - 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + description: 'DAO dedicated to building tools on the Juno Network', denom_units: [ { denom: - 'ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1', + 'ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390', exponent: 0, aliases: [ - 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' ] }, { - denom: 'l1', - exponent: 18 + denom: 'joe', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1', - name: 'GenesisL1', - display: 'l1', - symbol: 'L1', + base: 'ibc/43B3E5F14A7116D7F6B99700FD63AD69E845472542D010B3749F741156318390', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', chain_name: 'osmosis' }, chain: { @@ -8682,46 +8795,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: - 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + description: 'The native staking token of Terra.', denom_units: [ { denom: - 'ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD', + 'ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414', exponent: 0, aliases: [ - 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' ] }, { - denom: 'aave', - exponent: 18 - } + denom: 'luna', + exponent: 6 + } ], type_asset: 'ics20', - base: 'ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD', - name: 'Aave', - display: 'aave', - symbol: 'AAVE', + base: 'ibc/5DECDFC34241EA56B3ED9EAF5F75C1508A71FE3EB837EDB6FDEE2B316AF2A414', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', chain_name: 'osmosis' }, chain: { @@ -8730,44 +8839,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } - ], - keywords: ['osmosis_unlisted'] + ] }, { - description: - 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + description: 'Native token of Rizon Chain', denom_units: [ { denom: - 'ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5', + 'ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E', exponent: 0, aliases: [ - 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' ] }, { - denom: 'ape', - exponent: 18 + denom: 'atolo', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5', - name: 'ApeCoin', - display: 'ape', - symbol: 'APE', + base: 'ibc/2369BB1180BA1741BAE000ADF99E6C7EC7BC689AB88014474F8178840536040E', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', chain_name: 'osmosis' }, chain: { @@ -8776,44 +8885,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' } - ], - keywords: ['osmosis_unlisted'] + ] }, { - description: - 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + description: 'Governance token of Kava Lend Protocol', denom_units: [ { denom: - 'ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0', + 'ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00', exponent: 0, aliases: [ - 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' ] }, { - denom: 'mkr', - exponent: 18 + denom: 'HARD', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0', - name: 'Maker', - display: 'mkr', - symbol: 'MKR', + base: 'ibc/94D9FE31B97ACA16287EA0300F3F75A1ABC68D43B93CA8001B32C6D032115E00', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', chain_name: 'osmosis' }, chain: { @@ -8822,43 +8931,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' } ] }, { - description: - "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + description: 'Governance token of Kava Swap Protocol', denom_units: [ { denom: - 'ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD', + 'ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7', exponent: 0, aliases: [ - 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' ] }, { - denom: 'rai', - exponent: 18 + denom: 'SWP', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD', - name: 'Rai Reflex Index', - display: 'rai', - symbol: 'RAI', + base: 'ibc/906736448AB55ACD98BB51BA83CACF885F7B6437456C95CEB783A322E5D723C7', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', chain_name: 'osmosis' }, chain: { @@ -8867,44 +8977,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' } - ], - keywords: ['osmosis_unlisted'] + ] }, { description: - 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', denom_units: [ { denom: - 'ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B', + 'ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C', exponent: 0, aliases: [ - 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' ] }, { - denom: 'shib', + denom: 'link', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B', - name: 'Shiba Inu', - display: 'shib', - symbol: 'SHIB', + base: 'ibc/50BF7446F446E6D6E2CA8CED637C4189AB3EA0FC5A9A001FB37B6477AC6AA90C', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', chain_name: 'osmosis' }, chain: { @@ -8913,44 +9024,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' } - ], - keywords: ['osmosis_unlisted'] + ] }, { description: - 'The native staking and governance token of the Kujira chain.', + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', denom_units: [ { denom: - 'ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87', + 'ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1', exponent: 0, aliases: [ - 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' ] }, { - denom: 'kuji', - exponent: 6 + denom: 'l1', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87', - name: 'Kujira', - display: 'kuji', - symbol: 'KUJI', + base: 'ibc/A3BCC1F10CC5F8B2B3150B943A8C3068160912E7CA372A3215C692F0AE7B27E1', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', chain_name: 'osmosis' }, chain: { @@ -8959,44 +9071,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'The native token of Tgrade', + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', denom_units: [ { denom: - 'ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF', + 'ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD', exponent: 0, aliases: [ - 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' ] }, { - denom: 'tgd', - exponent: 6 + denom: 'aave', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF', - name: 'Tgrade', - display: 'tgd', - symbol: 'TGD', + base: 'ibc/FC757F57FBFF71422AD8A09B052B43B50F95667B36C7F4DA41A109F4A96FE6CD', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', chain_name: 'osmosis' }, chain: { @@ -9005,45 +9119,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' } - ] + ], + keywords: ['osmosis_unlisted'] }, { description: - 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', denom_units: [ { denom: - 'ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00', + 'ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5', exponent: 0, aliases: [ - 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' ] }, { - denom: 'echelon', + denom: 'ape', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00', - name: 'Echelon', - display: 'echelon', - symbol: 'ECH', + base: 'ibc/BB278A8E86007DBF7C75B730055273E485AF8CEFC42DFBE3B9F58DEF312DD2A5', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', chain_name: 'osmosis' }, chain: { @@ -9052,42 +9165,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' } - ] + ], + keywords: ['osmosis_unlisted'] }, { - description: 'Staking and governance token for ODIN Protocol', + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', denom_units: [ { denom: - 'ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11', + 'ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0', exponent: 0, aliases: [ - 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' ] }, { - denom: 'odin', - exponent: 6 + denom: 'mkr', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11', - name: 'Odin Protocol', - display: 'odin', - symbol: 'ODIN', + base: 'ibc/762546A5BA4B55CDEDF57830C18FCAB013F851E1A847B2A4C70CD2EADC5006A0', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', chain_name: 'osmosis' }, chain: { @@ -9096,45 +9211,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: 'GEO token for ODIN Protocol', + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", denom_units: [ { denom: - 'ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558', + 'ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD', exponent: 0, aliases: [ - 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' ] }, { - denom: 'geo', - exponent: 6 + denom: 'rai', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558', - name: 'GEO', - display: 'geo', - symbol: 'GEO', + base: 'ibc/1EF224E17A3716A5AB0DED577C7A0B3F0BEFECADCCBE8BE5E8D6E903DCA509CD', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', chain_name: 'osmosis' }, chain: { @@ -9143,45 +9256,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' } ], - keywords: ['osmosis_unstable'] + keywords: ['osmosis_unlisted'] }, { - description: 'O9W token for ODIN Protocol', + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', denom_units: [ { denom: - 'ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE', + 'ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B', exponent: 0, aliases: [ - 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' ] }, { - denom: 'O9W', - exponent: 6 + denom: 'shib', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE', - name: 'O9W', - display: 'O9W', - symbol: 'O9W', + base: 'ibc/2096D9D7C1D1C00DBE2348A271CC2798A26BAEEB116B3DED1B86EA5C426B532B', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', chain_name: 'osmosis' }, chain: { @@ -9190,45 +9302,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' } ], - keywords: ['osmosis_unstable'] + keywords: ['osmosis_unlisted'] }, { - description: 'ELEVENPARIS loyalty token on KiChain', + description: + 'The native staking and governance token of the Kujira chain.', denom_units: [ { denom: - 'ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1', + 'ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87', exponent: 0, aliases: [ - 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' ] }, { - denom: 'lvn', + denom: 'kuji', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1', - name: 'LVN', - display: 'lvn', - symbol: 'kichain.LVN', + base: 'ibc/FA0C48C31182B770E74C35B6AECE91081518E81E2132C9E4D3E1B6415BC87A87', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', chain_name: 'osmosis' }, chain: { @@ -9237,43 +9348,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ] }, { - description: - 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + description: 'The native token of Tgrade', denom_units: [ { denom: - 'ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA', + 'ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF', exponent: 0, aliases: [ - 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' ] }, { - denom: 'wglmr', - exponent: 18 + denom: 'tgd', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA', - name: 'Moonbeam', - display: 'wglmr', - symbol: 'GLMR', + base: 'ibc/1DE887EE688B909B5A350D61258A8C74021F7A10FA0F1488F6B645295E29FAEF', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', chain_name: 'osmosis' }, chain: { @@ -9282,42 +9394,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' } ] }, { - description: 'DeFi gaming platform built on Juno', + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', denom_units: [ { denom: - 'ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF', + 'ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00', exponent: 0, aliases: [ - 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' ] }, { - denom: 'glto', - exponent: 6 + denom: 'echelon', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF', - name: 'Gelotto', - display: 'glto', - symbol: 'GLTO', + base: 'ibc/4EB9309DB3E6E49056D913BDD0AA8A9231FBC0BA157981D5BA8991FAB0099F00', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', chain_name: 'osmosis' }, chain: { @@ -9326,44 +9441,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' } ] }, { - description: 'Gelotto Year 1 Grand Prize Token', + description: 'Staking and governance token for ODIN Protocol', denom_units: [ { denom: - 'ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED', + 'ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11', exponent: 0, aliases: [ - 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' ] }, { - denom: 'gkey', + denom: 'odin', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED', - name: 'GKey', - display: 'gkey', - symbol: 'GKEY', + base: 'ibc/FBDEF94E9C4686EBD11588ED47C4C5E8A6E73A13F1C2B1C18AFEA2622A321A11', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', chain_name: 'osmosis' }, chain: { @@ -9372,44 +9485,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'The native token of Crescent', + description: 'GEO token for ODIN Protocol', denom_units: [ { denom: - 'ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7', + 'ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558', exponent: 0, aliases: [ - 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' ] }, { - denom: 'cre', + denom: 'geo', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7', - name: 'Crescent', - display: 'cre', - symbol: 'CRE', + base: 'ibc/09A0B1D225D6B9432FDF48341A88B5C7C52E234193C9EC14ACAAFFC8DE8E3558', + name: 'GEO', + display: 'geo', + symbol: 'GEO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', chain_name: 'osmosis' }, chain: { @@ -9418,44 +9532,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'The native token of LumenX Network', + description: 'O9W token for ODIN Protocol', denom_units: [ { denom: - 'ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A', + 'ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE', exponent: 0, aliases: [ - 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' ] }, { - denom: 'lumen', + denom: 'O9W', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A', - name: 'LumenX', - display: 'lumen', - symbol: 'LUMEN', + base: 'ibc/1C82E98C3CEF74D45DAFBE73587A8D723B77825679624D4593457FEE068391BE', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', chain_name: 'osmosis' }, chain: { @@ -9464,45 +9579,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } ], keywords: ['osmosis_unstable'] }, { - description: 'The native token of Oraichain', + description: 'ELEVENPARIS loyalty token on KiChain', denom_units: [ { denom: - 'ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78', + 'ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1', exponent: 0, aliases: [ - 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' ] }, { - denom: 'ORAI', + denom: 'lvn', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78', - name: 'Oraichain', - display: 'ORAI', - symbol: 'ORAI', + base: 'ibc/AA413E6D7FFAD973E23621A760DDCC67D421216C5168D6529A81AD4C087115E1', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', chain_name: 'osmosis' }, chain: { @@ -9511,44 +9626,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' } ] }, { - description: 'The native token of the Cudos blockchain', + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', denom_units: [ { denom: - 'ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68', + 'ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA', exponent: 0, aliases: [ - 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' ] }, { - denom: 'cudos', + denom: 'wglmr', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68', - name: 'Cudos', - display: 'cudos', - symbol: 'CUDOS', - traces: [ - { + base: 'ibc/90459FCF043CB877B72263F3D76352259AABBF7F21C83B1FD4BA0AD75C5251CA', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', chain_name: 'osmosis' }, chain: { @@ -9557,44 +9671,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' } ] }, { - description: 'The native stablecoin of Kava', + description: 'DeFi gaming platform built on Juno', denom_units: [ { denom: - 'ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0', + 'ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF', exponent: 0, aliases: [ - 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' ] }, { - denom: 'USDX', + denom: 'glto', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0', - name: 'Kava USDX', - display: 'USDX', - symbol: 'USDX', + base: 'ibc/AC73F27754080A061EDF0C39CA188C71AD4DFBD656D2B0DAAFD55F7AEEE548CF', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', chain_name: 'osmosis' }, chain: { @@ -9603,45 +9715,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' } ] }, { - description: - 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + description: 'Gelotto Year 1 Grand Prize Token', denom_units: [ { denom: - 'ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C', + 'ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED', exponent: 0, aliases: [ - 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' ] }, { - denom: 'bld', + denom: 'gkey', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C', - name: 'Agoric', - display: 'bld', - symbol: 'BLD', + base: 'ibc/6F0AEF5FD89D78B22F284507A82C7229EFEBD6F2DC36E2D02953FF1E266A00ED', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', chain_name: 'osmosis' }, chain: { @@ -9650,45 +9761,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' } ] }, { - description: - 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + description: 'The native token of Crescent', denom_units: [ { denom: - 'ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F', + 'ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7', exponent: 0, aliases: [ - 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' ] }, { - denom: 'ist', + denom: 'cre', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F', - name: 'Inter Stable Token', - display: 'ist', - symbol: 'IST', + base: 'ibc/06711A9E34E31064D6FA8B789A917F77C400B8094B4AC8DD65548347679687C7', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', chain_name: 'osmosis' }, chain: { @@ -9697,44 +9807,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' } ] }, { - description: 'Staking derivative seJUNO for staked JUNO', + description: 'The native token of LumenX Network', denom_units: [ { denom: - 'ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA', + 'ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A', exponent: 0, aliases: [ - 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' ] }, { - denom: 'sejuno', + denom: 'lumen', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA', - name: 'StakeEasy seJUNO', - display: 'sejuno', - symbol: 'SEJUNO', + base: 'ibc/98D6D70B78D13C11AD58B7051499BD4723918A6A578F1812BB4418E0DDA8B13A', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', chain_name: 'osmosis' }, chain: { @@ -9743,44 +9853,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'Staking derivative bJUNO for staked JUNO', + description: 'The native token of Oraichain', denom_units: [ { denom: - 'ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9', + 'ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78', exponent: 0, aliases: [ - 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' ] }, { - denom: 'bjuno', + denom: 'ORAI', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9', - name: 'StakeEasy bJUNO', - display: 'bjuno', - symbol: 'BJUNO', + base: 'ibc/8251CB6477FC3EB775581588A8B8C6E775D86E43AA4B4B3F44E547013A2B1F78', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', chain_name: 'osmosis' }, chain: { @@ -9789,44 +9900,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' } ] }, { - description: 'The native token of Stride', + description: 'The native token of the Cudos blockchain', denom_units: [ { denom: - 'ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A', + 'ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68', exponent: 0, aliases: [ - 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' ] }, { - denom: 'strd', - exponent: 6 + denom: 'cudos', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A', - name: 'Stride', - display: 'strd', - symbol: 'STRD', + base: 'ibc/625014171C35FA3FEFF7FD1588A7DF73A77F15F45DAAC1D39D5C1CDC14C6DC68', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', chain_name: 'osmosis' }, chain: { @@ -9835,47 +9946,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' }, images: [ { - image_sync: { - chain_name: 'stride', - base_denom: 'ustrd' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' } ] }, { + description: 'The native stablecoin of Kava', denom_units: [ { denom: - 'ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE', + 'ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0', exponent: 0, aliases: [ - 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' ] }, { - denom: 'statom', + denom: 'USDX', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE', - name: 'Stride Staked ATOM', - display: 'statom', - symbol: 'stATOM', + base: 'ibc/DEC6B621A7C01424BEA755708E5B5CF5B6FF7BBB57E6743E7A727879611A22A0', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', chain_name: 'osmosis' }, chain: { @@ -9884,47 +9992,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' }, images: [ { - image_sync: { - chain_name: 'stride', - base_denom: 'stuatom' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' } ] }, { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', denom_units: [ { denom: - 'ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98', + 'ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C', exponent: 0, aliases: [ - 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' ] }, { - denom: 'ststars', + denom: 'bld', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98', - name: 'Stride Staked STARS', - display: 'ststars', - symbol: 'stSTARS', + base: 'ibc/795CEDB1281B0BFC566CCF878A1663E89B0F013F1E335C5C5CCCF37F5FB7674C', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', chain_name: 'osmosis' }, chain: { @@ -9933,45 +10039,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ] }, { description: - 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', denom_units: [ { denom: - 'ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46', + 'ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F', exponent: 0, aliases: [ - 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' ] }, { - denom: 'solar', + denom: 'ist', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46', - name: 'Solarbank DAO', - display: 'solar', - symbol: 'SOLAR', + base: 'ibc/C60F327A6C16698BF425C7DE9B7E0F56A9A7E8B8986D749376A3208A4DC0370F', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', chain_name: 'osmosis' }, chain: { @@ -9980,44 +10086,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' } ] }, { - description: 'StakeEasy governance token', + description: 'Staking derivative seJUNO for staked JUNO', denom_units: [ { denom: - 'ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6', + 'ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA', exponent: 0, aliases: [ - 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' ] }, { - denom: 'seasy', + denom: 'sejuno', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6', - name: 'StakeEasy SEASY', - display: 'seasy', - symbol: 'SEASY', + base: 'ibc/275E3F4AD910A12BE78AF2F940D9FE91337260B1514169A295C668C9A6C33ECA', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', chain_name: 'osmosis' }, chain: { @@ -10026,44 +10132,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' } ] }, { - description: 'The native token of Axelar', + description: 'Staking derivative bJUNO for staked JUNO', denom_units: [ { denom: - 'ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B', + 'ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9', exponent: 0, aliases: [ - 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' ] }, { - denom: 'axl', + denom: 'bjuno', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B', - name: 'Axelar', - display: 'axl', - symbol: 'AXL', + base: 'ibc/0AAE218535F0AD655BEBA28D7370BCE7355E1710B8CFF7789BF44946C9E1DDD9', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', chain_name: 'osmosis' }, chain: { @@ -10072,44 +10178,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' } ] }, { - description: 'REBUS, the native coin of the Rebus chain.', + description: 'The native token of Stride', denom_units: [ { denom: - 'ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23', + 'ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A', exponent: 0, aliases: [ - 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' ] }, { - denom: 'rebus', - exponent: 18 + denom: 'strd', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23', - name: 'Rebus', - display: 'rebus', - symbol: 'REBUS', + base: 'ibc/7759393D3E279C246AB095A89002E005A77D0621A135EC16667E0DE1A5FBF11A', + name: 'Stride', + display: 'strd', + symbol: 'STRD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', chain_name: 'osmosis' }, chain: { @@ -10118,44 +10224,47 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ] }, { - description: 'The native token of Teritori', denom_units: [ { denom: - 'ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95', + 'ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE', exponent: 0, aliases: [ - 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' ] }, { - denom: 'tori', + denom: 'statom', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95', - name: 'Teritori', - display: 'tori', - symbol: 'TORI', + base: 'ibc/832211C8B733177241E36AD688CCBF38C9254598120B7FB54736B76DFEF91FEE', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', chain_name: 'osmosis' }, chain: { @@ -10164,17 +10273,17 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' }, images: [ { image_sync: { - chain_name: 'teritori', - base_denom: 'utori' + chain_name: 'stride', + base_denom: 'stuatom' }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' } ] }, @@ -10182,29 +10291,29 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885', + 'ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98', exponent: 0, aliases: [ - 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' ] }, { - denom: 'stjuno', + denom: 'ststars', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885', - name: 'Stride Staked JUNO', - display: 'stjuno', - symbol: 'stJUNO', + base: 'ibc/A52430FF0B1140915C060B460E07666F4B5A58E73691E25162EAF9A71DA99C98', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', chain_name: 'osmosis' }, chain: { @@ -10213,43 +10322,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' } ] }, { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', denom_units: [ { denom: - 'ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357', + 'ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46', exponent: 0, aliases: [ - 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' ] }, { - denom: 'stosmo', + denom: 'solar', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357', - name: 'Stride Staked OSMO', - display: 'stosmo', - symbol: 'stOSMO', + base: 'ibc/A76BE20DA62CD4FAB51E4E697B5B0518952358DE7BA1126E17927DE9B7B7DD46', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', chain_name: 'osmosis' }, chain: { @@ -10258,48 +10369,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' }, images: [ { - image_sync: { - chain_name: 'stride', - base_denom: 'stuosmo' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' } ] }, { - description: 'The native token cw20 for MuseDAO on Juno Chain', + description: 'StakeEasy governance token', denom_units: [ { denom: - 'ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699', + 'ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6', exponent: 0, aliases: [ - 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' ] }, { - denom: 'muse', + denom: 'seasy', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699', - name: 'MuseDAO', - display: 'muse', - symbol: 'MUSE', + base: 'ibc/105ACEF3E0C2EA6AE973DAF2ADBEED8E06B8D08B6C88048C725178E0F477C3B6', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', chain_name: 'osmosis' }, chain: { @@ -10308,42 +10415,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' } ] }, { - description: 'The native token of Lambda', + description: 'The native token of Axelar', denom_units: [ { denom: - 'ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4', + 'ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B', exponent: 0, aliases: [ - 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' ] }, { - denom: 'lamb', - exponent: 18 + denom: 'axl', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4', - name: 'Lambda', - display: 'lamb', - symbol: 'LAMB', + base: 'ibc/2301E7B51107A50919FF3133B928F63F749FDD35D95D4751E8951CD004CB709B', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', chain_name: 'osmosis' }, chain: { @@ -10352,45 +10461,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ] }, { - description: - 'The native over-collateralized stablecoin from the Kujira chain.', + description: 'REBUS, the native coin of the Rebus chain.', denom_units: [ { denom: - 'ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E', + 'ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23', exponent: 0, aliases: [ - 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' ] }, { - denom: 'usk', - exponent: 6 + denom: 'rebus', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E', - name: 'USK', - display: 'usk', - symbol: 'USK', + base: 'ibc/007807ECC2EA3E4BA5FA262EAEEC5E787CA94EC25912D55AA804447F01C5FB23', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', chain_name: 'osmosis' }, chain: { @@ -10399,44 +10507,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' } ] }, { - description: 'Staking and governance coin for the Unification Blockchain', + description: 'The native token of Teritori', denom_units: [ { denom: - 'ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400', + 'ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95', exponent: 0, aliases: [ - 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' ] }, { - denom: 'FUND', - exponent: 9 + denom: 'tori', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400', - name: 'Unification', - display: 'FUND', - symbol: 'FUND', + base: 'ibc/9F018572DBDB095BEBAE9B83615FDD3CC5A69BA373A607590ED4770A7479AE95', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', chain_name: 'osmosis' }, chain: { @@ -10445,44 +10553,47 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' } ] }, { - description: 'The native staking and governance token of Jackal.', denom_units: [ { denom: - 'ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4', + 'ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885', exponent: 0, aliases: [ - 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' ] }, { - denom: 'jkl', + denom: 'stjuno', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4', - name: 'Jackal', - display: 'jkl', - symbol: 'JKL', + base: 'ibc/0CEAB5BA46B9BFF01EE955AAE83A8CF972D8D5B1152A879724927A24BAB30885', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', chain_name: 'osmosis' }, chain: { @@ -10491,44 +10602,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' } ] }, { - description: 'The native token cw20 for Alter on Secret Network', denom_units: [ { denom: - 'ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6', + 'ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357', exponent: 0, aliases: [ - 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' ] }, { - denom: 'alter', + denom: 'stosmo', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6', - name: 'Alter', - display: 'alter', - symbol: 'ALTER', + base: 'ibc/994045F6FA3BDBEADB44673B363CC1962870C73274DF7BFDA3D67C1A31B92357', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', chain_name: 'osmosis' }, chain: { @@ -10537,44 +10647,48 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' } ] }, { - description: 'The native token cw20 for Button on Secret Network', + description: 'The native token cw20 for MuseDAO on Juno Chain', denom_units: [ { denom: - 'ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC', + 'ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699', exponent: 0, aliases: [ - 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' ] }, { - denom: 'butt', + denom: 'muse', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC', - name: 'Button', - display: 'butt', - symbol: 'BUTT', + base: 'ibc/319EDA83E270E8CE421FBAF3707351A3723D26B92BEF475BC32EEB0D96DDC699', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', chain_name: 'osmosis' }, chain: { @@ -10583,44 +10697,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' } ] }, { - description: 'The native token cw20 for Shade on Secret Network', + description: 'The native token of Lambda', denom_units: [ { denom: - 'ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC', + 'ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4', exponent: 0, aliases: [ - 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' ] }, { - denom: 'shd', - exponent: 8 + denom: 'lamb', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC', - name: 'Shade (old)', - display: 'shd', - symbol: 'SHD(old)', + base: 'ibc/707ACED18F09299C9CF065161E818618CCB05B8FB38E5F05FAFAF13B225515C4', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', chain_name: 'osmosis' }, chain: { @@ -10629,42 +10741,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' } ] }, { - description: 'The native token cw20 for SIENNA on Secret Network', + description: + 'The native over-collateralized stablecoin from the Kujira chain.', denom_units: [ { denom: - 'ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA', + 'ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E', exponent: 0, aliases: [ - 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' ] }, { - denom: 'sienna', - exponent: 18 + denom: 'usk', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA', - name: 'SIENNA', - display: 'sienna', - symbol: 'SIENNA', + base: 'ibc/2C2EAD2258466EB47BEDAA88E23EB12FBD5ED46ABFAABEA508118A88C4DBD95E', + name: 'USK', + display: 'usk', + symbol: 'USK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', chain_name: 'osmosis' }, chain: { @@ -10673,45 +10788,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' } ] }, { - description: - 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + description: 'Staking and governance coin for the Unification Blockchain', denom_units: [ { denom: - 'ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B', + 'ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400', exponent: 0, aliases: [ - 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' ] }, { - denom: 'stkd-scrt', - exponent: 6 + denom: 'FUND', + exponent: 9 } ], type_asset: 'ics20', - base: 'ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B', - name: 'SCRT Staking Derivatives', - display: 'stkd-scrt', - symbol: 'stkd-SCRT', + base: 'ibc/1949E41FB7D7A41E926241FAA2BD8E38EAE46BE2C1CAA9C77186DB327CF39400', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', chain_name: 'osmosis' }, chain: { @@ -10720,44 +10834,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' } ] }, { - description: 'BeeZee native blockchain', + description: 'The native staking and governance token of Jackal.', denom_units: [ { denom: - 'ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531', + 'ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4', exponent: 0, aliases: [ - 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' ] }, { - denom: 'bze', + denom: 'jkl', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531', - name: 'BeeZee', - display: 'bze', - symbol: 'BZE', + base: 'ibc/7A175157C925B983460D113AE6BDDCF2DF92CC2BF3A898178825B33D39D80DE4', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', chain_name: 'osmosis' }, chain: { @@ -10766,44 +10880,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' } ] }, { - description: 'The native token cw20 for Fanfury on Juno Chain', + description: 'The native token cw20 for Alter on Secret Network', denom_units: [ { denom: - 'ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14', + 'ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6', exponent: 0, aliases: [ - 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' ] }, { - denom: 'fury', + denom: 'alter', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14', - name: 'Fanfury', - display: 'fury', - symbol: 'FURY', + base: 'ibc/291A9F553CF889DC37206A8DFB9431CA5310C06E75E9388985C6C8BE4EA4BDF6', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', chain_name: 'osmosis' }, chain: { @@ -10812,43 +10926,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' } ] }, { - description: - 'The native EVM, governance and staking token of the Acrechain', + description: 'The native token cw20 for Button on Secret Network', denom_units: [ { denom: - 'ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D', + 'ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC', exponent: 0, aliases: [ - 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' ] }, { - denom: 'acre', - exponent: 18 + denom: 'butt', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D', - name: 'Acrechain', - display: 'acre', - symbol: 'ACRE', + base: 'ibc/C1EEF14123EA5D727B13B28147951142CF6E85224B3108984751EB5059BE77BC', + name: 'Button', + display: 'butt', + symbol: 'BUTT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', chain_name: 'osmosis' }, chain: { @@ -10857,44 +10972,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' } ] }, { - description: 'Stable Token of Harbor protocol on Comdex network', + description: 'The native token cw20 for Shade on Secret Network', denom_units: [ { denom: - 'ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A', + 'ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC', exponent: 0, aliases: [ - 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' ] }, { - denom: 'cmst', - exponent: 6 + denom: 'shd', + exponent: 8 } ], type_asset: 'ics20', - base: 'ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A', - name: 'CMST', - display: 'cmst', - symbol: 'CMST', + base: 'ibc/0305A3E584DC61D489A9AA3CCB116053EA8DB07C503B03429DACDFEE7BC551AC', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', chain_name: 'osmosis' }, chain: { @@ -10903,45 +11018,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' } ] }, { - description: - 'The native EVM, governance and staking token of the Imversed', + description: 'The native token cw20 for SIENNA on Secret Network', denom_units: [ { denom: - 'ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381', + 'ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA', exponent: 0, aliases: [ - 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' ] }, { - denom: 'imv', + denom: 'sienna', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381', - name: 'Imversed', - display: 'imv', - symbol: 'IMV', + base: 'ibc/279F377D443CDE27EF399241914376E9C41287D493CB6C04A17693888A4EFBFA', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', chain_name: 'osmosis' }, chain: { @@ -10950,44 +11062,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' } ] }, { - description: 'The native token of Medas Digital Network', + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', denom_units: [ { denom: - 'ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC', + 'ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B', exponent: 0, aliases: [ - 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' ] }, { - denom: 'medas', + denom: 'stkd-scrt', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC', - name: 'Medas Digital Network', - display: 'medas', - symbol: 'MEDAS', + base: 'ibc/757B6BBEAD0B351B388D2B327FFFB35E93466497701A919D05E003443044EA9B', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', chain_name: 'osmosis' }, chain: { @@ -10996,45 +11109,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' } - ], - keywords: ['medas'] + ] }, { - description: 'The native token cw20 for PHMN on Juno Chain', + description: 'BeeZee native blockchain', denom_units: [ { denom: - 'ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89', + 'ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531', exponent: 0, aliases: [ - 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' ] }, { - denom: 'phmn', + denom: 'bze', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89', - name: 'POSTHUMAN', - display: 'phmn', - symbol: 'PHMN', + base: 'ibc/74286AA16BFC27454F58FF0BACF2717667987E0B7E5FC5B4391DDAA5F09AD531', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', chain_name: 'osmosis' }, chain: { @@ -11043,44 +11155,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' } ] }, { - description: 'The native token cw20 for Amber on Secret Network', + description: 'The native token cw20 for Fanfury on Juno Chain', denom_units: [ { denom: - 'ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211', + 'ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14', exponent: 0, aliases: [ - 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' ] }, { - denom: 'amber', + denom: 'fury', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211', - name: 'Amber', - display: 'amber', - symbol: 'AMBER', + base: 'ibc/1B9DA51FE083F2DF7064B6E46E144FE04D4FEAF164561425ADDEE014EC185B14', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', chain_name: 'osmosis' }, chain: { @@ -11089,44 +11201,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' } ] }, { - description: 'The native token of Onomy Protocol', + description: + 'The native EVM, governance and staking token of the Acrechain', denom_units: [ { denom: - 'ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A', + 'ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D', exponent: 0, aliases: [ - 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' ] }, { - denom: 'nom', + denom: 'acre', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A', - name: 'Onomy', - display: 'nom', - symbol: 'NOM', + base: 'ibc/9734C8F0F5CB657436994692EC3A5CEAC546D2A9F0AEF537396B3E067AE8029D', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', chain_name: 'osmosis' }, chain: { @@ -11135,46 +11246,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' } - ], - keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + ] }, { - description: 'PSTAKE Liquid-Staked ATOM', + description: 'Stable Token of Harbor protocol on Comdex network', denom_units: [ { denom: - 'ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A', + 'ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A', exponent: 0, aliases: [ - 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' ] }, { - denom: 'stkatom', - exponent: 6, - aliases: ['stk/atom'] + denom: 'cmst', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A', - name: 'PSTAKE staked ATOM', - display: 'stkatom', - symbol: 'stkATOM', + base: 'ibc/4D2A416917E85275BFAB2C7AC6CB5AFBC8246E84E727B06E4674664686A60B1A', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', chain_name: 'osmosis' }, chain: { @@ -11183,46 +11292,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' }, images: [ { - image_sync: { - chain_name: 'persistence', - base_denom: 'stk/uatom' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' } ] }, { description: - 'The native staking and governance token of the Dyson Protocol', + 'The native EVM, governance and staking token of the Imversed', denom_units: [ { denom: - 'ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877', + 'ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381', exponent: 0, aliases: [ - 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' ] + }, + { + denom: 'imv', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877', - name: 'Dyson Protocol', - display: - 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', - symbol: 'DYS', + base: 'ibc/4AE98B02FB3C1426AD353C9D59870A5FC53EE1D0BA96FDD36A7067471245A381', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', chain_name: 'osmosis' }, chain: { @@ -11231,44 +11339,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' } ] }, { - description: 'The native token cw20 for Hopers on Juno Chain', + description: 'The native token of Medas Digital Network', denom_units: [ { denom: - 'ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590', + 'ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC', exponent: 0, aliases: [ - 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' ] }, { - denom: 'hopers', + denom: 'medas', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590', - name: 'Hopers', - display: 'hopers', - symbol: 'HOPERS', + base: 'ibc/FC7FD1D00EA8AE8C1666A30D794338EAD947534CE9EBB9E33D3BEC9DB621F7FC', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', chain_name: 'osmosis' }, chain: { @@ -11277,44 +11385,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' } - ] + ], + keywords: ['medas'] }, { - description: 'Overcollateralized stable coin for Arable derivatives v1', + description: 'The native token cw20 for PHMN on Juno Chain', denom_units: [ { denom: - 'ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8', + 'ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89', exponent: 0, aliases: [ - 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' ] }, { - denom: 'arusd', - exponent: 18 + denom: 'phmn', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8', - name: 'Arable USD', - display: 'arusd', - symbol: 'arUSD', + base: 'ibc/49996DA861F3DD3467579C3FC82BF6996A13A0314FBEF3805A78D976B8EB6C89', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', chain_name: 'osmosis' }, chain: { @@ -11323,45 +11432,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' } ] }, { - description: - 'The native EVM, governance and staking token of the Planq Network', + description: 'The native token cw20 for Amber on Secret Network', denom_units: [ { denom: - 'ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F', + 'ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211', exponent: 0, aliases: [ - 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' ] }, { - denom: 'planq', - exponent: 18 + denom: 'amber', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F', - name: 'Planq', - display: 'planq', - symbol: 'PLQ', + base: 'ibc/59C48491759D7E7D3230429FF2E72CBCC759B55A40D2D998A3BEE0945EE1C211', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', chain_name: 'osmosis' }, chain: { @@ -11370,45 +11478,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' } ] }, { - description: - "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + description: 'The native token of Onomy Protocol', denom_units: [ { denom: - 'ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD', + 'ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A', exponent: 0, aliases: [ - 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' ] }, { - denom: 'ftm', + denom: 'nom', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD', - name: 'Fantom', - display: 'ftm', - symbol: 'FTM', + base: 'ibc/DBC27912C80B5F80B52881EB4BD6E913E24DC1783475B6D2136928575C55858A', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', chain_name: 'osmosis' }, chain: { @@ -11417,45 +11524,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' } - ] + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] }, { - description: - 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + description: 'PSTAKE Liquid-Staked ATOM', denom_units: [ { denom: - 'ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214', + 'ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A', exponent: 0, aliases: [ - 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' ] }, { - denom: 'canto', - exponent: 18 + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] } ], type_asset: 'ics20', - base: 'ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214', - name: 'Canto', - display: 'canto', - symbol: 'CANTO', + base: 'ibc/4DAABA7D187F4C5189949BBB58D4E625C9A5BC0E60242710614599B017724B9A', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', chain_name: 'osmosis' }, chain: { @@ -11464,45 +11572,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' } ] }, { - description: 'Quicksilver Liquid Staked STARS', + description: + 'The native staking and governance token of the Dyson Protocol', denom_units: [ { denom: - 'ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1', + 'ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877', exponent: 0, aliases: [ - 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' ] - }, - { - denom: 'qstars', - exponent: 6, - aliases: [] } ], type_asset: 'ics20', - base: 'ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1', - name: 'Quicksilver Liquid Staked STARS', - display: 'qstars', - symbol: 'qSTARS', + base: 'ibc/62DE8FA8FBD546DFB7BB21A8904665308D37B17DDD10145F6E67FB25BFF18877', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', chain_name: 'osmosis' }, chain: { @@ -11511,44 +11620,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' } ] }, { - description: 'WYND DAO Governance Token', + description: 'The native token cw20 for Hopers on Juno Chain', denom_units: [ { denom: - 'ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463', + 'ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590', exponent: 0, aliases: [ - 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' ] }, { - denom: 'wynd', + denom: 'hopers', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463', - name: 'Wynd DAO Governance Token', - display: 'wynd', - symbol: 'WYND', + base: 'ibc/CC37C57446D17C78093941BD6E18FED708024AFA6FD8E43D0DE0347F417B4590', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', chain_name: 'osmosis' }, chain: { @@ -11557,45 +11666,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' } ] }, { - description: - 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + description: 'Overcollateralized stable coin for Arable derivatives v1', denom_units: [ { denom: - 'ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766', + 'ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8', exponent: 0, aliases: [ - 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' ] }, { - denom: 'polygon-usdc', - exponent: 6 + denom: 'arusd', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766', - name: 'USD Coin (Polygon)', - display: 'polygon-usdc', - symbol: 'polygon.USDC', + base: 'ibc/A07D3C2E503B64A35A5BEAA8A72BECD6CFFEDE5340BC398B1D083A5B1AB463E8', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', chain_name: 'osmosis' }, chain: { @@ -11604,46 +11712,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' } ] }, { description: - 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + 'The native EVM, governance and staking token of the Planq Network', denom_units: [ { denom: - 'ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3', + 'ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F', exponent: 0, aliases: [ - 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' ] }, { - denom: 'avalanche-usdc', - exponent: 6 + denom: 'planq', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3', - name: 'USD Coin (Avalanche)', - display: 'avalanche-usdc', - symbol: 'avalanche.USDC', + base: 'ibc/8334F998DD3394B394316228165BD81BA7130CB38F8D90AA0B9D6C0D3E220B6F', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', chain_name: 'osmosis' }, chain: { @@ -11652,45 +11759,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' } ] }, { - description: 'Mars protocol token', + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", denom_units: [ { denom: - 'ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172', + 'ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD', exponent: 0, aliases: [ - 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' ] }, { - denom: 'mars', - exponent: 6 + denom: 'ftm', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172', - name: 'Mars Hub', - display: 'mars', - symbol: 'MARS', + base: 'ibc/3C6A0C38F7C6DE86051DC3729843BBF48E62CE86A264B6DC4BB3EB0552CBD9BD', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', chain_name: 'osmosis' }, chain: { @@ -11699,44 +11806,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' } ] }, { - description: 'Ciento Exchange Token', + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', denom_units: [ { denom: - 'ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819', + 'ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214', exponent: 0, aliases: [ - 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' ] }, { - denom: 'cnto', + denom: 'canto', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819', - name: 'Ciento Token', - display: 'cnto', - symbol: 'CNTO', + base: 'ibc/613BEFFD8D0C285A1FC3E11FCDB826463793515F0A9C90E446ABE62D6A159214', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', chain_name: 'osmosis' }, chain: { @@ -11745,43 +11853,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' } ] }, { + description: 'Quicksilver Liquid Staked STARS', denom_units: [ { denom: - 'ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49', + 'ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1', exponent: 0, aliases: [ - 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' ] }, { - denom: 'stluna', - exponent: 6 + denom: 'qstars', + exponent: 6, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49', - name: 'Stride Staked LUNA', - display: 'stluna', - symbol: 'stLUNA', + base: 'ibc/10DB9DE08CD6FAA58A6375891DEFC68A700556CA33CD9E40A423B9524B4661B1', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', chain_name: 'osmosis' }, chain: { @@ -11790,43 +11900,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' } ] }, { + description: 'WYND DAO Governance Token', denom_units: [ { denom: - 'ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303', + 'ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463', exponent: 0, aliases: [ - 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' ] }, { - denom: 'stevmos', - exponent: 18 + denom: 'wynd', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303', - name: 'Stride Staked EVMOS', - display: 'stevmos', - symbol: 'stEVMOS', + base: 'ibc/38F879520DC61432DDEA9571294F78C3393436F0E7A5C6E589CB8625EDEDE463', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', chain_name: 'osmosis' }, chain: { @@ -11835,44 +11946,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' } ] }, { - description: 'nRide Token', + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', denom_units: [ { denom: - 'ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01', + 'ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766', exponent: 0, aliases: [ - 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' ] }, { - denom: 'nride', + denom: 'polygon-usdc', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01', - name: 'nRide Token', - display: 'nride', - symbol: 'NRIDE', + base: 'ibc/CAFBCF40140E5AF83ED2956503FD7BDEE35EDF1BC64CD95C2C41E717B7065766', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', chain_name: 'osmosis' }, chain: { @@ -11881,44 +11993,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' } ] }, { - description: 'The native staking token of 8ball.', + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', denom_units: [ { denom: - 'ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76', + 'ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3', exponent: 0, aliases: [ - 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' ] }, { - denom: 'ebl', + denom: 'avalanche-usdc', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76', - name: '8ball', - display: 'ebl', - symbol: 'EBL', + base: 'ibc/41AB2B277EABD41E99CF6D16495E9C94F64E29AEFE45D124F4AF6A707DFB67C3', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', chain_name: 'osmosis' }, chain: { @@ -11927,45 +12041,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' } ] }, { - description: 'Quicksilver Liquid Staked ATOM', + description: 'Mars protocol token', denom_units: [ { denom: - 'ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689', + 'ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172', exponent: 0, aliases: [ - 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' ] }, { - denom: 'qatom', - exponent: 6, - aliases: [] + denom: 'mars', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689', - name: 'Quicksilver Liquid Staked ATOM', - display: 'qatom', - symbol: 'qATOM', + base: 'ibc/F77C07ECF0411249192D6FA3778A6CCCA93193FF89552F7DBCC87C60B7828172', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', chain_name: 'osmosis' }, chain: { @@ -11974,44 +12088,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ] }, { - description: 'Governance Token of Harbor protocol on Comdex network', + description: 'Ciento Exchange Token', denom_units: [ { denom: - 'ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E', + 'ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819', exponent: 0, aliases: [ - 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' ] }, { - denom: 'harbor', - exponent: 6 + denom: 'cnto', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E', - name: 'Harbor', - display: 'harbor', - symbol: 'HARBOR', + base: 'ibc/8BDA1D3A036741E4F47A6826A3CCADC72F7947E6807E79973FA89F6A7EF56819', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', chain_name: 'osmosis' }, chain: { @@ -12020,45 +12134,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' } ] }, { - description: 'Quicksilver Liquid Staked REGEN', denom_units: [ { denom: - 'ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD', + 'ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49', exponent: 0, aliases: [ - 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' ] }, { - denom: 'qregen', - exponent: 6, - aliases: [] + denom: 'stluna', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD', - name: 'Quicksilver Liquid Staked Regen', - display: 'qregen', - symbol: 'qREGEN', + base: 'ibc/FA951AABA5FD01FD36D8236BF1AF25BAA697C19F130F230632CB25901381BE49', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', chain_name: 'osmosis' }, chain: { @@ -12067,45 +12179,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' } ] }, { - description: - 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', denom_units: [ { denom: - 'ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18', + 'ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303', exponent: 0, aliases: [ - 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' ] }, { - denom: 'fox', - exponent: 6 + denom: 'stevmos', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18', - name: 'Juno Fox', - display: 'fox', - symbol: 'FOX', + base: 'ibc/B9AECD63EA77157A2A9EB9F19DD79335A3FA8D8900C5D2D10B66A0611AD5D303', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', chain_name: 'osmosis' }, chain: { @@ -12114,43 +12224,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' } ] }, { - description: 'QCK - native token of Quicksilver', + description: 'nRide Token', denom_units: [ { denom: - 'ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059', + 'ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01', exponent: 0, aliases: [ - 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' ] }, { - denom: 'qck', - exponent: 6, - aliases: [] + denom: 'nride', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059', - name: 'Quicksilver', - display: 'qck', - symbol: 'QCK', + base: 'ibc/AB7FD8689C2BFE2BF1E291218BB86B10A913928F5D857598BECAA5C5CBFF7B01', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', chain_name: 'osmosis' }, chain: { @@ -12159,42 +12270,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' } ] }, { - description: 'The native token of Arkhadian', + description: 'The native staking token of 8ball.', denom_units: [ { denom: - 'ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0', + 'ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76', exponent: 0, aliases: [ - 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' ] }, { - denom: 'ARKH', + denom: 'ebl', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0', - name: 'Arkhadian', - display: 'ARKH', - symbol: 'ARKH', + base: 'ibc/5AC20DB23A2DF7ADA0E1BB1D9BFCB221D18344491F3D0C7F2E4B9F8E0A411D76', + name: '8ball', + display: 'ebl', + symbol: 'EBL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', chain_name: 'osmosis' }, chain: { @@ -12203,46 +12316,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' } - ], - keywords: ['osmosis_unstable'] + ] }, { - description: 'Quicksilver Liquid Staked OSMO', + description: 'Quicksilver Liquid Staked ATOM', denom_units: [ { denom: - 'ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76', + 'ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689', exponent: 0, aliases: [ - 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' ] }, { - denom: 'qosmo', + denom: 'qatom', exponent: 6, aliases: [] } ], type_asset: 'ics20', - base: 'ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76', - name: 'Quicksilver Liquid Staked OSMO', - display: 'qosmo', - symbol: 'qOSMO', + base: 'ibc/082863DB8C3BFF0F579BEDE1736FDB5AE228313DC12F528370369D4344205689', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', chain_name: 'osmosis' }, chain: { @@ -12251,45 +12363,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' } ] }, { - description: - 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + description: 'Governance Token of Harbor protocol on Comdex network', denom_units: [ { denom: - 'ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3', + 'ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E', exponent: 0, aliases: [ - 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' ] }, { - denom: 'frienzies', + denom: 'harbor', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3', - name: 'Frienzies', - display: 'frienzies', - symbol: 'FRNZ', + base: 'ibc/2AE03402F61109F04DB235B5FD443C2A0686C27E841FE87923C676C0141DCF7E', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', chain_name: 'osmosis' }, chain: { @@ -12298,44 +12409,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' } ] }, { - description: 'The native token of Migaloo Chain', + description: 'Quicksilver Liquid Staked REGEN', denom_units: [ { denom: - 'ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004', + 'ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD', exponent: 0, aliases: [ - 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' ] }, { - denom: 'whale', - exponent: 6 + denom: 'qregen', + exponent: 6, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004', - name: 'Migaloo', - display: 'whale', - symbol: 'WHALE', + base: 'ibc/E07585AC4D62DDCD2FCE72C9F479495C0D4FA8A55F163586D4DDC4FF32F5C1BD', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', chain_name: 'osmosis' }, chain: { @@ -12344,44 +12456,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' } ] }, { - description: 'Evmos Guardians governance token.', + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', denom_units: [ { denom: - 'ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151', + 'ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18', exponent: 0, aliases: [ - 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' ] }, { - denom: 'grdn', + denom: 'fox', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151', - name: 'Guardian', - display: 'grdn', - symbol: 'GRDN', + base: 'ibc/580136DCB91F73829EAE848152DC07E2C743E22C072BE23BDCA968C7251B2D18', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', chain_name: 'osmosis' }, chain: { @@ -12390,42 +12503,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' } ] }, { - description: 'Mini Punks Token', + description: 'QCK - native token of Quicksilver', denom_units: [ { denom: - 'ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED', + 'ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059', exponent: 0, aliases: [ - 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' ] }, { - denom: 'mnpu', - exponent: 6 + denom: 'qck', + exponent: 6, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED', - name: 'Mini Punks', - display: 'mnpu', - symbol: 'MNPU', + base: 'ibc/46A3C9C63FB93F2273488ACFF80270F3C16572F310A0B4947D19F0AA24167059', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', chain_name: 'osmosis' }, chain: { @@ -12434,44 +12548,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ] }, { - description: 'Shiba Cosmos', + description: 'The native token of Arkhadian', denom_units: [ { denom: - 'ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9', + 'ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0', exponent: 0, aliases: [ - 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' ] }, { - denom: 'shibac', + denom: 'ARKH', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9', - name: 'ShibaCosmos', - display: 'shibac', - symbol: 'SHIBAC', + base: 'ibc/7B05D6BCB37FB83472C14FFC182AB5089C3859B69FF38F8D6A5274C1EE8793B0', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', chain_name: 'osmosis' }, chain: { @@ -12480,42 +12592,46 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' } - ] + ], + keywords: ['osmosis_unstable'] }, { - description: 'Sikoba Governance Token', + description: 'Quicksilver Liquid Staked OSMO', denom_units: [ { denom: - 'ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552', + 'ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76', exponent: 0, aliases: [ - 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' ] }, { - denom: 'sikoba', - exponent: 6 + denom: 'qosmo', + exponent: 6, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552', - name: 'Sikoba Token', - display: 'sikoba', - symbol: 'SKOJ', + base: 'ibc/78A0FCEF49722B9337D322BF5C8D20EAE91D9491F90F894FC29D44EA2D21DE76', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', chain_name: 'osmosis' }, chain: { @@ -12524,45 +12640,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' } ] }, { description: - 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', denom_units: [ { denom: - 'ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2', + 'ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3', exponent: 0, aliases: [ - 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' ] }, { - denom: 'nct', + denom: 'frienzies', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2', - name: 'Nature Carbon Ton', - display: 'nct', - symbol: 'NCT', + base: 'ibc/4077FF49DAF69D50A45749C992A76F7A1A3C1274184BA03953DEF1E079C177B3', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', chain_name: 'osmosis' }, chain: { @@ -12571,44 +12687,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' } ] }, { - description: 'Celestims', + description: 'The native token of Migaloo Chain', denom_units: [ { denom: - 'ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16', + 'ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004', exponent: 0, aliases: [ - 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' ] }, { - denom: 'clst', + denom: 'whale', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16', - name: 'Celestims', - display: 'clst', - symbol: 'CLST', + base: 'ibc/B860D842D78A6040B2C2C74A218AE1EED78272608C4A17005059FF1DB8CD0004', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', chain_name: 'osmosis' }, chain: { @@ -12617,42 +12733,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' } ] }, { - description: 'The First Doge on Osmosis', + description: 'Evmos Guardians governance token.', denom_units: [ { denom: - 'ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470', + 'ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151', exponent: 0, aliases: [ - 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' ] }, { - denom: 'osdoge', + denom: 'grdn', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470', - name: 'Osmosis Doge', - display: 'osdoge', - symbol: 'OSDOGE', + base: 'ibc/8682D60E57D4E46D724F0A66F66AB52D3B621EE1318A26A72C2E6B467F7EB151', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', chain_name: 'osmosis' }, chain: { @@ -12661,42 +12779,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' } ] }, { - description: 'Apemos', + description: 'Mini Punks Token', denom_units: [ { denom: - 'ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488', + 'ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED', exponent: 0, aliases: [ - 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' ] }, { - denom: 'apemos', + denom: 'mnpu', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488', - name: 'Apemos', - display: 'apemos', - symbol: 'APEMOS', + base: 'ibc/7D2F02A7FCBEB59F832B13FDE31E543CBC1A3722801014FF22BDBEF3FD8B12ED', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', chain_name: 'osmosis' }, chain: { @@ -12705,42 +12823,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' } ] }, { - description: "Evmos Guardians' Invaders DAO token.", + description: 'Shiba Cosmos', denom_units: [ { denom: - 'ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2', + 'ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9', exponent: 0, aliases: [ - 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' ] }, { - denom: 'invdrs', + denom: 'shibac', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2', - name: 'Invaders', - display: 'invdrs', - symbol: 'INVDRS', + base: 'ibc/989DAE2EE73CD08E37DF997AE7FB51E951E17D4ECE1E83404CF9C3F400F094B9', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', chain_name: 'osmosis' }, chain: { @@ -12749,42 +12869,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' } ] }, { - description: 'Doge Apr', + description: 'Sikoba Governance Token', denom_units: [ { denom: - 'ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7', + 'ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552', exponent: 0, aliases: [ - 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' ] }, { - denom: 'doga', + denom: 'sikoba', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7', - name: 'Doge Apr', - display: 'doga', - symbol: 'DOGA', + base: 'ibc/31C63F09B8085BB9DF9DEF33708902BB534D871C616818135531D5D9F1BFA552', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', chain_name: 'osmosis' }, chain: { @@ -12793,42 +12913,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' } ] }, { - description: 'Catmos', + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', denom_units: [ { denom: - 'ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E', + 'ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2', exponent: 0, aliases: [ - 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' ] }, { - denom: 'catmos', + denom: 'nct', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E', - name: 'Catmos', - display: 'catmos', - symbol: 'CATMOS', + base: 'ibc/71A191F893ED81E09032C46D4D319EE828372B269FC7F5108EB2EE80BBFF2CF2', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', chain_name: 'osmosis' }, chain: { @@ -12837,43 +12960,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' } ] }, { - description: - 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + description: 'Celestims', denom_units: [ { denom: - 'ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E', + 'ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16', exponent: 0, aliases: [ - 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' ] }, { - denom: 'summit', + denom: 'clst', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E', - name: 'Summit', - display: 'summit', - symbol: 'SUMMIT', + base: 'ibc/7144D47AF0DC49E3F8A3BE17AA2836A2C0E01BF21598F5409D79856A1102BA16', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', chain_name: 'osmosis' }, chain: { @@ -12882,42 +13006,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' } ] }, { - description: 'The native staking token of OmniFlix Hub.', + description: 'The First Doge on Osmosis', denom_units: [ { denom: - 'ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61', + 'ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470', exponent: 0, aliases: [ - 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' ] }, { - denom: 'flix', + denom: 'osdoge', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61', - name: 'OmniFlix', - display: 'flix', - symbol: 'FLIX', + base: 'ibc/3D38EE3274A2076C2178B7E5FD83A75D911F09B3B48F7351F446BA7B1E833470', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', chain_name: 'osmosis' }, chain: { @@ -12926,44 +13050,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' } ] }, { - description: 'Spacer', + description: 'Apemos', denom_units: [ { denom: - 'ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031', + 'ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488', exponent: 0, aliases: [ - 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' ] }, { - denom: 'spacer', + denom: 'apemos', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031', - name: 'Spacer', - display: 'spacer', - symbol: 'SPACER', + base: 'ibc/8CAE5B54C629B976FBC777C8B688C5570A95224DD92EB8709640C5C4E6E7C488', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', chain_name: 'osmosis' }, chain: { @@ -12972,42 +13094,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' } ] }, { - description: 'Light: LumenX community DAO treasury token', + description: "Evmos Guardians' Invaders DAO token.", denom_units: [ { denom: - 'ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B', + 'ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2', exponent: 0, aliases: [ - 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' ] }, { - denom: 'light', - exponent: 9 + denom: 'invdrs', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B', - name: 'LIGHT', - display: 'light', - symbol: 'LIGHT', - traces: [ - { + base: 'ibc/D68289900FD6CF77B51AF755CC99E779718B542FC4439E0FDBAD9FF0A1A38AA2', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', chain_name: 'osmosis' }, chain: { @@ -13016,42 +13138,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' } ] }, { - description: 'The native token cw20 for Silk on Secret Network', + description: 'Doge Apr', denom_units: [ { denom: - 'ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D', + 'ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7', exponent: 0, aliases: [ - 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' ] }, { - denom: 'silk', + denom: 'doga', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D', - name: 'Silk', - display: 'silk', - symbol: 'SILK', + base: 'ibc/D8EBED4FF25BAAA0A353EC2E893D3F97B1F075F970E09976B9C4E97695B98CD7', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', chain_name: 'osmosis' }, chain: { @@ -13060,44 +13182,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' } ] }, { - description: 'Mille: the 1000th token on osmosis', + description: 'Catmos', denom_units: [ { denom: - 'ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF', + 'ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E', exponent: 0, aliases: [ - 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' ] }, { - denom: 'mile', + denom: 'catmos', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF', - name: 'Mille', - display: 'mile', - symbol: 'MILE', + base: 'ibc/B59F993604E6021D65E16187AA6DD7102F59EA444E230006D15B168CB7BC4A7E', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', chain_name: 'osmosis' }, chain: { @@ -13106,43 +13226,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' } ] }, { description: - 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', denom_units: [ { denom: - 'ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051', + 'ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E', exponent: 0, aliases: [ - 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' ] }, { - denom: 'manna', + denom: 'summit', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051', - name: 'Manna', - display: 'manna', - symbol: 'MANNA', + base: 'ibc/691EC257AECA94DF254B6242BA19168F485BC175F3B518C0020E3BD2C260E07E', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', chain_name: 'osmosis' }, chain: { @@ -13151,43 +13271,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' } ] }, { - description: - "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + description: 'The native staking token of OmniFlix Hub.', denom_units: [ { denom: - 'ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA', + 'ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61', exponent: 0, aliases: [ - 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' ] }, { - denom: 'fil', - exponent: 18 + denom: 'flix', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA', - name: 'Filecoin', - display: 'fil', - symbol: 'FIL', + base: 'ibc/74356C5768E72AF3E3FF013DB4245664F3028C1322BDD10F63F17F2EEB0D5E61', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', chain_name: 'osmosis' }, chain: { @@ -13196,44 +13315,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ] }, { - description: 'Void', + description: 'Spacer', denom_units: [ { denom: - 'ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34', + 'ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031', exponent: 0, aliases: [ - 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' ] }, { - denom: 'void', + denom: 'spacer', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34', - name: 'Void', - display: 'void', - symbol: 'VOID', + base: 'ibc/C44AFBD5D41CC7007BA0E12B272844EE358BCA967253CDD4BB97A93AC253C031', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', chain_name: 'osmosis' }, chain: { @@ -13242,42 +13361,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' } ] }, { - description: 'The native token cw20 for Shade on Secret Network', + description: 'Light: LumenX community DAO treasury token', denom_units: [ { denom: - 'ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645', + 'ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B', exponent: 0, aliases: [ - 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' ] }, { - denom: 'shd', - exponent: 8 + denom: 'light', + exponent: 9 } ], type_asset: 'ics20', - base: 'ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645', - name: 'Shade', - display: 'shd', - symbol: 'SHD', + base: 'ibc/BD6FE796FC2ACA333FFD952C8A24361EEB6599C8CB899389E611BF266AA5EE3B', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', chain_name: 'osmosis' }, chain: { @@ -13286,45 +13405,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' } ] }, { - description: 'The native token of Bluzelle', + description: 'The native token cw20 for Silk on Secret Network', denom_units: [ { denom: - 'ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD', + 'ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D', exponent: 0, aliases: [ - 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' ] }, { - denom: 'bnt', - exponent: 6, - aliases: ['blz'] + denom: 'silk', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD', - name: 'Bluzelle', - display: 'bnt', - symbol: 'BLZ', + base: 'ibc/38E3CDB568576E779ED9126DEC8C34C874410794068D60B39FC91096AF11A23D', + name: 'Silk', + display: 'silk', + symbol: 'SILK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', chain_name: 'osmosis' }, chain: { @@ -13333,45 +13449,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' } - ], - keywords: ['bluzelle', 'game'] + ] }, { - description: 'Native token of Arbitrum', + description: 'Mille: the 1000th token on osmosis', denom_units: [ { denom: - 'ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF', + 'ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF', exponent: 0, aliases: [ - 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' ] }, { - denom: 'arb', - exponent: 18 + denom: 'mile', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF', - name: 'Arbitrum', - display: 'arb', - symbol: 'ARB', + base: 'ibc/7EC7213ABEF2C07CF24057DBF45B0E3FABB7FB7D308C82CD35C81B814DE32DEF', + name: 'Mille', + display: 'mile', + symbol: 'MILE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', chain_name: 'osmosis' }, chain: { @@ -13380,44 +13495,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' } ] }, { - description: 'Silica', + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', denom_units: [ { denom: - 'ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB', + 'ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051', exponent: 0, aliases: [ - 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' ] }, { - denom: 'silica', + denom: 'manna', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB', - name: 'Silica', - display: 'silica', - symbol: 'SLCA', + base: 'ibc/89F2FD1E1D6AA6F7F67D87B6B5270F7ABCADFC67701E1E2BC76E25516A4C4051', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', chain_name: 'osmosis' }, chain: { @@ -13426,42 +13540,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' } ] }, { - description: 'Pepec', + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", denom_units: [ { denom: - 'ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF', + 'ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA', exponent: 0, aliases: [ - 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' ] }, { - denom: 'pepec', - exponent: 6 + denom: 'fil', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF', - name: 'Pepec', - display: 'pepec', - symbol: 'PEPEC', - traces: [ - { - type: 'ibc', + base: 'ibc/816A63D8C6826F7A4A8C8F993366F9BC9BC73DCE7ECA788F6D4186DE9F2FADAA', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', chain_name: 'osmosis' }, chain: { @@ -13470,42 +13585,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' } ] }, { - description: '', + description: 'Void', denom_units: [ { denom: - 'ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6', + 'ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34', exponent: 0, aliases: [ - 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' ] }, { - denom: 'pepe', - exponent: 18 + denom: 'void', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6', - name: 'Pepe', - display: 'pepe', - symbol: 'PEPE', + base: 'ibc/B4D04ACD802A819759677A6BA1ECC82EE462735E7A67DD2E173B5EE3896DBB34', + name: 'Void', + display: 'void', + symbol: 'VOID', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', chain_name: 'osmosis' }, chain: { @@ -13514,91 +13631,89 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' } ] }, { + description: 'The native token cw20 for Shade on Secret Network', denom_units: [ { denom: - 'ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E', + 'ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645', exponent: 0, aliases: [ - 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' ] }, { - denom: 'ibcx', - exponent: 6 - } - ], - type_asset: 'sdk.coin', - address: - 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', - base: 'ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E', - name: 'IBC Index', - display: 'ibcx', - symbol: 'IBCX', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + denom: 'shd', + exponent: 8 } ], - coingecko_id: 'ibc-index', + type_asset: 'ics20', + base: 'ibc/C3DD549EF052CB1E6937EB7A9FC1FBB2F27F1F47ECACD29E1BE43B35C6F82645', + name: 'Shade', + display: 'shd', + symbol: 'SHD', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { - description: - 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + description: 'The native token of Bluzelle', denom_units: [ { denom: - 'ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7', + 'ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD', exponent: 0, aliases: [ - 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' ] }, { - denom: 'cbeth', - exponent: 18 + denom: 'bnt', + exponent: 6, + aliases: ['blz'] } ], type_asset: 'ics20', - base: 'ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7', - name: 'Coinbase Wrapped Staked ETH', - display: 'cbeth', - symbol: 'cbETH', + base: 'ibc/C7C10DCD949BA769B940202CFAD8E38D0E2701C732F828BDFE1C38200E83B5FD', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', chain_name: 'osmosis' }, chain: { @@ -13607,43 +13722,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' } - ] + ], + keywords: ['bluzelle', 'game'] }, { - description: - 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + description: 'Native token of Arbitrum', denom_units: [ { denom: - 'ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC', + 'ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF', exponent: 0, aliases: [ - 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' ] }, { - denom: 'reth', + denom: 'arb', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC', - name: 'Rocket Pool Ether', - display: 'reth', - symbol: 'rETH', + base: 'ibc/B2BF263C15424D4ED1B299E235728EEBDE454BDE2B0C64284D83671AF38E31FF', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', chain_name: 'osmosis' }, chain: { @@ -13652,43 +13769,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' } ] }, { - description: - "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + description: 'Silica', denom_units: [ { denom: - 'ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B', + 'ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB', exponent: 0, aliases: [ - 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' ] }, { - denom: 'sfrxeth', - exponent: 18 + denom: 'silica', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B', - name: 'Staked Frax Ether', - display: 'sfrxeth', - symbol: 'sfrxETH', + base: 'ibc/FDCA82B08C58B309E963A0646733EDF64F48AEFF630A611510EEB5BEED997EEB', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', chain_name: 'osmosis' }, chain: { @@ -13697,41 +13815,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' } ] }, { + description: 'Pepec', denom_units: [ { denom: - 'ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC', + 'ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF', exponent: 0, aliases: [ - 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' ] }, { - denom: 'wsteth', - exponent: 18 + denom: 'pepec', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC', - name: 'Wrapped Lido Staked Ether (Axelar)', - display: 'wsteth', - symbol: 'wstETH.axl', + base: 'ibc/06085DB95CEF131E5D0188AAA0F642C25F296505ECE0E36F78AD1B169D101CFF', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', chain_name: 'osmosis' }, chain: { @@ -13740,49 +13859,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' }, images: [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' } ] }, { - description: 'The native token of Gitopia', + description: '', denom_units: [ { denom: - 'ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260', + 'ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6', exponent: 0, aliases: [ - 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' ] }, { - denom: 'LORE', - exponent: 6 + denom: 'pepe', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260', - name: 'Gitopia', - display: 'LORE', - symbol: 'LORE', + base: 'ibc/4EAAE8EC9BCD3A855BF00A34D90FF9D91ADA5B3103F6CB96B7284E35A68542B6', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', chain_name: 'osmosis' }, chain: { @@ -13791,91 +13903,91 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' - }, - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' } ] }, { - description: - 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', denom_units: [ { denom: - 'ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB', + 'ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E', exponent: 0, aliases: [ - 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' ] }, { - denom: 'roar', + denom: 'ibcx', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB', - name: 'Lion DAO', - display: 'roar', - symbol: 'ROAR', + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/984EF329DD592E9253CCB1E65571C80F8689165B88A54974471136B57A80D74E', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' - } ] }, { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', denom_units: [ { denom: - 'ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F', + 'ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7', exponent: 0, aliases: [ - 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' ] }, { - denom: 'stumee', - exponent: 6 + denom: 'cbeth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F', - name: 'Stride Staked UMEE', - display: 'stumee', - symbol: 'stUMEE', + base: 'ibc/03E2DBA8B2F4F46979693C52BCD5D26690B8BFBEF4C04C09EB50673F2AC791A7', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', chain_name: 'osmosis' }, chain: { @@ -13884,91 +13996,88 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' } ] }, { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', denom_units: [ { denom: - 'ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5', + 'ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC', exponent: 0, aliases: [ - 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' ] }, { - denom: 'stibcx', - exponent: 6 - } - ], - type_asset: 'sdk.coin', - address: - 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', - base: 'ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5', - name: 'Staked IBCX', - display: 'stibcx', - symbol: 'stIBCX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + denom: 'reth', + exponent: 18 } ], + type_asset: 'ics20', + base: 'ibc/6ED27EA175AE57EB680BA47F3CE4130BA1CC3AF5EE8BD7C824075D8E5F52DEFC', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } ] }, { - description: 'The native token of Nolus chain', + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", denom_units: [ { denom: - 'ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF', + 'ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B', exponent: 0, aliases: [ - 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' ] }, { - denom: 'nls', - exponent: 6 + denom: 'sfrxeth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF', - name: 'Nolus', - display: 'nls', - symbol: 'NLS', + base: 'ibc/8988F839263EDFBC07F7E6CB612CD271D97E23A1A3719751DE1C98137EE5581B', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', chain_name: 'osmosis' }, chain: { @@ -13977,48 +14086,41 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' }, images: [ { - image_sync: { - chain_name: 'nolus', - base_denom: 'unls' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' } ] }, { - description: 'Lion Cub DAO is a useless meme community DAO on Terra', denom_units: [ { denom: - 'ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243', + 'ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC', exponent: 0, aliases: [ - 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' ] }, { - denom: 'cub', - exponent: 6 + denom: 'wsteth', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243', - name: 'Lion Cub DAO', - display: 'cub', - symbol: 'CUB', + base: 'ibc/80811837856EB04A1A50A9BAE89FCAB11D50729F202E7930635EAA4DC2D738CC', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', chain_name: 'osmosis' }, chain: { @@ -14027,42 +14129,49 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' } ] }, { - description: 'BLUE CUB DAO is a community DAO on Terra', + description: 'The native token of Gitopia', denom_units: [ { denom: - 'ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF', + 'ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260', exponent: 0, aliases: [ - 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' ] }, { - denom: 'blue', + denom: 'LORE', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF', - name: 'BLUE CUB DAO', - display: 'blue', - symbol: 'BLUE', + base: 'ibc/2F2EC2B410FA8CAA307B67C324EB2DF0DEB8FBEC00FD9E921FA68E9E31AE6260', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', chain_name: 'osmosis' }, chain: { @@ -14071,42 +14180,48 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' } ] }, { - description: 'The native token of Neutron chain.', + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', denom_units: [ { denom: - 'ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8', + 'ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB', exponent: 0, aliases: [ - 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' ] }, { - denom: 'ntrn', + denom: 'roar', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8', - name: 'Neutron', - display: 'ntrn', - symbol: 'NTRN', + base: 'ibc/F1B2B1102913DFEB1752601BF5C3685FED5B7FA2F387AE9C3EB142EC8989DFDB', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', chain_name: 'osmosis' }, chain: { @@ -14115,44 +14230,41 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' } ] }, { - description: 'An innovative DAO dedicated to housing the most vulnerable', denom_units: [ { denom: - 'ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633', + 'ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F', exponent: 0, aliases: [ - 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' ] }, { - denom: 'casa', + denom: 'stumee', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633', - name: 'Casa', - display: 'casa', - symbol: 'CASA', + base: 'ibc/E5017389DA6A6538F6B1D3FC3C31AFCE9F00CCED2A76A0A32FA49AC4144F928F', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', chain_name: 'osmosis' }, chain: { @@ -14161,91 +14273,91 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' } ] }, { - description: 'The native staking and governance token of Composable.', denom_units: [ { denom: - 'ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B', + 'ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5', exponent: 0, aliases: [ - 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' ] }, { - denom: 'pica', - exponent: 12 + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/F7AA2E59C609EBF307BF86217C1B73565EAD74B528AA0DA28FBA26F7FFB858E5', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' } ], - type_asset: 'ics20', - base: 'ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B', - name: 'Composable', - display: 'pica', - symbol: 'PICA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' - }, - images: [ - { - image_sync: { - chain_name: 'picasso', - base_denom: 'ppica' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' - } - ] - }, - { - description: - 'The native fee, governance, staking, and bonding token of the Polkadot platform.', - denom_units: [ + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ { denom: - 'ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540', + 'ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF', exponent: 0, aliases: [ - 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' ] }, { - denom: 'ksm', - exponent: 12 + denom: 'nls', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540', - name: 'Kusama', - display: 'ksm', - symbol: 'KSM', + base: 'ibc/F0298A1E566F2914AE0CD740BC09030CCFB6FF9E38A8B1EFE5C5A6ED87CDC0DF', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', chain_name: 'osmosis' }, chain: { @@ -14254,43 +14366,48 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } ] }, { - description: - 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + description: 'Lion Cub DAO is a useless meme community DAO on Terra', denom_units: [ { denom: - 'ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891', + 'ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243', exponent: 0, aliases: [ - 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' ] }, { - denom: 'dot', - exponent: 10 + denom: 'cub', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891', - name: 'Polkadot', - display: 'dot', - symbol: 'DOT', + base: 'ibc/B580D53C74C471B0AF484E2E7A110F8219A0E5DC124F6551B565E02B4360B243', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', chain_name: 'osmosis' }, chain: { @@ -14299,43 +14416,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' } ] }, { - description: 'The native token of Quasar', + description: 'BLUE CUB DAO is a community DAO on Terra', denom_units: [ { denom: - 'ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2', + 'ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF', exponent: 0, aliases: [ - 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' ] }, { - denom: 'qsr', - exponent: 6, - aliases: [] + denom: 'blue', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2', - name: 'Quasar', - display: 'qsr', - symbol: 'QSR', + base: 'ibc/3536514CC81F1747C9B717AD66617E4E54125432034D8885052B7BFF6BEBFECF', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', chain_name: 'osmosis' }, chain: { @@ -14344,50 +14460,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' }, images: [ { - image_sync: { - chain_name: 'quasar', - base_denom: 'uqsr' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' } ] }, { - description: 'The native token of Archway network', + description: 'The native token of Neutron chain.', denom_units: [ { denom: - 'ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E', + 'ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8', exponent: 0, aliases: [ - 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' ] }, { - denom: 'uarch', - exponent: 12 - }, - { - denom: 'arch', - exponent: 18 + denom: 'ntrn', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E', - name: 'Archway', - display: 'arch', - symbol: 'ARCH', + base: 'ibc/618FC5282890291F3A2C43683BA3C5938C81D8C4B8297054F352E5C279D628E8', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', chain_name: 'osmosis' }, chain: { @@ -14396,44 +14504,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ] }, { - description: 'The native staking and governance token of Empower.', + description: 'An innovative DAO dedicated to housing the most vulnerable', denom_units: [ { denom: - 'ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868', + 'ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633', exponent: 0, aliases: [ - 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' ] }, { - denom: 'mpwr', + denom: 'casa', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868', - name: 'EmpowerChain', - display: 'mpwr', - symbol: 'MPWR', + base: 'ibc/549E13D1D85842C5A74D2ACFB06DD13257937EBB220BA9AB39650A73BB987633', + name: 'Casa', + display: 'casa', + symbol: 'CASA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', chain_name: 'osmosis' }, chain: { @@ -14442,43 +14550,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' } ] }, { - description: - 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + description: 'The native staking and governance token of Composable.', denom_units: [ { denom: - 'ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2', + 'ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B', exponent: 0, aliases: [ - 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' ] }, { - denom: 'watr', - exponent: 6 + denom: 'pica', + exponent: 12 } ], type_asset: 'ics20', - base: 'ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2', - name: 'WATR', - display: 'watr', - symbol: 'WATR', + base: 'ibc/4605BC2C32033D6D9EC9292B826297A315D9E422A4F5C3C6871132313E7B339B', + name: 'Composable', + display: 'pica', + symbol: 'PICA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', chain_name: 'osmosis' }, chain: { @@ -14487,42 +14594,47 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' } ] }, { - description: 'The native utility token of the KYVE network.', + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', denom_units: [ { denom: - 'ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E', + 'ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540', exponent: 0, aliases: [ - 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' ] }, { - denom: 'kyve', - exponent: 6 + denom: 'ksm', + exponent: 12 } ], type_asset: 'ics20', - base: 'ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E', - name: 'KYVE', - display: 'kyve', - symbol: 'KYVE', + base: 'ibc/DEBE4902E631D9B77B012800E10369BA52E4D568902F7CC4C0AE36E6254EF540', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', chain_name: 'osmosis' }, chain: { @@ -14531,45 +14643,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' } ] }, { description: - 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', denom_units: [ { denom: - 'ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7', + 'ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891', exponent: 0, aliases: [ - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' ] }, { - denom: 'usdt', - exponent: 6 + denom: 'dot', + exponent: 10 } ], type_asset: 'ics20', - base: 'ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7', - name: 'Tether USD', - display: 'usdt', - symbol: 'USDT', + base: 'ibc/24EB849B0781267FABBC4F10DCC3FD5C822D6C5C5E29642BB8212EDDDF0E4891', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', chain_name: 'osmosis' }, chain: { @@ -14578,92 +14688,95 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' }, images: [ { - image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' } ] }, { - description: 'ERIS liquid staked OSMO', + description: 'The native token of Quasar', denom_units: [ { denom: - 'ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE', + 'ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2', exponent: 0, aliases: [ - 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' ] }, { - denom: 'ampOSMO', - exponent: 6 - } - ], - type_asset: 'sdk.coin', - address: - 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', - base: 'ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE', - name: 'ERIS Amplified OSMO', - display: 'ampOSMO', - symbol: 'ampOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + denom: 'qsr', + exponent: 6, + aliases: [] } ], + type_asset: 'ics20', + base: 'ibc/54A3849EC13BCCF3A7F422A9E67DE815309118FC1C684D88396C165F07CA64C2', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } ] }, { - description: 'The native staking token of Sei.', + description: 'The native token of Archway network', denom_units: [ { denom: - 'ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A', + 'ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E', exponent: 0, aliases: [ - 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' ] }, { - denom: 'sei', - exponent: 6 + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A', - name: 'Sei', - display: 'sei', - symbol: 'SEI', + base: 'ibc/7CB22EE1C66DD9CBC3E31540BDACE0A24287A1B4B6816049C462A1995E27AC4E', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', chain_name: 'osmosis' }, chain: { @@ -14672,45 +14785,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ] }, { - description: 'Quicksilver Liquid Staked SOMM', + description: 'The native staking and governance token of Empower.', denom_units: [ { denom: - 'ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995', + 'ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868', exponent: 0, aliases: [ - 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' ] }, { - denom: 'qsomm', - exponent: 6, - aliases: [] + denom: 'mpwr', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995', - name: 'Quicksilver Liquid Staked SOMM', - display: 'qsomm', - symbol: 'qSOMM', + base: 'ibc/F84D763B4E18C1832AEBA994784EAD44B4452374F2C198B07A9E285EF2C39868', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', chain_name: 'osmosis' }, chain: { @@ -14719,45 +14831,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' } ] }, { description: - 'The native staking and governance token of the Passage chain.', + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', denom_units: [ { denom: - 'ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710', + 'ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2', exponent: 0, aliases: [ - 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' ] }, { - denom: 'pasg', + denom: 'watr', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710', - name: 'Passage', - display: 'pasg', - symbol: 'PASG', + base: 'ibc/5C0DE8297B57485D08FB9797CD4573009B9052C51193A9AA63E5092533DED0E2', + name: 'WATR', + display: 'watr', + symbol: 'WATR', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', chain_name: 'osmosis' }, chain: { @@ -14766,41 +14876,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' } ] }, { + description: 'The native utility token of the KYVE network.', denom_units: [ { denom: - 'ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8', + 'ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E', exponent: 0, aliases: [ - 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' ] }, { - denom: 'stsomm', + denom: 'kyve', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8', - name: 'Stride Staked SOMM', - display: 'stsomm', - symbol: 'stSOMM', + base: 'ibc/749CF3E50D298E22AE7417689038396914AD5998DCA49C2C6CCB5C9AC7A1C93E', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', chain_name: 'osmosis' }, chain: { @@ -14809,45 +14920,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' } ] }, { - description: 'Solana (SOL) is the native asset of the Solana blockchain.', + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', denom_units: [ { denom: - 'ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E', + 'ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7', exponent: 0, aliases: [ - 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' ] }, { - denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', - exponent: 8, - aliases: [] + denom: 'usdt', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E', - name: 'Solana', - display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', - symbol: 'SOL', + base: 'ibc/FF37ECEEC52777A6E77B23642BEE542B5E7363696812BCE76E2A6891D63324C7', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', chain_name: 'osmosis' }, chain: { @@ -14856,89 +14967,92 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' } ] }, { - description: 'The Official Bonk Inu token', + description: 'ERIS liquid staked OSMO', denom_units: [ { denom: - 'ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55', + 'ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE', exponent: 0, aliases: [ - 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' ] }, { - denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', - exponent: 5, - aliases: [] + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/7D3D4489F954CC8939EE3A293DF2BFA65B9D9C62A5EA735BA21F99A4138BA4FE', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' } ], - type_asset: 'ics20', - base: 'ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55', - name: 'Bonk', - display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', - symbol: 'BONK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' - } ] }, { - description: - 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + description: 'The native staking token of Sei.', denom_units: [ { denom: - 'ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB', + 'ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A', exponent: 0, aliases: [ - 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' ] }, { - denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', - exponent: 6, - aliases: [] + denom: 'sei', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB', - name: 'Tether USD (Wormhole)', - display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', - symbol: 'USDT.wh', + base: 'ibc/F8A1925765F00870F484B1BE44673C4BD97E3CC9028BA999364B99C022D4AB3A', + name: 'Sei', + display: 'sei', + symbol: 'SEI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', chain_name: 'osmosis' }, chain: { @@ -14947,50 +15061,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' }, images: [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ] }, { - description: 'Sui’s native asset is called SUI.', + description: 'Quicksilver Liquid Staked SOMM', denom_units: [ { denom: - 'ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722', + 'ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995', exponent: 0, aliases: [ - 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' ] }, { - denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', - exponent: 8, + denom: 'qsomm', + exponent: 6, aliases: [] } ], type_asset: 'ics20', - base: 'ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722', - name: 'Sui', - display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', - symbol: 'SUI', + base: 'ibc/EF01B648876C138B8577E6E6F50813A7C9DC45CD2C58A00AC55A302EDFCFC995', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', chain_name: 'osmosis' }, chain: { @@ -14999,44 +15108,45 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' } ] }, { description: - 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + 'The native staking and governance token of the Passage chain.', denom_units: [ { denom: - 'ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74', + 'ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710', exponent: 0, aliases: [ - 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' ] }, { - denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', - exponent: 8, - aliases: [] + denom: 'pasg', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74', - name: 'Aptos Coin', - display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', - symbol: 'APT', + base: 'ibc/E9B8E48CC58FB147C663A56DF6491C3377804E4A793DDCD426AF82D2873C9710', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', chain_name: 'osmosis' }, chain: { @@ -15045,48 +15155,41 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', - theme: { - dark_mode: true - } + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' } ] }, { - description: 'MantaDAO Governance Token', denom_units: [ { denom: - 'ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653', + 'ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8', exponent: 0, aliases: [ - 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' ] }, { - denom: 'mnta', + denom: 'stsomm', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653', - name: 'MantaDAO', - display: 'mnta', - symbol: 'MNTA', + base: 'ibc/37E9C1BBD8DD4D77ADA563ECB7DB22111C18236F9B3BA7C79B1A07C8F0B865F8', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', chain_name: 'osmosis' }, chain: { @@ -15095,43 +15198,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' } ] }, { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', denom_units: [ { denom: - 'ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97', + 'ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E', exponent: 0, aliases: [ - 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' ] }, { - denom: 'dgl', - exponent: 6 + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97', - name: 'Licorice', - display: 'dgl', - symbol: 'DGL', + base: 'ibc/23E0AEF2843ACBFFC75DEBEA93DB12BF25D24F9DD7B8319330F683C1CD25C19E', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', chain_name: 'osmosis' }, chain: { @@ -15140,44 +15245,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' } ] }, { - description: - 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + description: 'The Official Bonk Inu token', denom_units: [ { denom: - 'ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1', + 'ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55', exponent: 0, aliases: [ - 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' ] }, { - denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', - exponent: 6, + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, aliases: [] } ], type_asset: 'ics20', - base: 'ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1', - name: 'USD Coin (Wormhole)', - display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', - symbol: 'USDC.wh', + base: 'ibc/533530B188B361049F567ACC6B52D1DB186A003269ED2275D90F69A7795D3C55', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', chain_name: 'osmosis' }, chain: { @@ -15186,51 +15290,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' }, images: [ { - image_sync: { - chain_name: 'ethereum', - base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' - }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' } ] }, { description: - 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', denom_units: [ { denom: - 'ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336', + 'ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB', exponent: 0, aliases: [ - 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' ] }, { - denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', - exponent: 8, + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, aliases: [] } ], type_asset: 'ics20', - base: 'ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336', - name: 'Wrapped Ether (Wormhole)', - display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', - symbol: 'wETH.wh', + base: 'ibc/206DDAFEA8D248A1EBB696FFCFBE949131CAD5B7E0B9891096C631E9E78B7AFB', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', chain_name: 'osmosis' }, chain: { @@ -15239,47 +15336,50 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' }, { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' } ] }, { - description: - 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + description: 'Sui’s native asset is called SUI.', denom_units: [ { denom: - 'ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827', + 'ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722', exponent: 0, aliases: [ - 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' ] }, { - denom: 'usdc', - exponent: 6 + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827', - name: 'USD Coin', - display: 'usdc', - symbol: 'USDC', + base: 'ibc/751E0D537F9145EF0BE6DC2A9F4E583D6F6C7B9A7C5FA7D2C3A3BF595B4CE722', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', chain_name: 'osmosis' }, chain: { @@ -15288,51 +15388,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' }, images: [ { - image_sync: { - chain_name: 'noble', - base_denom: 'uusdc' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' } ] }, { description: - 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', denom_units: [ { denom: - 'ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951', + 'ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74', exponent: 0, aliases: [ - 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' ] }, { - denom: 'YieldETH', - exponent: 18 + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951', - name: 'Real Yield ETH', - display: 'YieldETH', - symbol: 'YieldETH', + base: 'ibc/EADDB22F5B5F97AD06B8A93D6296C2C9B520D1392DC315CB84C7BBA20CDA2E74', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', chain_name: 'osmosis' }, chain: { @@ -15341,48 +15434,48 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' }, images: [ { - image_sync: { - chain_name: 'axelar', - base_denom: 'yieldeth-wei' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } } ] }, { - description: 'The native staking token of XPLA.', + description: 'MantaDAO Governance Token', denom_units: [ { denom: - 'ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A', + 'ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653', exponent: 0, aliases: [ - 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' ] }, { - denom: 'xpla', - exponent: 18 + denom: 'mnta', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A', - name: 'XPLA', - display: 'xpla', - symbol: 'XPLA', + base: 'ibc/2E4BC5EC15A544B5098E216DF211752D99266071E81D98056362716868C81653', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', chain_name: 'osmosis' }, chain: { @@ -15391,45 +15484,43 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' } ] }, { - description: - 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', denom_units: [ { denom: - 'ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0', + 'ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97', exponent: 0, aliases: [ - 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' ] }, { - denom: 'oin', + denom: 'dgl', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0', - name: 'OIN STORE OF VALUE', - display: 'oin', - symbol: 'OIN', + base: 'ibc/2C5575F7E10380B8C6990CC179EA33722D881D24F5E5083DFDE79B8627DA4E97', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', chain_name: 'osmosis' }, chain: { @@ -15438,42 +15529,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' } ] }, { - description: 'The token of Neokingdom DAO.', + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', denom_units: [ { denom: - 'ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333', + 'ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1', exponent: 0, aliases: [ - 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' ] }, { - denom: 'neok', - exponent: 18 + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333', - name: 'Neokingdom DAO', - display: 'neok', - symbol: 'NEOK', + base: 'ibc/7A98A4D4CCFF2CB8F4F3EE9415FFFAAD8A408295556507C7FA4D42E2BF85A7A1', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', chain_name: 'osmosis' }, chain: { @@ -15482,44 +15575,51 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' } ] }, { - description: 'The native currency of the Realio Network.', + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', denom_units: [ { denom: - 'ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D', + 'ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336', exponent: 0, aliases: [ - 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' ] }, { - denom: 'rio', - exponent: 18 + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] } ], type_asset: 'ics20', - base: 'ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D', - name: 'Realio Network', - display: 'rio', - symbol: 'RIO', + base: 'ibc/0A5907BE1272D23F603B4AF1FFD292B004D8047FAB23764F08BBD50E6BB25336', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', chain_name: 'osmosis' }, chain: { @@ -15528,134 +15628,150 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' } ] }, { - description: "Membrane's CDP-style stablecoin called CDT", + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', denom_units: [ { denom: - 'ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7', + 'ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827', exponent: 0, aliases: [ - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' ] }, { - denom: 'cdt', + denom: 'usdc', exponent: 6 } ], - type_asset: 'sdk.coin', - base: 'ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7', - name: 'CDT Stablecoin', - display: 'cdt', - symbol: 'CDT', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' - } - ], - coingecko_id: 'collateralized-debt-token', + type_asset: 'ics20', + base: 'ibc/F7DEAB173D82F970E364DFF28E2EF7868D589D2D9303598AE4546A99DCEFE827', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } ] }, { - description: "Membrane's protocol token", + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', denom_units: [ { denom: - 'ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776', + 'ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951', exponent: 0, aliases: [ - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' ] }, { - denom: 'mbrn', - exponent: 6 - } - ], - type_asset: 'sdk.coin', - base: 'ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776', - name: 'Membrane', - display: 'mbrn', - symbol: 'MBRN', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + denom: 'YieldETH', + exponent: 18 } ], - coingecko_id: 'membrane', + type_asset: 'ics20', + base: 'ibc/19B88C95E1378E1EB066BFBEA0671E90A1768222E36ADF35C3146A888D361951', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } ] }, { - description: 'The native token of SGE Network', + description: 'The native staking token of XPLA.', denom_units: [ { denom: - 'ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E', + 'ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A', exponent: 0, aliases: [ - 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' ] }, { - denom: 'sge', - exponent: 6 + denom: 'xpla', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E', - name: 'SGE', - display: 'sge', - symbol: 'SGE', + base: 'ibc/3826C9724D3101EE873774B328F840FBA3F04C03D38025BF8C151CA645DC410A', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', chain_name: 'osmosis' }, chain: { @@ -15664,44 +15780,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' } ] }, { - description: 'The native staking and governance token of the StaFi Hub.', + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', denom_units: [ { denom: - 'ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD', + 'ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0', exponent: 0, aliases: [ - 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' ] }, { - denom: 'fis', + denom: 'oin', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD', - name: 'StaFi Hub', - display: 'fis', - symbol: 'FIS', + base: 'ibc/CF0E2CEA469CCEF50017F74DF1AE50478AFB70BD443B36E6B2BF3DA4E9B9C5F0', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', chain_name: 'osmosis' }, chain: { @@ -15710,42 +15827,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' } ] }, { - description: 'A liquid staking representation of staked ATOMs', + description: 'The token of Neokingdom DAO.', denom_units: [ { denom: - 'ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156', + 'ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333', exponent: 0, aliases: [ - 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' ] }, { - denom: 'ratom', - exponent: 6 + denom: 'neok', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156', - name: 'rATOM', - display: 'ratom', - symbol: 'rATOM', + base: 'ibc/D89A2606AEDE291C8090D1E6C7D6088A5D90C5CE02851D17A299F62107EA9333', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', chain_name: 'osmosis' }, chain: { @@ -15754,42 +15871,44 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' } ] }, { - description: 'The native token of ohhNFT.', + description: 'The native currency of the Realio Network.', denom_units: [ { denom: - 'ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7', + 'ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D', exponent: 0, aliases: [ - 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' ] }, { - denom: 'strdst', - exponent: 6 - } + denom: 'rio', + exponent: 18 + } ], type_asset: 'ics20', - base: 'ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7', - name: 'Stardust STRDST', - display: 'strdst', - symbol: 'STRDST', + base: 'ibc/9A04ABD460338446E3A5451B58E78E23DD0491C06AF7AED5595F3C414EFC467D', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', chain_name: 'osmosis' }, chain: { @@ -15798,139 +15917,134 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' } ] }, { - description: - 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + description: "Membrane's CDP-style stablecoin called CDT", denom_units: [ { denom: - 'ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B', + 'ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7', exponent: 0, aliases: [ - 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' ] }, { - denom: 'DORA', - exponent: 18 + denom: 'cdt', + exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B', - name: 'Dora Vota', - display: 'DORA', - symbol: 'DORA', + type_asset: 'sdk.coin', + base: 'ibc/29E4B969D10073DE451D80BDD915397FD68783FE95401378C7E3DCFC0BE01AF7', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' - }, - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' - } ] }, { - description: 'The native token of Coreum', + description: "Membrane's protocol token", denom_units: [ { denom: - 'ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0', + 'ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776', exponent: 0, aliases: [ - 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' ] }, { - denom: 'core', + denom: 'mbrn', exponent: 6 } ], - type_asset: 'ics20', - base: 'ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0', - name: 'Coreum', - display: 'core', - symbol: 'COREUM', + type_asset: 'sdk.coin', + base: 'ibc/6D26CDC660738D15E7199F8DB80E11D2CCDB96177B01C7356953371418EB8776', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' - } - ], - keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + ] }, { - description: '', + description: 'The native token of SGE Network', denom_units: [ { denom: - 'ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B', + 'ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E', exponent: 0, aliases: [ - 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' ] }, { - denom: 'tia', + denom: 'sge', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B', - name: 'Celestia', - display: 'tia', - symbol: 'TIA', + base: 'ibc/F8C85B9B60BA867A3F90881083FD6BF9DE2C24A9BC20514CFED523D05E551D4E', + name: 'SGE', + display: 'sge', + symbol: 'SGE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', chain_name: 'osmosis' }, chain: { @@ -15939,48 +16053,44 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' }, images: [ { - image_sync: { - chain_name: 'celestia', - base_denom: 'utia' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' } ] }, { - description: 'The native staking token of dYdX Protocol.', + description: 'The native staking and governance token of the StaFi Hub.', denom_units: [ { denom: - 'ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6', + 'ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD', exponent: 0, aliases: [ - 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' ] }, { - denom: 'dydx', - exponent: 18 + denom: 'fis', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6', - name: 'dYdX Protocol', - display: 'dydx', - symbol: 'DYDX', + base: 'ibc/59C14E7A2BCB2314B6132AF6B4371A1CE1C6EE72BE2350F0667872F2668777DD', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', chain_name: 'osmosis' }, chain: { @@ -15989,50 +16099,42 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' }, images: [ { - image_sync: { - chain_name: 'dydx', - base_denom: 'adydx' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' - }, - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' } ] }, { - description: 'The native staking token of the Function X', + description: 'A liquid staking representation of staked ATOMs', denom_units: [ { denom: - 'ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC', + 'ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156', exponent: 0, aliases: [ - 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' ] }, { - denom: 'WFX', - exponent: 18 + denom: 'ratom', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC', - name: 'f(x)Core', - display: 'WFX', - symbol: 'FX', + base: 'ibc/3450F50A455A4425912006980226848AD85EB7F324FA56CBE781D71CF6056156', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', chain_name: 'osmosis' }, chain: { @@ -16041,44 +16143,42 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' } ] }, { - description: 'Bitcoin. On Cosmos.', + description: 'The native token of ohhNFT.', denom_units: [ { denom: - 'ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437', + 'ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7', exponent: 0, aliases: [ - 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' ] }, { - denom: 'nbtc', - exponent: 14 + denom: 'strdst', + exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437', - name: 'Nomic Bitcoin', - display: 'nbtc', - symbol: 'nBTC', + base: 'ibc/92E53071C6F1A80FFB86D88E16765A4C67D567AAF2D2007B9F9FD587C88608C7', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', chain_name: 'osmosis' }, chain: { @@ -16087,48 +16187,45 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' }, images: [ { - image_sync: { - chain_name: 'nomic', - base_denom: 'usat' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' } ] }, { - description: 'The native token of Nois', + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', denom_units: [ { denom: - 'ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C', + 'ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B', exponent: 0, aliases: [ - 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' ] }, { - denom: 'nois', - exponent: 6 + denom: 'DORA', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C', - name: 'Nois', - display: 'nois', - symbol: 'NOIS', + base: 'ibc/486FE060AA4EA287B4C777946DB8012556273EEB5A42DE15FB309F17999C516B', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', chain_name: 'osmosis' }, chain: { @@ -16137,93 +16234,92 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' }, images: [ { - image_sync: { - chain_name: 'nois', - base_denom: 'unois' - }, - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' } - ], - keywords: ['nois', 'randomness', 'drand', 'wasm'] + ] }, { - description: 'Margined Power Token sqOSMO', + description: 'The native token of Coreum', denom_units: [ { denom: - 'ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D', + 'ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0', exponent: 0, aliases: [ - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' ] }, { - denom: 'sqosmo', + denom: 'core', exponent: 6 } ], - type_asset: 'sdk.coin', - base: 'ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D', - name: 'OSMO Squared', - display: 'sqosmo', - symbol: 'sqOSMO', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' - } - ], + type_asset: 'ics20', + base: 'ibc/682E8023C734693C064EF17B9307F99D73735916C7E173AC3956934982EEDEB0', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ] + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] }, { - description: 'The Revenue & Governance token of Unstake.fi', + description: '', denom_units: [ { denom: - 'ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952', + 'ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B', exponent: 0, aliases: [ - 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' ] }, { - denom: 'nstk', + denom: 'tia', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952', - name: 'Unstake Fi', - display: 'nstk', - symbol: 'NSTK', + base: 'ibc/16CFCBDEF03BBE9C74A5A2E8639690AC715795190E8A5701D3544C414B83115B', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', chain_name: 'osmosis' }, chain: { @@ -16232,42 +16328,48 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' } ] }, { - description: 'ohhNFT LP token.', + description: 'The native staking token of dYdX Protocol.', denom_units: [ { denom: - 'ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198', + 'ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6', exponent: 0, aliases: [ - 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' ] }, { - denom: 'BRNCH', - exponent: 6 + denom: 'dydx', + exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198', - name: 'Branch', - display: 'BRNCH', - symbol: 'BRNCH', + base: 'ibc/71D7D33A7B85309735075F89782D82EB9A58F723DA9FF14333330C88905FF8A6', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', chain_name: 'osmosis' }, chain: { @@ -16276,45 +16378,50 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' } ] }, { - description: - 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + description: 'The native staking token of the Function X', denom_units: [ { denom: - 'ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9', + 'ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC', exponent: 0, aliases: [ - 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' ] }, { - denom: 'wstETH', + denom: 'WFX', exponent: 18 } ], type_asset: 'ics20', - base: 'ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9', - name: 'Wrapped Lido Staked Ether', - display: 'wstETH', - symbol: 'wstETH', + base: 'ibc/74B270491273B107C54324609371FD6C637159F2D7C1CB92E0DDF68BC15463EC', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', chain_name: 'osmosis' }, chain: { @@ -16323,93 +16430,153 @@ const assets: AssetList = { } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' } ] }, { - description: 'Margined Power Token sqATOM', + description: 'Bitcoin. On Cosmos.', denom_units: [ { denom: - 'ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35', + 'ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437', exponent: 0, aliases: [ - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' ] }, { - denom: 'sqatom', - exponent: 6 + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/A9DE67210128FA89CCCDED0700AA26766C420D674799FD3945D107CA99546437', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } } ], - type_asset: 'sdk.coin', - base: 'ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35', - name: 'ATOM Squared', - display: 'sqatom', - symbol: 'sqATOM', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 } ], + type_asset: 'ics20', + base: 'ibc/34DA059221BDE59620EAF6B7F9F9FDF8FC4C7C5ADABD522147226E8FB7FEB85C', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', chain_name: 'osmosis' }, chain: { channel_id: 'channel-6' } } - ] + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] }, { - description: 'Margined Power Token sqBTC', + description: 'Margined Power Token sqOSMO', denom_units: [ { denom: - 'ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2', + 'ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D', exponent: 0, - aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] }, { - denom: 'sqbtc', + denom: 'sqosmo', exponent: 6 } ], type_asset: 'sdk.coin', - base: 'ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2', - name: 'BTC Squared', - display: 'sqbtc', - symbol: 'sqBTC', + base: 'ibc/13AC6977AB776AE4154CA3EE544DCCB5C0E55CB906DA1664049648085278AC5D', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' } ], - keywords: ['osmosis_unlisted'], traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-4', base_denom: - 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', chain_name: 'osmosis' }, chain: { @@ -16419,25 +16586,247 @@ const assets: AssetList = { ] }, { - description: 'QWOYN is the native governance token for Qwoyn Network', + description: 'The Revenue & Governance token of Unstake.fi', denom_units: [ { denom: - 'ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781', + 'ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952', exponent: 0, aliases: [ - 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' ] }, { - denom: 'qwoyn', + denom: 'nstk', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781', - name: 'Qwoyn', - display: 'qwoyn', + base: 'ibc/E38B7513BBF381DA381293017C9AE3E25C0BB538AB081EDF017E8FDCF93FB952', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/77F487981FB52311756C1FB0321C500784F9E12F2E8BA1A85F0A3DC3685FF198', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C56780827C1508D960B8ABBA0B10CC745F543353B98FB79A7EF9BA31290B3BE9', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/32B707DCBD6250C99EEF78C7023484903FB73E9F42C4F313938B942920562F35', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/2B8A8125B0CB2A01135655CD41A270FCF2CF39595DFE4E8A65233629EF80ECC2', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75AAB121F45BFC55D6453A9FB0AC5C70D35E3F5E5253A6B0D8E9BBC55D3DD781', + name: 'Qwoyn', + display: 'qwoyn', symbol: 'QWOYN', traces: [ { @@ -18401,53 +18790,100 @@ const assets: AssetList = { ] }, { - description: 'QCK - native token of Quicksilver', + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', denom_units: [ { denom: - 'ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61', + 'ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124', exponent: 0, - aliases: ['uqck'] + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] }, { - denom: 'qck', - exponent: 6, - aliases: [] + denom: 'ymos', + exponent: 6 } ], - base: 'ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61', - name: 'Quicksilver', - display: 'qck', - symbol: 'QCK', + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/C0BE5CBBF7D5540BFA0D52F24617EAD5946223318317195D2494118F56DAF124', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' }, - coingecko_id: 'quicksilver', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-16', - base_denom: 'uqck', - chain_name: 'quicksilver' + channel_id: 'channel-4', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' }, chain: { - channel_id: 'channel-73' + channel_id: 'channel-6' } } ] }, { - description: 'Quicksilver Liquid Staked STARS', + description: 'QCK - native token of Quicksilver', denom_units: [ { denom: - 'ibc/1DF0487AD7C5A0E1BD7C4F77448E99912122C76B8F38E05C857BFDBE015FC9F6', + 'ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61', + exponent: 0, + aliases: ['uqck'] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + coingecko_id: 'quicksilver', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-16', + base_denom: 'uqck', + chain_name: 'quicksilver' + }, + chain: { + channel_id: 'channel-73' + } + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/1DF0487AD7C5A0E1BD7C4F77448E99912122C76B8F38E05C857BFDBE015FC9F6', exponent: 0, aliases: ['uqstars'] }, @@ -19188,71 +19624,407 @@ const assets: AssetList = { ] }, { - description: 'The native token of Stride', + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16', + exponent: 0, + aliases: ['ustrd'] + }, + { + denom: 'strd', + exponent: 6 + } + ], + base: 'ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + coingecko_id: 'stride', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'ustrd', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88', + exponent: 0, + aliases: ['stuatom'] + }, + { + denom: 'statom', + exponent: 6 + } + ], + base: 'ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stuatom', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + coingecko_id: 'stride-staked-atom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/86187E4D8FE633056F317903FFA19C492B5068157375F72B1FF6EE7E325F5745', + exponent: 0, + aliases: ['stustars'] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + base: 'ibc/86187E4D8FE633056F317903FFA19C492B5068157375F72B1FF6EE7E325F5745', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stustars', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + coingecko_id: 'stride-staked-stars', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/26D6E1FF4D65B4A13B9B2D8A3C87BA94B0BF866F4C73F37E8FA77FCB39C37F91', + exponent: 0, + aliases: ['stuosmo'] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + base: 'ibc/26D6E1FF4D65B4A13B9B2D8A3C87BA94B0BF866F4C73F37E8FA77FCB39C37F91', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stuosmo', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + coingecko_id: 'stride-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/038A211E7F3FE7B1D7C7AA87DB440B79161975C3772129B5280AB5B690E5E748', + exponent: 0, + aliases: ['stujuno'] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + base: 'ibc/038A211E7F3FE7B1D7C7AA87DB440B79161975C3772129B5280AB5B690E5E748', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stujuno', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + coingecko_id: 'stride-staked-juno', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189', + exponent: 0, + aliases: ['stuluna'] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + base: 'ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stuluna', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + coingecko_id: 'stride-staked-luna', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/5D026DBEC2EFED9669092E20A5BF9A58C04E4F78D488BCFC18F014183630ED27', + exponent: 0, + aliases: ['stinj'] + }, + { + denom: 'stINJ', + exponent: 18 + } + ], + base: 'ibc/5D026DBEC2EFED9669092E20A5BF9A58C04E4F78D488BCFC18F014183630ED27', + name: 'Stride Staked INJ', + display: 'stINJ', + symbol: 'stINJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stinj', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F', + exponent: 0, + aliases: ['staevmos'] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + base: 'ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'staevmos', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + coingecko_id: 'stride-staked-evmos', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", denom_units: [ { denom: - 'ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16', + 'ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB', exponent: 0, - aliases: ['ustrd'] + aliases: ['stadydx'] }, { - denom: 'strd', - exponent: 6 - } - ], - base: 'ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16', - name: 'Stride', - display: 'strd', - symbol: 'STRD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' - }, - coingecko_id: 'stride', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + denom: 'stDYDX', + exponent: 18 } ], + base: 'ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-53', - base_denom: 'ustrd', + base_denom: 'stadydx', chain_name: 'stride' }, chain: { channel_id: 'channel-67' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } ] }, { + description: "Stride's liquid staked TIA", denom_units: [ { denom: - 'ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88', + 'ibc/0F16A6C994A8A8C9A5F464837A1DD02768309A23D836123422C41FF1FDE4B34C', exponent: 0, - aliases: ['stuatom'] + aliases: ['stutia'] }, { - denom: 'statom', + denom: 'stTIA', exponent: 6 } ], - base: 'ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88', - name: 'Stride Staked ATOM', - display: 'statom', - symbol: 'stATOM', + base: 'ibc/0F16A6C994A8A8C9A5F464837A1DD02768309A23D836123422C41FF1FDE4B34C', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-53', - base_denom: 'stuatom', + base_denom: 'stutia', chain_name: 'stride' }, chain: { @@ -19261,14 +20033,13 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' }, - coingecko_id: 'stride-staked-atom', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' } ] }, @@ -19276,25 +20047,25 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/86187E4D8FE633056F317903FFA19C492B5068157375F72B1FF6EE7E325F5745', + 'ibc/0BBFD7B5982349B7A11A9EC3C1A596D81D37413C923C166C65649CECEBBBF06D', exponent: 0, - aliases: ['stustars'] + aliases: ['stuumee'] }, { - denom: 'ststars', + denom: 'stumee', exponent: 6 } ], - base: 'ibc/86187E4D8FE633056F317903FFA19C492B5068157375F72B1FF6EE7E325F5745', - name: 'Stride Staked STARS', - display: 'ststars', - symbol: 'stSTARS', + base: 'ibc/0BBFD7B5982349B7A11A9EC3C1A596D81D37413C923C166C65649CECEBBBF06D', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-53', - base_denom: 'stustars', + base_denom: 'stuumee', chain_name: 'stride' }, chain: { @@ -19303,14 +20074,14 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' }, - coingecko_id: 'stride-staked-stars', + coingecko_id: 'stride-staked-umee', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' } ] }, @@ -19318,25 +20089,25 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/26D6E1FF4D65B4A13B9B2D8A3C87BA94B0BF866F4C73F37E8FA77FCB39C37F91', + 'ibc/A0C4D6604F8AE13137CE28EED2C3F893880B832FE317EC9D817AEAD3F1A0F7EA', exponent: 0, - aliases: ['stuosmo'] + aliases: ['stucmdx'] }, { - denom: 'stosmo', + denom: 'stcmdx', exponent: 6 } ], - base: 'ibc/26D6E1FF4D65B4A13B9B2D8A3C87BA94B0BF866F4C73F37E8FA77FCB39C37F91', - name: 'Stride Staked OSMO', - display: 'stosmo', - symbol: 'stOSMO', + base: 'ibc/A0C4D6604F8AE13137CE28EED2C3F893880B832FE317EC9D817AEAD3F1A0F7EA', + name: 'Stride Staked CMDX', + display: 'stcmdx', + symbol: 'stCMDX', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-53', - base_denom: 'stuosmo', + base_denom: 'stucmdx', chain_name: 'stride' }, chain: { @@ -19345,14 +20116,13 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' }, - coingecko_id: 'stride-staked-osmo', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' } ] }, @@ -19360,25 +20130,25 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/038A211E7F3FE7B1D7C7AA87DB440B79161975C3772129B5280AB5B690E5E748', + 'ibc/4D3EA0C8F70A255E6E84D4E60D39844A07899AFF32327E6D8B1DC277D6764B09', exponent: 0, - aliases: ['stujuno'] + aliases: ['stusomm'] }, { - denom: 'stjuno', + denom: 'stsomm', exponent: 6 } ], - base: 'ibc/038A211E7F3FE7B1D7C7AA87DB440B79161975C3772129B5280AB5B690E5E748', - name: 'Stride Staked JUNO', - display: 'stjuno', - symbol: 'stJUNO', + base: 'ibc/4D3EA0C8F70A255E6E84D4E60D39844A07899AFF32327E6D8B1DC277D6764B09', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-53', - base_denom: 'stujuno', + base_denom: 'stusomm', chain_name: 'stride' }, chain: { @@ -19387,390 +20157,473 @@ const assets: AssetList = { } ], logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' }, - coingecko_id: 'stride-staked-juno', + coingecko_id: 'stride-staked-sommelier', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' } ] }, { + description: 'The native token of Umee', denom_units: [ { denom: - 'ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189', + 'ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58', exponent: 0, - aliases: ['stuluna'] + aliases: ['uumee'] }, { - denom: 'stluna', + denom: 'umee', exponent: 6 } ], - base: 'ibc/127F2F22E18B843030CF6003D3AB025DC40A53F7507F078BB6A4FA7C86E50189', - name: 'Stride Staked LUNA', - display: 'stluna', - symbol: 'stLUNA', + base: 'ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-53', - base_denom: 'stuluna', - chain_name: 'stride' + channel_id: 'channel-51', + base_denom: 'uumee', + chain_name: 'umee' }, chain: { - channel_id: 'channel-67' + channel_id: 'channel-81' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' - }, - coingecko_id: 'stride-staked-luna', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' - } ] }, { + description: 'The native token cw20 for SIENNA on Secret Network', denom_units: [ { denom: - 'ibc/5D026DBEC2EFED9669092E20A5BF9A58C04E4F78D488BCFC18F014183630ED27', + 'ibc/68518DD026EC5D3BD14CDDD85B7BA5325613A5F8E262A9FE38EA9C5A30858178', exponent: 0, - aliases: ['stinj'] + aliases: ['cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4'] }, { - denom: 'stINJ', + denom: 'sienna', exponent: 18 } ], - base: 'ibc/5D026DBEC2EFED9669092E20A5BF9A58C04E4F78D488BCFC18F014183630ED27', - name: 'Stride Staked INJ', - display: 'stINJ', - symbol: 'stINJ', + type_asset: 'snip20', + address: 'secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', + base: 'ibc/68518DD026EC5D3BD14CDDD85B7BA5325613A5F8E262A9FE38EA9C5A30858178', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + coingecko_id: 'sienna', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stinj', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/EBC1C04E9027F7AF0DA11F5B8B57486C89666CF78D83394E276D1C7FD1DF505E', + exponent: 0, + aliases: ['cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d'] + }, + { + denom: 'shd', + exponent: 8 + } ], + type_asset: 'snip20', + address: 'secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', + base: 'ibc/EBC1C04E9027F7AF0DA11F5B8B57486C89666CF78D83394E276D1C7FD1DF505E', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', + chain_name: 'secretnetwork' + }, + chain: { + port: 'transfer', + channel_id: 'channel-159' + } } ] }, { + description: 'The native token cw20 for Shade on Secret Network', denom_units: [ { denom: - 'ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F', + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', exponent: 0, - aliases: ['staevmos'] + aliases: ['cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm'] }, { - denom: 'stevmos', - exponent: 18 + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'snip25', + address: 'secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', + base: 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + coingecko_id: 'shade-protocol', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' } ], - base: 'ibc/844664855C3703A00253D80466629C68AE2AAE799B2CC6515A0874219F24DC3F', - name: 'Stride Staked EVMOS', - display: 'stevmos', - symbol: 'stEVMOS', traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'staevmos', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' - }, - coingecko_id: 'stride-staked-evmos', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' - } ] }, { - description: "Stride's liquid staked DYDX", + description: 'The native token cw20 for Silk on Secret Network', denom_units: [ { denom: - 'ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB', + 'ibc/BC67610F1AA72BE9DEABAC3F3D5A04CEB575DA8DF675B0FDD3FC1A0F02411541', exponent: 0, - aliases: ['stadydx'] + aliases: ['cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd'] }, { - denom: 'stDYDX', - exponent: 18 + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'snip25', + address: 'secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', + base: 'ibc/BC67610F1AA72BE9DEABAC3F3D5A04CEB575DA8DF675B0FDD3FC1A0F02411541', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + coingecko_id: 'silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' } ], - base: 'ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB', - name: 'Stride Staked DYDX', - display: 'stDYDX', - symbol: 'stDYDX', traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stadydx', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' - } ] }, { - description: "Stride's liquid staked TIA", + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', denom_units: [ { denom: - 'ibc/0F16A6C994A8A8C9A5F464837A1DD02768309A23D836123422C41FF1FDE4B34C', + 'ibc/2109E1D3B5EADB28EF9BD864C3EDACC4E2D61E96A1BF172CEFAEAD7240C52300', exponent: 0, - aliases: ['stutia'] + aliases: ['cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4'] }, { - denom: 'stTIA', + denom: 'stkd-scrt', exponent: 6 } ], - base: 'ibc/0F16A6C994A8A8C9A5F464837A1DD02768309A23D836123422C41FF1FDE4B34C', - name: 'Stride Staked TIA', - display: 'stTIA', - symbol: 'stTIA', + type_asset: 'snip20', + address: 'secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', + base: 'ibc/2109E1D3B5EADB28EF9BD864C3EDACC4E2D61E96A1BF172CEFAEAD7240C52300', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + coingecko_id: 'stkd-scrt', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stutia', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' - } ] }, { + description: 'The native token cw20 for Button on Secret Network', denom_units: [ { denom: - 'ibc/0BBFD7B5982349B7A11A9EC3C1A596D81D37413C923C166C65649CECEBBBF06D', + 'ibc/EFB90BFE39BC367F182DC3A6EA8C26BB61D049CB4AE3F8309F1BC1C5213E8F8E', exponent: 0, - aliases: ['stuumee'] + aliases: ['cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt'] }, { - denom: 'stumee', + denom: 'butt', exponent: 6 } ], - base: 'ibc/0BBFD7B5982349B7A11A9EC3C1A596D81D37413C923C166C65649CECEBBBF06D', - name: 'Stride Staked UMEE', - display: 'stumee', - symbol: 'stUMEE', + type_asset: 'snip20', + address: 'secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', + base: 'ibc/EFB90BFE39BC367F182DC3A6EA8C26BB61D049CB4AE3F8309F1BC1C5213E8F8E', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + coingecko_id: 'buttcoin-2', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stuumee', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' - }, - coingecko_id: 'stride-staked-umee', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' - } ] }, { + description: 'The native token cw20 for Alter on Secret Network', denom_units: [ { denom: - 'ibc/A0C4D6604F8AE13137CE28EED2C3F893880B832FE317EC9D817AEAD3F1A0F7EA', + 'ibc/38BD2305971B1204C579A8035E124F0BD22E95A97222E710534C59234D62313C', exponent: 0, - aliases: ['stucmdx'] + aliases: ['cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej'] }, { - denom: 'stcmdx', + denom: 'alter', exponent: 6 } ], - base: 'ibc/A0C4D6604F8AE13137CE28EED2C3F893880B832FE317EC9D817AEAD3F1A0F7EA', - name: 'Stride Staked CMDX', - display: 'stcmdx', - symbol: 'stCMDX', + base: 'ibc/38BD2305971B1204C579A8035E124F0BD22E95A97222E710534C59234D62313C', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + coingecko_id: 'alter', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stucmdx', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.svg' - } ] }, { + description: 'The native token cw20 for Amber on Secret Network', denom_units: [ { denom: - 'ibc/4D3EA0C8F70A255E6E84D4E60D39844A07899AFF32327E6D8B1DC277D6764B09', + 'ibc/D0E42EF41DCF434D5C871A6E32E9C6FA826FBF5973C88FD8F1742190906B9519', exponent: 0, - aliases: ['stusomm'] + aliases: ['cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852'] }, { - denom: 'stsomm', + denom: 'amber', exponent: 6 } ], - base: 'ibc/4D3EA0C8F70A255E6E84D4E60D39844A07899AFF32327E6D8B1DC277D6764B09', - name: 'Stride Staked SOMM', - display: 'stsomm', - symbol: 'stSOMM', + type_asset: 'snip20', + address: 'secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', + base: 'ibc/D0E42EF41DCF434D5C871A6E32E9C6FA826FBF5973C88FD8F1742190906B9519', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-53', - base_denom: 'stusomm', - chain_name: 'stride' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-67' + port: 'transfer', + channel_id: 'channel-159' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' - }, - coingecko_id: 'stride-staked-sommelier', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' - } ] }, { - description: 'The native token of Umee', + description: 'The native token cw20 for Shill on Secret Network', denom_units: [ { denom: - 'ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58', + 'ibc/52A56EDD3489C0ED48BD3EE0E9C851709418372B8580730CC4C51BDBA8C477B9', exponent: 0, - aliases: ['uumee'] + aliases: ['cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse'] }, { - denom: 'umee', + denom: 'shill', exponent: 6 } ], - base: 'ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58', - name: 'Umee', - display: 'umee', - symbol: 'UMEE', + type_asset: 'snip25', + address: 'secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', + base: 'ibc/52A56EDD3489C0ED48BD3EE0E9C851709418372B8580730CC4C51BDBA8C477B9', + name: 'Shill', + display: 'shill', + symbol: 'SHILL', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' }, - coingecko_id: 'umee', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' } ], traces: [ { - type: 'ibc', + type: 'ibc-cw20', counterparty: { - channel_id: 'channel-51', - base_denom: 'uumee', - chain_name: 'umee' + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-132', + base_denom: 'cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', + chain_name: 'secretnetwork' }, chain: { - channel_id: 'channel-81' + port: 'transfer', + channel_id: 'channel-159' } } ] diff --git a/packages/assets/src/mainnet/planq.ts b/packages/assets/src/mainnet/planq.ts index 76819cb2e..2ab65b5bb 100644 --- a/packages/assets/src/mainnet/planq.ts +++ b/packages/assets/src/mainnet/planq.ts @@ -15730,6 +15730,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-492', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ diff --git a/packages/assets/src/mainnet/provenance.ts b/packages/assets/src/mainnet/provenance.ts index 56ffba583..d540e8dfb 100644 --- a/packages/assets/src/mainnet/provenance.ts +++ b/packages/assets/src/mainnet/provenance.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/7D32BBC3C02F0E730FC564400A585E167C88EE1B2A60EDDDA6B265D0719FFFF7', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/7D32BBC3C02F0E730FC564400A585E167C88EE1B2A60EDDDA6B265D0719FFFF7', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-222', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pundix.ts b/packages/assets/src/mainnet/pundix.ts index 469dac6e4..2f7f18041 100644 --- a/packages/assets/src/mainnet/pundix.ts +++ b/packages/assets/src/mainnet/pundix.ts @@ -13684,6 +13684,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12618', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pylons.ts b/packages/assets/src/mainnet/pylons.ts new file mode 100644 index 000000000..6e1c6a6c6 --- /dev/null +++ b/packages/assets/src/mainnet/pylons.ts @@ -0,0 +1,13650 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'pylons', + assets: [ + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/C17BEA901C0E95951F19646D784F703FEFC03201005712A50D79D7B55669D44B', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/C17BEA901C0E95951F19646D784F703FEFC03201005712A50D79D7B55669D44B', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/E456F722A5AAF902414E1144449B6C0BA278F7A7D82001E2A0AC17A3EBE0476E', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/E456F722A5AAF902414E1144449B6C0BA278F7A7D82001E2A0AC17A3EBE0476E', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/CDD31D71C0FE4EF59F1CD1315DFA1D9D94C2B1CE1EE19104A462D001DAB05754', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CDD31D71C0FE4EF59F1CD1315DFA1D9D94C2B1CE1EE19104A462D001DAB05754', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/D466F47F8E7979C2C87C83432A0173930544B60049FC89C9153556279723DF38', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D466F47F8E7979C2C87C83432A0173930544B60049FC89C9153556279723DF38', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/9069D64CF40D9D9D330AF7BEE326DEE3403D23A60F217C16678CEB75E25118FA', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/9069D64CF40D9D9D330AF7BEE326DEE3403D23A60F217C16678CEB75E25118FA', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/07ED686639E38F2A6982DBDFD05A3C7A044421DFBFFA2D028457E8D0B7FC3DF6', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/07ED686639E38F2A6982DBDFD05A3C7A044421DFBFFA2D028457E8D0B7FC3DF6', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/3BF6BB0216ED3DF16BCCD7630B0BCB1266AFC0C38CB6D177C5F10215ACE1227F', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3BF6BB0216ED3DF16BCCD7630B0BCB1266AFC0C38CB6D177C5F10215ACE1227F', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/1DEF358BC610F32E412DC46C782A9518D890C29DF1932EC6D2F5F1B1A5FBC24C', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1DEF358BC610F32E412DC46C782A9518D890C29DF1932EC6D2F5F1B1A5FBC24C', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/1A68A984B07780931FA9118E7C5BE63C24270BEF092746C43E852E2EF96B65F2', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1A68A984B07780931FA9118E7C5BE63C24270BEF092746C43E852E2EF96B65F2', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/8E63D02A001BAD7315B28674AC984777F1D633FBF8B1BE3DB5450C139CF2BD45', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8E63D02A001BAD7315B28674AC984777F1D633FBF8B1BE3DB5450C139CF2BD45', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/AAC922C5EB250D3AE2A56206B5AB5D2A37E8BAE2770F77F61774D9C7DCD5A93C', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AAC922C5EB250D3AE2A56206B5AB5D2A37E8BAE2770F77F61774D9C7DCD5A93C', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/CE2ACAC2753BFBD015A7879842B9B019C504D31C088322FE6B6105EA067F125A', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CE2ACAC2753BFBD015A7879842B9B019C504D31C088322FE6B6105EA067F125A', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/4C8A4AA1521DE63E13A136D154BD323D98D7AE0E660F102DB4A8BC1977C18B65', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4C8A4AA1521DE63E13A136D154BD323D98D7AE0E660F102DB4A8BC1977C18B65', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/E51E3B2F31F8EBC01F5AC2145F9D62229BE1E2FB77060425B32706B794BD2978', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/E51E3B2F31F8EBC01F5AC2145F9D62229BE1E2FB77060425B32706B794BD2978', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/0167D227A5D9FE3DEE71FB190B6365A89B16F81B456ED747E83B8BBF74BB110A', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0167D227A5D9FE3DEE71FB190B6365A89B16F81B456ED747E83B8BBF74BB110A', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/2E396EACFD1D80BBC5F5D865A94BD552EAF2A8F093B38DFCBAE99F6C3A590F31', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/2E396EACFD1D80BBC5F5D865A94BD552EAF2A8F093B38DFCBAE99F6C3A590F31', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/FC04E231DB5306F6B5F30E9EB5198B764B6565A5F7BCDB2A9D1F37787F994443', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FC04E231DB5306F6B5F30E9EB5198B764B6565A5F7BCDB2A9D1F37787F994443', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/A8C9FE69AD3EC0C01F17D3BEADE96DE0F0FAF70EC94BEB5AB7907EB979199826', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A8C9FE69AD3EC0C01F17D3BEADE96DE0F0FAF70EC94BEB5AB7907EB979199826', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/28675093A4BB0C7297140CA55711165236793E18BD1B512594F4BD6882901A82', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/28675093A4BB0C7297140CA55711165236793E18BD1B512594F4BD6882901A82', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/39A893EC35AB45C67CA1ECAA409A0A0C1411A0E96AA9B39253BC9CF126CB4D37', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/39A893EC35AB45C67CA1ECAA409A0A0C1411A0E96AA9B39253BC9CF126CB4D37', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/F7537170C1DE072005D9B42BBD2DFCF1CDB7A1EACB4F6A2348628ADA9ED6154E', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F7537170C1DE072005D9B42BBD2DFCF1CDB7A1EACB4F6A2348628ADA9ED6154E', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/6A857D1F53C1F329CD58B2ED0C470702E64527F237B7A1E18CFA0082EA67FFDE', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A857D1F53C1F329CD58B2ED0C470702E64527F237B7A1E18CFA0082EA67FFDE', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/3A1E49B143774F2AE97AE593340966CC7DFD8B6D0AD63C70743E911C7912CB85', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3A1E49B143774F2AE97AE593340966CC7DFD8B6D0AD63C70743E911C7912CB85', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/3BC9167951AAB7C5D709D6DCBC79773056EFEF71EEF4EF3A6586F7FC58644C16', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3BC9167951AAB7C5D709D6DCBC79773056EFEF71EEF4EF3A6586F7FC58644C16', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/913C10E0C95212919F526A7D59C2E6E346A03F6794574CD0319386AB2065308A', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/913C10E0C95212919F526A7D59C2E6E346A03F6794574CD0319386AB2065308A', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/20D2D3441E3DC5CD0F1F45B4F04DFFAB41F74AE7EAE3355D11C993CD3B463807', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/20D2D3441E3DC5CD0F1F45B4F04DFFAB41F74AE7EAE3355D11C993CD3B463807', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/4C15B764DCC7DE6E404DE3FACAC875D3E192EB29F2A88C7790B66B55D6EC5030', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4C15B764DCC7DE6E404DE3FACAC875D3E192EB29F2A88C7790B66B55D6EC5030', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/798D721A7A8C3AE372F45EAE76B8FF6A6DC4FF6E04AF4FE7436CBB3CBE4ACC2D', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/798D721A7A8C3AE372F45EAE76B8FF6A6DC4FF6E04AF4FE7436CBB3CBE4ACC2D', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/2B27BC90E16093AA5EFBE332BB7AB82D07B34F3A20EEF08EBD647E7015774B1A', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2B27BC90E16093AA5EFBE332BB7AB82D07B34F3A20EEF08EBD647E7015774B1A', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/764DB300B54557737BF7B8056354A43DD13D1C7BB4A054848ED47DBEF89572EA', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/764DB300B54557737BF7B8056354A43DD13D1C7BB4A054848ED47DBEF89572EA', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/C7A2D23B49B41919C0973F0D13823B472FA8998C858BB6DE3DFE4D02F6ABF8B0', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C7A2D23B49B41919C0973F0D13823B472FA8998C858BB6DE3DFE4D02F6ABF8B0', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/638D81EBCC6531A6AB79F3FDBFFBBA6A7CF2586BFCBE7C49F00A436227FF9C40', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/638D81EBCC6531A6AB79F3FDBFFBBA6A7CF2586BFCBE7C49F00A436227FF9C40', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/B2FA71E6F4840F203F804BA38F43BDA1C9F4CA48C64EA01DF51FF6193AA4F1EC', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B2FA71E6F4840F203F804BA38F43BDA1C9F4CA48C64EA01DF51FF6193AA4F1EC', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/CC1EBC33D8C8F13D943D8DF016A15C3AE125AC7A9BBE14A7152BDC3FE05B9B26', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CC1EBC33D8C8F13D943D8DF016A15C3AE125AC7A9BBE14A7152BDC3FE05B9B26', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/10BB7D22E0C42554E444CA56420D7832A0691AAB8EA3ECC5FBB40DEC9C3554AB', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/10BB7D22E0C42554E444CA56420D7832A0691AAB8EA3ECC5FBB40DEC9C3554AB', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/C1171C4FCB8F3BE40D919098AB13CB85E73ABEB7A22B0615AAAFAC0EE8663550', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C1171C4FCB8F3BE40D919098AB13CB85E73ABEB7A22B0615AAAFAC0EE8663550', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/85B7406C7E8F2A0F99C03E8A3E3B725C30DDD2C227243A2C930E343B14EBC49D', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/85B7406C7E8F2A0F99C03E8A3E3B725C30DDD2C227243A2C930E343B14EBC49D', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/32455DD7AA84B84948AD90D68B2CC08C428DE5A3C1E3390892CF2DCC86CF9F8D', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/32455DD7AA84B84948AD90D68B2CC08C428DE5A3C1E3390892CF2DCC86CF9F8D', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/7F7588A99B16E0C7215AB1638863BFAF21D252021C641ED69BC428592A22DE64', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F7588A99B16E0C7215AB1638863BFAF21D252021C641ED69BC428592A22DE64', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/41DE0377081A4993F06C350B8B7404F64E349EE1DB3FA098D0A149E34CDCF50B', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/41DE0377081A4993F06C350B8B7404F64E349EE1DB3FA098D0A149E34CDCF50B', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/A2F64BC66E49125250BB41E8DA941DAA508CF22522DD3C5D0B3EC7D5354D13A8', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A2F64BC66E49125250BB41E8DA941DAA508CF22522DD3C5D0B3EC7D5354D13A8', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/F6B7E83721758F2A70EF8D3BE21D9D458393E22B3B417EF01A5C219DBC4EBE2B', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6B7E83721758F2A70EF8D3BE21D9D458393E22B3B417EF01A5C219DBC4EBE2B', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/0A91CE0EEBACD1A0106F9C70851BA2385A77F3EB70B6008BFFF2C5ECEC8D2AFA', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0A91CE0EEBACD1A0106F9C70851BA2385A77F3EB70B6008BFFF2C5ECEC8D2AFA', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/DDF63F82F50540F4FBDB0D412E54DD1CA1313BCEA3EA63D6F7527F827C160596', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DDF63F82F50540F4FBDB0D412E54DD1CA1313BCEA3EA63D6F7527F827C160596', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/623CE6B39146B5705339F24174216F1EAD4DD0CEF2C30C2581796808430C084D', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/623CE6B39146B5705339F24174216F1EAD4DD0CEF2C30C2581796808430C084D', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/4D0C6D18EB1BA4EDE37A13570380AE39160EDB5F66A95FC36ACC9C9737A3FAB6', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4D0C6D18EB1BA4EDE37A13570380AE39160EDB5F66A95FC36ACC9C9737A3FAB6', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/5DE0B879A04F0DE23363D971FE6414B28DAE6AB4EAE4AF368F4497598787DCFE', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5DE0B879A04F0DE23363D971FE6414B28DAE6AB4EAE4AF368F4497598787DCFE', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/0D18E09DE9C57A5B510255008DE42E633A14603702B14DC4EE50E6BF22E251D9', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0D18E09DE9C57A5B510255008DE42E633A14603702B14DC4EE50E6BF22E251D9', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/55CABF30BA0B4BE90A6401853835617F0F7BA35176195804CF2D94130353BA49', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/55CABF30BA0B4BE90A6401853835617F0F7BA35176195804CF2D94130353BA49', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/896E653BA091E17B4229E98E460F3244ACD05E2338BA9296522F5505CD3B0ABD', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/896E653BA091E17B4229E98E460F3244ACD05E2338BA9296522F5505CD3B0ABD', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/7483242872C9BFB627DEDA18E0C69FD358FF50EFAC5947082B9D7C4226AA2D84', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/7483242872C9BFB627DEDA18E0C69FD358FF50EFAC5947082B9D7C4226AA2D84', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/A0347A359A169372E597194124301933D9DFCA2A8DC6CD4AC74CE534A5A016D2', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/A0347A359A169372E597194124301933D9DFCA2A8DC6CD4AC74CE534A5A016D2', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/831C2E8AC392621A91873AC9D8AC4A65191752ED6B43B6FB3F345EC1F3F3B2E0', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/831C2E8AC392621A91873AC9D8AC4A65191752ED6B43B6FB3F345EC1F3F3B2E0', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/F15317BAFAC69BD4C93D960711F006A1B87DE5FD7626344E522E400D60047823', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F15317BAFAC69BD4C93D960711F006A1B87DE5FD7626344E522E400D60047823', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/A6A1EB7CE2C9FA07FA7219E573510C36A7E2B3026E4D7C04FF2E5B17F2180376', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A6A1EB7CE2C9FA07FA7219E573510C36A7E2B3026E4D7C04FF2E5B17F2180376', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/F9096FD74C6D7C82BEAEC5FA69F735864A95B73DAD39A43AD9919BB811EDB0BB', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F9096FD74C6D7C82BEAEC5FA69F735864A95B73DAD39A43AD9919BB811EDB0BB', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/C194C189C24E8AF4282C53E3B39DD9A3D1A19D235FB8C6D4CFF0051279A2F234', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C194C189C24E8AF4282C53E3B39DD9A3D1A19D235FB8C6D4CFF0051279A2F234', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/6205BA99B8F0FE01FAC4EF6CE5DF8B6337321D6BC648EF8C44320B4B7143F3A2', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/6205BA99B8F0FE01FAC4EF6CE5DF8B6337321D6BC648EF8C44320B4B7143F3A2', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/F1F8BD696EEFB899F71E9E79079A75CC9ED066428D0A14670476BC2DEF6F04FF', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F1F8BD696EEFB899F71E9E79079A75CC9ED066428D0A14670476BC2DEF6F04FF', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/7036B729C49AD51E6191C14FD572A70299EDF6B5583C85B37A879F9115F5DEEB', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7036B729C49AD51E6191C14FD572A70299EDF6B5583C85B37A879F9115F5DEEB', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/F645AC270639637E387FDC5D5CFBE6C629AAFA5397752E40CAC67B729A7C24A7', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F645AC270639637E387FDC5D5CFBE6C629AAFA5397752E40CAC67B729A7C24A7', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/74ADF1FEC6CBB4CFFA09D3DB7F30DA27161E8E44D8083648F79725C143A1CBB0', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/74ADF1FEC6CBB4CFFA09D3DB7F30DA27161E8E44D8083648F79725C143A1CBB0', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/7C0AE050BCF638BBF31724F8055F480EEBBD3228C752F59002BEADFF206D9BC6', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7C0AE050BCF638BBF31724F8055F480EEBBD3228C752F59002BEADFF206D9BC6', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/0A93C783EE5B6075F0CDE087CB5DE8EA0CD05CEDF96FE08D3A5979F8B3F3038B', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0A93C783EE5B6075F0CDE087CB5DE8EA0CD05CEDF96FE08D3A5979F8B3F3038B', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/91BDB54A1246C523FC37C86D5046F07DA2D302EDD7F651699B2ED7945E20A048', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/91BDB54A1246C523FC37C86D5046F07DA2D302EDD7F651699B2ED7945E20A048', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/B8B6B89B8F1008B5788D2D50EBC122840732EE7453FBD4AEBF4A5556F0023C45', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B8B6B89B8F1008B5788D2D50EBC122840732EE7453FBD4AEBF4A5556F0023C45', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/E5AC10013F05E98F7FD96AD74A92CB52CF75652F3128A36D3C6CC652E1045D64', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5AC10013F05E98F7FD96AD74A92CB52CF75652F3128A36D3C6CC652E1045D64', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/39D25AD9E1D3360558B07E8D1626B66A3AE3E6636AE087CCFF414E429E50FBCD', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/39D25AD9E1D3360558B07E8D1626B66A3AE3E6636AE087CCFF414E429E50FBCD', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/79AD4613CE92CC8C0310DDDA7271CF39D6A9DC629E10554769B9B5A0272193F5', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/79AD4613CE92CC8C0310DDDA7271CF39D6A9DC629E10554769B9B5A0272193F5', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/965570B2076A7823F84C7DB92BF98E71113530BE7128F5ADDD57C7D42B8525D8', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/965570B2076A7823F84C7DB92BF98E71113530BE7128F5ADDD57C7D42B8525D8', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/32E2AE52D09E7F58AA179EFC96B5F23C768D6129D6C8D83B369B58CEB1CC0F5F', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/32E2AE52D09E7F58AA179EFC96B5F23C768D6129D6C8D83B369B58CEB1CC0F5F', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/9284840E426318C146B32167EC27285C086478987036E7CAC2A016B913A9FB15', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9284840E426318C146B32167EC27285C086478987036E7CAC2A016B913A9FB15', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/8DFED56EC76D378FA09BB93D15CF466CE711D0465D63B1E3963286E160B539F1', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/8DFED56EC76D378FA09BB93D15CF466CE711D0465D63B1E3963286E160B539F1', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/CA8FED508176E3C5AD61E9A9C52CA1456B7A8C48E140FF4454A4AF92797F561E', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CA8FED508176E3C5AD61E9A9C52CA1456B7A8C48E140FF4454A4AF92797F561E', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/BDCAABC6DDF0532B7785899C45EDB6A050525C20A5265701EBCF944BEC2F6DE8', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BDCAABC6DDF0532B7785899C45EDB6A050525C20A5265701EBCF944BEC2F6DE8', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/6CE5384A23FC5638F4141CF68BC286D33D3B3D97E7045215A5E027CBD053AC72', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6CE5384A23FC5638F4141CF68BC286D33D3B3D97E7045215A5E027CBD053AC72', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/5A5BD98B57384A282974B9D83B751C7CF102CB94B243A7888A30DD37365F0199', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5A5BD98B57384A282974B9D83B751C7CF102CB94B243A7888A30DD37365F0199', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/ECEF718A8837D5168EBE80DB86F56D8D13916B596856B736B82FCF38E8456B63', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECEF718A8837D5168EBE80DB86F56D8D13916B596856B736B82FCF38E8456B63', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/832F3EC6B6C182189C3DEE41D61E11BCA76D593A45D3DF66FBAB3554CBFEA936', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/832F3EC6B6C182189C3DEE41D61E11BCA76D593A45D3DF66FBAB3554CBFEA936', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/F59A289912A7F68A61609CD6D0073DABF88A1369D3AE799BE8F47BAD3AC82A15', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F59A289912A7F68A61609CD6D0073DABF88A1369D3AE799BE8F47BAD3AC82A15', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/18207E4788EBA175D3D481FC66D399655D27162F493D14DDF1F832310B315961', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/18207E4788EBA175D3D481FC66D399655D27162F493D14DDF1F832310B315961', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/8EF0F9406C7C4CAAFF12964B65AB6D47128D9DDA186A32A05D6FD936B7937D7C', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8EF0F9406C7C4CAAFF12964B65AB6D47128D9DDA186A32A05D6FD936B7937D7C', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/73ABD319A8340AE4FCCDEE48C7CB4D59688EEA5D0B0D2DF1BB7339687FD04888', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/73ABD319A8340AE4FCCDEE48C7CB4D59688EEA5D0B0D2DF1BB7339687FD04888', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/81A961D7CF61846C5C2B87A3205650DCDF84ECDD94E3C3ACC5B5E6821E11DEDE', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/81A961D7CF61846C5C2B87A3205650DCDF84ECDD94E3C3ACC5B5E6821E11DEDE', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/9496EEB3FE8425D24DF9DBB08C413FA1AD1CE14B3EF0084EBBF94A76A04E1CC1', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9496EEB3FE8425D24DF9DBB08C413FA1AD1CE14B3EF0084EBBF94A76A04E1CC1', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/508F55968C924FD7AEFC9EB0F2A3A1D56E1C8D0CCF23B2CCDDB329FBE599BFF0', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/508F55968C924FD7AEFC9EB0F2A3A1D56E1C8D0CCF23B2CCDDB329FBE599BFF0', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/5E3E64555465A674D651DEDF877E11F6505744CB5A7044EBEABEDEB14E9B2B4A', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5E3E64555465A674D651DEDF877E11F6505744CB5A7044EBEABEDEB14E9B2B4A', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/AC5EE6C769D42C5AE525A451210D0DB4B8487B701F01B0306684C6D36AF3AD95', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AC5EE6C769D42C5AE525A451210D0DB4B8487B701F01B0306684C6D36AF3AD95', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/A365E102D381898E129B299EF18C0506D4BED19062B4873DC7E5F92BE0111C10', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A365E102D381898E129B299EF18C0506D4BED19062B4873DC7E5F92BE0111C10', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/121243C0247DD2CDB3F0298B2C5093B8BF4BF6DE77081A0F747CF1DFB3C952EA', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/121243C0247DD2CDB3F0298B2C5093B8BF4BF6DE77081A0F747CF1DFB3C952EA', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/93DC00A9B9135ED6015C8FC6C439948236213893553145A074F24C9B1D91EB32', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/93DC00A9B9135ED6015C8FC6C439948236213893553145A074F24C9B1D91EB32', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/8CD077FB6B1CF241921132C841AF016EE324E2E5E67B003990CCA61F03D42B21', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8CD077FB6B1CF241921132C841AF016EE324E2E5E67B003990CCA61F03D42B21', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/3AF5C468956FC3A1947CAFC68CD8679BD302869BB88666807CEC44F218270F20', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3AF5C468956FC3A1947CAFC68CD8679BD302869BB88666807CEC44F218270F20', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/826AE3A03C6D4EA56E780078977E3206EDE3DDEF8018C0A009397DBACC98AFBB', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/826AE3A03C6D4EA56E780078977E3206EDE3DDEF8018C0A009397DBACC98AFBB', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/2E6B6A7BC6C3BCFCAC3EE2FF324B8AC4D98A87CFA94CAFAE46F70077EDD366E1', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2E6B6A7BC6C3BCFCAC3EE2FF324B8AC4D98A87CFA94CAFAE46F70077EDD366E1', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/98EDB406B960F034C757CB41A060D84E17F129C9857D6C5AF4349A015DD69CE6', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/98EDB406B960F034C757CB41A060D84E17F129C9857D6C5AF4349A015DD69CE6', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/808604503DC743D0FADA39E0F86A8C6157276F6FE12AC63DDD3EFA27E64FB2BE', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/808604503DC743D0FADA39E0F86A8C6157276F6FE12AC63DDD3EFA27E64FB2BE', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/EF3B2B8B74485A297589B493C50889E6A0C4992E5EFC076C262D8FC1920B01AA', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EF3B2B8B74485A297589B493C50889E6A0C4992E5EFC076C262D8FC1920B01AA', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/697D44849A357C89BF2586D232DAC5A70BBEF29AC8D7204EFA1B65C21D0ABC26', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/697D44849A357C89BF2586D232DAC5A70BBEF29AC8D7204EFA1B65C21D0ABC26', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/8B5A1FE6CEEF46C65093F7E93A3B150BA9F89E098F31322CAF23D7D80AA2FC81', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8B5A1FE6CEEF46C65093F7E93A3B150BA9F89E098F31322CAF23D7D80AA2FC81', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/A9EC0035D81EBF4646874F6100E5243BE3AC10C5E968563B7C44F6A28701621A', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9EC0035D81EBF4646874F6100E5243BE3AC10C5E968563B7C44F6A28701621A', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/9A0336E80E5E78F9F787B68BA7A9B9C2CA93A271E665B0F05FC1FFC935E258A4', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9A0336E80E5E78F9F787B68BA7A9B9C2CA93A271E665B0F05FC1FFC935E258A4', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/D5FF9E5702B4AFA3E85BE9176639F2643F4B3286184DA7110B794E6B1BF6C7BE', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D5FF9E5702B4AFA3E85BE9176639F2643F4B3286184DA7110B794E6B1BF6C7BE', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/0D6A5E26553FD4C14A341F080E71DECF70733A07186FFC9A22C36E6BBDAEDA15', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0D6A5E26553FD4C14A341F080E71DECF70733A07186FFC9A22C36E6BBDAEDA15', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/33BECD34238AB46AB8BC4667B9841BA66DB6C71810C70F38B46187F66A8C435A', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/33BECD34238AB46AB8BC4667B9841BA66DB6C71810C70F38B46187F66A8C435A', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/A087464AD6E95F1CD0CAB34B12312D40852E6ED02FA087B9F098503FB88896D3', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A087464AD6E95F1CD0CAB34B12312D40852E6ED02FA087B9F098503FB88896D3', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/554FAD5015A0B8A6D51161B4054F21A6850E4FE58537AFFE8B92D655881300D4', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/554FAD5015A0B8A6D51161B4054F21A6850E4FE58537AFFE8B92D655881300D4', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/E50E07AAF891A41329F151CCFF4F3B40BCA3C2ABD3DD8A45F725995C1C44EC6F', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E50E07AAF891A41329F151CCFF4F3B40BCA3C2ABD3DD8A45F725995C1C44EC6F', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C7A57D0916800ADDE4492A37417035F507F8E73A2151AB4429668DC8C73F38F9', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C7A57D0916800ADDE4492A37417035F507F8E73A2151AB4429668DC8C73F38F9', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/0AB2524CE720A023B651EA4FB3821C2232668E9E43B8AC665C819B48544D44B9', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0AB2524CE720A023B651EA4FB3821C2232668E9E43B8AC665C819B48544D44B9', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/3CB517D398208B9D9D474066ED2BB66648F4B6F5B6217465C7422DEF86DC08FC', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3CB517D398208B9D9D474066ED2BB66648F4B6F5B6217465C7422DEF86DC08FC', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/E5430CC87B10499BB47965F93C98E1BCB6D48154AA5BDE8EE93FF70C239D34C3', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5430CC87B10499BB47965F93C98E1BCB6D48154AA5BDE8EE93FF70C239D34C3', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/D049FD8B3F1BB7F1D019EC2FACB7683BD4E9F2262614DDE6BC7DA8E62E4C797A', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D049FD8B3F1BB7F1D019EC2FACB7683BD4E9F2262614DDE6BC7DA8E62E4C797A', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/F13E1BA7DDE8FD2985486EC5D9DBA38701DC4BAD68329A48925D45550E9062F1', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F13E1BA7DDE8FD2985486EC5D9DBA38701DC4BAD68329A48925D45550E9062F1', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/0EEBAB7FD1C4779B14D9AB31ACB74BEA9CDF2E1E8F3D9E38022C867B51AB8DFE', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0EEBAB7FD1C4779B14D9AB31ACB74BEA9CDF2E1E8F3D9E38022C867B51AB8DFE', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F05D3571EB06EB14053281458EB2CBE9982B56C45595B4FA9583E8ADB3C5C3D8', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F05D3571EB06EB14053281458EB2CBE9982B56C45595B4FA9583E8ADB3C5C3D8', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/569AA67C052FF34C098FA6F45D58F9C3AFBB6B2A7E86E4CD6FF3699F0E8BF8E8', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/569AA67C052FF34C098FA6F45D58F9C3AFBB6B2A7E86E4CD6FF3699F0E8BF8E8', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/11D46BC918B7D0761D243DE4BFB618B23BAF951CC92044ACCC78BC9FCF819F07', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/11D46BC918B7D0761D243DE4BFB618B23BAF951CC92044ACCC78BC9FCF819F07', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/034B7328B89BFC4DD6C0FA24F9906A877D12D0A412BA67BED0C566B76BD18DED', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/034B7328B89BFC4DD6C0FA24F9906A877D12D0A412BA67BED0C566B76BD18DED', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/2B70157936AFDE6FA39FACD06EE81025D8E24F506EE5E5B15330BA9B8B5991DB', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2B70157936AFDE6FA39FACD06EE81025D8E24F506EE5E5B15330BA9B8B5991DB', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/B8FBD0D75B9071D538AD406268B23AA17F82667FAC99E98788E04A776443BBFC', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/B8FBD0D75B9071D538AD406268B23AA17F82667FAC99E98788E04A776443BBFC', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/ACFE935057B6C4077EA0D4E6E66DDBBEA946F2DA0B16227E99D93018D032A1D7', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ACFE935057B6C4077EA0D4E6E66DDBBEA946F2DA0B16227E99D93018D032A1D7', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/BE44D66E68D1D9F7E2C997C53418FB8F5469C54FA65B23CFC06A92A0CA543C09', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BE44D66E68D1D9F7E2C997C53418FB8F5469C54FA65B23CFC06A92A0CA543C09', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/8C32B800B73552746D2A4E01DBFE648B2CD326A3C71367FD141C70F15B234DA8', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8C32B800B73552746D2A4E01DBFE648B2CD326A3C71367FD141C70F15B234DA8', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/8813C29831F450F7180379ECDD4C964E9C3F0054022416D6F6D7AAABDE142142', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8813C29831F450F7180379ECDD4C964E9C3F0054022416D6F6D7AAABDE142142', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/9E7E2364FA5CE9508B20E663316BAFC5F8CADB7C277C99BA3F2C1B7BE7F76E0D', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9E7E2364FA5CE9508B20E663316BAFC5F8CADB7C277C99BA3F2C1B7BE7F76E0D', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/2869FA2980DC05778FCF043A32E5574AC774FC77498F3ED75992474B15207D57', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2869FA2980DC05778FCF043A32E5574AC774FC77498F3ED75992474B15207D57', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/243CA2C13DFA79A0439312BE8F1AAB2F59D2916E96617756453517203A7ADB93', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/243CA2C13DFA79A0439312BE8F1AAB2F59D2916E96617756453517203A7ADB93', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/9B703DC6038E9B63CF58E53F66F327C37CF1C82392C4C886863BA8C7B1583620', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9B703DC6038E9B63CF58E53F66F327C37CF1C82392C4C886863BA8C7B1583620', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/88D45CB688E0FBACBA935ED3DE33E08D09FEC4F3EC0E77DBC4E04903001B25F3', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/88D45CB688E0FBACBA935ED3DE33E08D09FEC4F3EC0E77DBC4E04903001B25F3', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/72D5260786AB298E96791133BFDB99F888A47C3E113F37032A7A186A474D2971', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/72D5260786AB298E96791133BFDB99F888A47C3E113F37032A7A186A474D2971', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/9AE75027D82AFE6FD1F6BBF8F5FE41616A803417003DD4C73D89075809069F31', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9AE75027D82AFE6FD1F6BBF8F5FE41616A803417003DD4C73D89075809069F31', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/F5467EB003BF0ABF167A3DEA2561D33053D1882641A54A275C3A57E8C9A0DFA2', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5467EB003BF0ABF167A3DEA2561D33053D1882641A54A275C3A57E8C9A0DFA2', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/B87EA3C954E4796C530C5CC83189A6AC330FAC51873D126B3DF70252A023671A', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B87EA3C954E4796C530C5CC83189A6AC330FAC51873D126B3DF70252A023671A', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/FC909AE385C5AD376D49DB52480D821F52A4A29264FF95216BE7075FFC6F2D23', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FC909AE385C5AD376D49DB52480D821F52A4A29264FF95216BE7075FFC6F2D23', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/331CFD1CC25650C29FCACC56973970B54F3C17EFA7E817BBCBAE48F3289FC2A6', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/331CFD1CC25650C29FCACC56973970B54F3C17EFA7E817BBCBAE48F3289FC2A6', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/BB8EC0D6AE0F65C9513A00FA278B0F3F91CAC2967D0A4DCD4D402CEC86E17883', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/BB8EC0D6AE0F65C9513A00FA278B0F3F91CAC2967D0A4DCD4D402CEC86E17883', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/ED2321F6562F5262D0CDFF87253DA3A03E1CF1FE5D24D02CF072609DABF21F93', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/ED2321F6562F5262D0CDFF87253DA3A03E1CF1FE5D24D02CF072609DABF21F93', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/0D9489C33BBAF6FEEBF0408F29B2BDD7F20B62167B81BB74ADC6C3595033355A', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0D9489C33BBAF6FEEBF0408F29B2BDD7F20B62167B81BB74ADC6C3595033355A', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/CF4D107CB2B0D3F4BFE543F7EAFDE74FC729666DDBA35886A20348A48324D42E', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CF4D107CB2B0D3F4BFE543F7EAFDE74FC729666DDBA35886A20348A48324D42E', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/AE3489715FAB30F87827C970D72231BF5788085B4F70E965517B2586E5A1E97A', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AE3489715FAB30F87827C970D72231BF5788085B4F70E965517B2586E5A1E97A', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/AD2AE6EE7BD2EC22A65AEA9A47490F41406FB93E4C78330EBCF95F23152E02AA', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AD2AE6EE7BD2EC22A65AEA9A47490F41406FB93E4C78330EBCF95F23152E02AA', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/E527556B206836BB419111C0F44FAB776CE56A37AA3F6341DADE3A5FE1700E84', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E527556B206836BB419111C0F44FAB776CE56A37AA3F6341DADE3A5FE1700E84', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/8B8E005661FCC969B2FFCF414458F9DC2EA72B08ECE901E4969E642FE168F389', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8B8E005661FCC969B2FFCF414458F9DC2EA72B08ECE901E4969E642FE168F389', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/3A80424F810F76F10D79D5435CAF93482D3A69623D1325E83BB03104110BE65C', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3A80424F810F76F10D79D5435CAF93482D3A69623D1325E83BB03104110BE65C', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/F288CC734B9475EF16CEEB902C3D1E4A376EB38EB9F3793F454867613B8A7692', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F288CC734B9475EF16CEEB902C3D1E4A376EB38EB9F3793F454867613B8A7692', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/94441BA1D08C9500C840B89C4E3F18A1726FDC881BE1D8541621BDDF860AFA9F', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/94441BA1D08C9500C840B89C4E3F18A1726FDC881BE1D8541621BDDF860AFA9F', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/CA2520E735A1EFF09A3B62DAE20D96D9FA331405CF44B8461344ECC020C53AC6', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CA2520E735A1EFF09A3B62DAE20D96D9FA331405CF44B8461344ECC020C53AC6', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/052A4754E3E72BD5418BA91FB237083ABF8AA1A71A6F5E33438E876BC08ED9A3', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/052A4754E3E72BD5418BA91FB237083ABF8AA1A71A6F5E33438E876BC08ED9A3', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C2AAA12AB411E678EA1D9AB54EF6FD8CE3017C4567726243881A83C71CE782B8', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2AAA12AB411E678EA1D9AB54EF6FD8CE3017C4567726243881A83C71CE782B8', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CA5F83A5ABD18E3AB792195834F9A15B0B1DA2D5128D3FB35F930DC9BEA3C85C', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CA5F83A5ABD18E3AB792195834F9A15B0B1DA2D5128D3FB35F930DC9BEA3C85C', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/AE21F251322E0B633B8F2652A4FFFA8F26188FA0E14B27137EB05149A9BB9254', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AE21F251322E0B633B8F2652A4FFFA8F26188FA0E14B27137EB05149A9BB9254', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/1966BA0FE7A7A1D331F0DC10F0EEFA5AA4B6FD5B0A2BE4C7679A959BD0169A61', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1966BA0FE7A7A1D331F0DC10F0EEFA5AA4B6FD5B0A2BE4C7679A959BD0169A61', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/28FCB0376D6E41D1F5D2D2AE0492BA24264C068F609F0315AD13C26803510C46', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/28FCB0376D6E41D1F5D2D2AE0492BA24264C068F609F0315AD13C26803510C46', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/6F3F134A6514300FD55BAD03F97A29152B398D5FFB7FEAAA560273B6DD1D75D1', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6F3F134A6514300FD55BAD03F97A29152B398D5FFB7FEAAA560273B6DD1D75D1', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/E70073D808AFCFE37288106719D8E17E4C935D9A7D1A93C2185D87EF8F69E541', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/E70073D808AFCFE37288106719D8E17E4C935D9A7D1A93C2185D87EF8F69E541', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/2DB48F7E3CC24B1E63180E3A754357F5E306A15139D6BD952CC9F76D93D94721', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2DB48F7E3CC24B1E63180E3A754357F5E306A15139D6BD952CC9F76D93D94721', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/A87DBD4F19F57DDE18D75CD8E6169E1FA91478B8AF742F2CF90ABA482656799D', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A87DBD4F19F57DDE18D75CD8E6169E1FA91478B8AF742F2CF90ABA482656799D', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/9356F86417E3EA32E699289C0D14AB6919DA9D5A0236CC284EAED6FC23C532A5', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9356F86417E3EA32E699289C0D14AB6919DA9D5A0236CC284EAED6FC23C532A5', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/E0217432B76B58A850CE68847A78AFDD0598A1D0F2DC8775C9F9E29A034495AB', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/E0217432B76B58A850CE68847A78AFDD0598A1D0F2DC8775C9F9E29A034495AB', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/5D05C5F705FE71BFFC570E8BB63ADB5C98B8DDE2F8292E8105B4D1CEA41AB583', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5D05C5F705FE71BFFC570E8BB63ADB5C98B8DDE2F8292E8105B4D1CEA41AB583', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/769CE89545774CCE5C5BA33FCEBF35702F3B8AF3C48A7635C1988C739905DFDB', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/769CE89545774CCE5C5BA33FCEBF35702F3B8AF3C48A7635C1988C739905DFDB', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/19C52C54C963ECE55C7AE3AFC9BB28062FED57EE1FCFEB26E582F405AF4AFB2A', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/19C52C54C963ECE55C7AE3AFC9BB28062FED57EE1FCFEB26E582F405AF4AFB2A', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/D82A4F11E45CDE6BD6235D78CD2391C78B62F23A0DF142ED849A40B7E79E6928', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D82A4F11E45CDE6BD6235D78CD2391C78B62F23A0DF142ED849A40B7E79E6928', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/23EB294D0852AAA3D4B7EBA180914629F5D7100115BCB9DE65079B20A7D66FE6', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/23EB294D0852AAA3D4B7EBA180914629F5D7100115BCB9DE65079B20A7D66FE6', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/92FAE0AA735821827C6B868596AB91EB36728F1893B9016A391827E0D50670D3', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92FAE0AA735821827C6B868596AB91EB36728F1893B9016A391827E0D50670D3', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/375D78C87A98B3A265EA5E88AAF287386DF8A5E6C27B09EAACE8ABC8E886151D', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/375D78C87A98B3A265EA5E88AAF287386DF8A5E6C27B09EAACE8ABC8E886151D', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/3DEC4C595EA00F74CE15936CE1B357C04904DD0F94003902A6B9442C18D9BABA', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3DEC4C595EA00F74CE15936CE1B357C04904DD0F94003902A6B9442C18D9BABA', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/3CC21FF2B39E6DDC8C26EE603326962F860719EE556DC6AC1CE2E672E41E69A7', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3CC21FF2B39E6DDC8C26EE603326962F860719EE556DC6AC1CE2E672E41E69A7', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/E7B2B7E47BB2D0490F4005A3D393A93205A006BD05F6A24C5C9D6BB6336BBCE4', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E7B2B7E47BB2D0490F4005A3D393A93205A006BD05F6A24C5C9D6BB6336BBCE4', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/A4D07620940BB353E71762CB58EDF46B0CC0AB5A1D5D9A7A9EB12A11FB2CC85C', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A4D07620940BB353E71762CB58EDF46B0CC0AB5A1D5D9A7A9EB12A11FB2CC85C', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/910064B2B28CA48A9B8EDAB2B8CEEE388B82CD4EBB6E21E2510757CA13875141', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/910064B2B28CA48A9B8EDAB2B8CEEE388B82CD4EBB6E21E2510757CA13875141', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/461A2130966D57968FBEB3D57ADBDAACCC3D445095C898D222A192B111537DCB', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/461A2130966D57968FBEB3D57ADBDAACCC3D445095C898D222A192B111537DCB', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/28CD37636B76B5F4059571D1CDE1E85D19F278B973CB5607A6D12C5A504CEDD5', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/28CD37636B76B5F4059571D1CDE1E85D19F278B973CB5607A6D12C5A504CEDD5', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/76E118050D8FE33C9DC3C96A466FA3A05A6A0B2B371AC54CB235162965B4AD6D', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76E118050D8FE33C9DC3C96A466FA3A05A6A0B2B371AC54CB235162965B4AD6D', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/9F49152C978AE596B10FA79E0E58F2F4B701E7D61809BCC633CC0B73EC892CE3', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F49152C978AE596B10FA79E0E58F2F4B701E7D61809BCC633CC0B73EC892CE3', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/E37D5A7AD07AC082CF06524E9A084FE861BB4CB7C9A560FD447C3B8E15EBFB50', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/E37D5A7AD07AC082CF06524E9A084FE861BB4CB7C9A560FD447C3B8E15EBFB50', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/6D73392E26A3AB5881559D9403F1575405C5EFC44F305AB6143D7D6569D68FB6', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6D73392E26A3AB5881559D9403F1575405C5EFC44F305AB6143D7D6569D68FB6', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/3B6B0D373F6CD7F040E59763F0D38D4B2CB906A67DFBC2CC654D82792BEF5DFA', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B6B0D373F6CD7F040E59763F0D38D4B2CB906A67DFBC2CC654D82792BEF5DFA', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/31A8314286A76E8A087BAEF75E413241D516F6CF3EBC610C52CDA03B0ED9AC0F', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/31A8314286A76E8A087BAEF75E413241D516F6CF3EBC610C52CDA03B0ED9AC0F', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/E58F2401EE13A3E5AA46C44297C2FAF077A0D28D3453E43341881EF8CC45F9FE', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E58F2401EE13A3E5AA46C44297C2FAF077A0D28D3453E43341881EF8CC45F9FE', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/E9FD1E6BF3B8108B5ADF6B9DCB926A49D9B947C5338669D92E038E252CFD6721', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E9FD1E6BF3B8108B5ADF6B9DCB926A49D9B947C5338669D92E038E252CFD6721', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/A16239DC2931F19C6293F1F8590D0F9C59CC7AE614A47F0F8586AAC9D6D7D3C2', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/A16239DC2931F19C6293F1F8590D0F9C59CC7AE614A47F0F8586AAC9D6D7D3C2', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/040FA5396BCD7F2F9E4D7A87D3E59807AC6E5434B17682098ECC6BFC33F1827A', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/040FA5396BCD7F2F9E4D7A87D3E59807AC6E5434B17682098ECC6BFC33F1827A', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/DBCFE2D36E82711DE5311633623485FC5C89A8FB22D7A3DEBA77B5C03F9DBCF0', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DBCFE2D36E82711DE5311633623485FC5C89A8FB22D7A3DEBA77B5C03F9DBCF0', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/35DB8BA9103DCBE27BA4F2B450D41FB6D3F667E8D9AAAA0E9FC3B87553C6B73D', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/35DB8BA9103DCBE27BA4F2B450D41FB6D3F667E8D9AAAA0E9FC3B87553C6B73D', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/3C69670391D56ADEEB4A57A41BBDF8969060F23BE2FA803236F0CD7C33A14D48', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3C69670391D56ADEEB4A57A41BBDF8969060F23BE2FA803236F0CD7C33A14D48', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/D02FA8D44CBCA4D86A2859FCE9DCF6B8D950E398724F76F47C6C4C66F2B8DF29', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D02FA8D44CBCA4D86A2859FCE9DCF6B8D950E398724F76F47C6C4C66F2B8DF29', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B04A99CBD5C413B1B1F59A5AA1B1F61BC54D38CD222DF718DA44174BDF318E65', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/B04A99CBD5C413B1B1F59A5AA1B1F61BC54D38CD222DF718DA44174BDF318E65', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/F9AF239A744D75893E8F5BBBBB77310E619018CFC83BC193D685A03F29DBEC03', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F9AF239A744D75893E8F5BBBBB77310E619018CFC83BC193D685A03F29DBEC03', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/2A293D96478439F224521DFE15F4E0F332A941EB56EE02DA2CD00D63EDE1600F', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2A293D96478439F224521DFE15F4E0F332A941EB56EE02DA2CD00D63EDE1600F', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/5EEB85B4B3C270278FA6D6996A3A17172F1510D7D4B97F69B7BE6794CE9F39A7', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5EEB85B4B3C270278FA6D6996A3A17172F1510D7D4B97F69B7BE6794CE9F39A7', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/8896B2623FCF67823DB0488F452006DCCD4183446262CAC20DAB0B92913296EB', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8896B2623FCF67823DB0488F452006DCCD4183446262CAC20DAB0B92913296EB', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/9B839BC7AF88EECCB0E60C860EF6987A2E8B61F27EE008ADED240A4C972CF3B2', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9B839BC7AF88EECCB0E60C860EF6987A2E8B61F27EE008ADED240A4C972CF3B2', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/43250A5CD1B160BBB2B43202095A28DD657D51345E776D8FF0D83B4DC026ACBC', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/43250A5CD1B160BBB2B43202095A28DD657D51345E776D8FF0D83B4DC026ACBC', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C7CEC80C23360FB7EB3EA4317E940C898DBAE283239C738BEA95C1D94865FFF6', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C7CEC80C23360FB7EB3EA4317E940C898DBAE283239C738BEA95C1D94865FFF6', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/AB630710FE952D48FAA466A26905F2C6A31F219173F6696F77F578A9F3D642B3', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/AB630710FE952D48FAA466A26905F2C6A31F219173F6696F77F578A9F3D642B3', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/5DE9CB4FC493F2AF90070EA38808C8286C4950FD46DC49A64D6CD1F44F5B1B93', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5DE9CB4FC493F2AF90070EA38808C8286C4950FD46DC49A64D6CD1F44F5B1B93', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/CDE0B418211202D79724B783535D30AD61A91B1F1EE3327160B12FAF361ED0D9', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CDE0B418211202D79724B783535D30AD61A91B1F1EE3327160B12FAF361ED0D9', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/C4210B0AEA397E83C9CEE9699FC6FD8C69D7D1B5AC0A336E8E8FA5D888AA8687', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C4210B0AEA397E83C9CEE9699FC6FD8C69D7D1B5AC0A336E8E8FA5D888AA8687', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/4DA492349B20B770A8AACA006354ADBDB6BE20F0A45FB09632FC2D13B8B6E7E0', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4DA492349B20B770A8AACA006354ADBDB6BE20F0A45FB09632FC2D13B8B6E7E0', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/A48C7B30CF09325D3B5DE1D6C5807D0669F1069CAF57F32D113EC8C8F7AC8D9A', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A48C7B30CF09325D3B5DE1D6C5807D0669F1069CAF57F32D113EC8C8F7AC8D9A', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/83F395D2AEA9AA07E67A340BA92FE38A14CF61A24B11E9B15D85D2B337B6EE68', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/83F395D2AEA9AA07E67A340BA92FE38A14CF61A24B11E9B15D85D2B337B6EE68', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/AD3244C1A8DD573BE2C26CF640229C8F754491CDF1A76CCEA5A1B4F70745F466', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/AD3244C1A8DD573BE2C26CF640229C8F754491CDF1A76CCEA5A1B4F70745F466', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/161C4A9D574A62E072E969C662EE6F47518ED89B0C0C2DCE98909969F86917E9', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/161C4A9D574A62E072E969C662EE6F47518ED89B0C0C2DCE98909969F86917E9', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/1A5A14762B1E36CB9483880028F7AACF53BC0C1A30137D61B3759685E2B806A7', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/1A5A14762B1E36CB9483880028F7AACF53BC0C1A30137D61B3759685E2B806A7', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/1AD5C9A60E51438E25B0F78F7CAAD488204C25CFF38C9844FA2422B04ECD4485', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1AD5C9A60E51438E25B0F78F7CAAD488204C25CFF38C9844FA2422B04ECD4485', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/8BCA2D4D200158C2977E10B04A9AC72F2C5FD6B84103866592D81637439261B7', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8BCA2D4D200158C2977E10B04A9AC72F2C5FD6B84103866592D81637439261B7', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/57744D33E491FB50640CFDA956445402D05773C6147ADAFBFB8EE6015009DA7F', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57744D33E491FB50640CFDA956445402D05773C6147ADAFBFB8EE6015009DA7F', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/1933F991EE38E2005CA5F093C71EC7BAF8411D9DF6D09AB36A70A253F0AEBBAD', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1933F991EE38E2005CA5F093C71EC7BAF8411D9DF6D09AB36A70A253F0AEBBAD', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/B35CB69D611DB336CFBB75F953563FA0DD97899E57E59395C1D6F873116EBD83', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B35CB69D611DB336CFBB75F953563FA0DD97899E57E59395C1D6F873116EBD83', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/CD4BD488FA45AEF4AC04859F37503B4EB3DA5B3E9AC23E43A726CD896ACA8991', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/CD4BD488FA45AEF4AC04859F37503B4EB3DA5B3E9AC23E43A726CD896ACA8991', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/012A8DB4FF8F0A176C72006B86B7412221E32FF44274CA356E3829820A87DADF', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/012A8DB4FF8F0A176C72006B86B7412221E32FF44274CA356E3829820A87DADF', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/17AED58FDB9031A2C36C86473D218079A688A5AA7D94853CF64AE47CFC3CE83B', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/17AED58FDB9031A2C36C86473D218079A688A5AA7D94853CF64AE47CFC3CE83B', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/691F716AFD6B6D93A7B7865313C32BE345C0CED634ED275C3539FD41828D3C4C', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/691F716AFD6B6D93A7B7865313C32BE345C0CED634ED275C3539FD41828D3C4C', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9142B59FC46507A91990542A507BD9C0308E1959E01EFFED9FC00CA51F8129DC', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9142B59FC46507A91990542A507BD9C0308E1959E01EFFED9FC00CA51F8129DC', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/E0BCCB9DC44DC86FC865203F89F0B6FD75C44FED3DD9221341679CB2B5F0F46D', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/E0BCCB9DC44DC86FC865203F89F0B6FD75C44FED3DD9221341679CB2B5F0F46D', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/033EE786B958DA20D09A595F26F61F4534984FB0919EF785728D100E773B4B4F', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/033EE786B958DA20D09A595F26F61F4534984FB0919EF785728D100E773B4B4F', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/EC1E3273EE36CC630DBF5875A89996976D34472886A0391CA0993DCBF1558887', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/EC1E3273EE36CC630DBF5875A89996976D34472886A0391CA0993DCBF1558887', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/BE93AEB0CA8640002FAD3F36FB0C7681A98180743CFB32255563617F4338AEB7', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/BE93AEB0CA8640002FAD3F36FB0C7681A98180743CFB32255563617F4338AEB7', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/18B141B2D075281BC208C47CF064E72816D7C4F21CBE155D32A6B946663F00B4', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/18B141B2D075281BC208C47CF064E72816D7C4F21CBE155D32A6B946663F00B4', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/3B07946FC3364519DE1AA97C649E24AFF7B6520891C44034574C9CA794B6DE94', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B07946FC3364519DE1AA97C649E24AFF7B6520891C44034574C9CA794B6DE94', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D3EC35E0DB721203312D9A1EFE692D1CA124BF4693F4DE105A896B66833412AA', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D3EC35E0DB721203312D9A1EFE692D1CA124BF4693F4DE105A896B66833412AA', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/56DAD3C79229435F29DA96E2545B1825147C194BD7A492E34A6F24BFFA7D4502', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/56DAD3C79229435F29DA96E2545B1825147C194BD7A492E34A6F24BFFA7D4502', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/7F5D56648B5E4B0BF764EFFC67F058A5E74A9132D68D3E9E0043FF9670C8292C', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/7F5D56648B5E4B0BF764EFFC67F058A5E74A9132D68D3E9E0043FF9670C8292C', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/B1B7045495854ADC15830167B978043C2FDB410736736E8B7E5096D2DD1786AD', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B1B7045495854ADC15830167B978043C2FDB410736736E8B7E5096D2DD1786AD', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/996C057A3974B9510A7074825625143F3AE539543815CA46A07C5944B9D3EE30', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/996C057A3974B9510A7074825625143F3AE539543815CA46A07C5944B9D3EE30', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/01A8EC304E73B7987E23410B8A0711686EA40BEC32F1F3C88887D6AB37D82E57', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/01A8EC304E73B7987E23410B8A0711686EA40BEC32F1F3C88887D6AB37D82E57', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/A9F17B565157553BDF6E866DE657F758F1F2A98724405FAC261968414EB46978', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9F17B565157553BDF6E866DE657F758F1F2A98724405FAC261968414EB46978', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/4BF690B80329272F774DB572D2E521A7FD77661BA2BE50B65E8F8D0A46EEFEC1', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4BF690B80329272F774DB572D2E521A7FD77661BA2BE50B65E8F8D0A46EEFEC1', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/86EDA7213A49670A9CA9D72466E5477275C8EBA82A5053B239CDF6C2C9E1B197', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/86EDA7213A49670A9CA9D72466E5477275C8EBA82A5053B239CDF6C2C9E1B197', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/03B5612002BC8024D2DBB1739A587C0780C6F7FF447F9B9814160E840E413C5E', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/03B5612002BC8024D2DBB1739A587C0780C6F7FF447F9B9814160E840E413C5E', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/FF31FC4541182F62F7A63EBE0F01C5815D5A2CDFC7EBBD15AA75E549960923C8', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/FF31FC4541182F62F7A63EBE0F01C5815D5A2CDFC7EBBD15AA75E549960923C8', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/6270131059934E92C4B7EF9C92890CAD907971DE7327E0866823AB3C5DE7CC47', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6270131059934E92C4B7EF9C92890CAD907971DE7327E0866823AB3C5DE7CC47', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/0BE78D6C1C962CAE358BB4E9AF0819CBC849A18603449DFCD86FA29091098CB8', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0BE78D6C1C962CAE358BB4E9AF0819CBC849A18603449DFCD86FA29091098CB8', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/B6CD75B438AE950C396325F2C62DA0B01A0D8DEC611C79516CDA605754E665E0', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B6CD75B438AE950C396325F2C62DA0B01A0D8DEC611C79516CDA605754E665E0', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/BE41DABFBCA1380DE17A195433476D3B7F3A558FDD75DD5B0C4AA5314686CDB2', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BE41DABFBCA1380DE17A195433476D3B7F3A558FDD75DD5B0C4AA5314686CDB2', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/EC874F87068DA849B860C539F04BCBB664D0B34FDDDA636C8CEAA798BAD5A886', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EC874F87068DA849B860C539F04BCBB664D0B34FDDDA636C8CEAA798BAD5A886', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/87BFACC9157D381114DD5808D9BC6085F8A09C5372A26DB9D7CB2ECD7A077E45', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/87BFACC9157D381114DD5808D9BC6085F8A09C5372A26DB9D7CB2ECD7A077E45', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/0912B9242D3A44383D700CD52D0E121977DD5929DB92AE7AE81B5B0301C8A52B', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0912B9242D3A44383D700CD52D0E121977DD5929DB92AE7AE81B5B0301C8A52B', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/0438F9AD5F967ECB63E360171349FCD2A0255471750C0BAB8E345D7AD6419690', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0438F9AD5F967ECB63E360171349FCD2A0255471750C0BAB8E345D7AD6419690', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/39F3FDA6118973357D83ADF9F3741768FC2AB765D68A09B54D2801E9B2FC1AFC', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/39F3FDA6118973357D83ADF9F3741768FC2AB765D68A09B54D2801E9B2FC1AFC', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/394152B9D09EBD0D6E357F8C2039D8201027A35D98C6074B0A759EEC250CCCAB', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/394152B9D09EBD0D6E357F8C2039D8201027A35D98C6074B0A759EEC250CCCAB', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/6E2DF66FF2CB7A49DD7AEE6109F078E95FFDD51592B9313C03ADF2D2129FF80E', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6E2DF66FF2CB7A49DD7AEE6109F078E95FFDD51592B9313C03ADF2D2129FF80E', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/AC11ABB1BC0CE388745E4B119D743EC00B2C1597A32834401E1516F9D1C86C7B', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/AC11ABB1BC0CE388745E4B119D743EC00B2C1597A32834401E1516F9D1C86C7B', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/553A85DBCB53BC9A997F46002B549DA44DE5ECF6098FD0C79C5CF60C5F46AB5F', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/553A85DBCB53BC9A997F46002B549DA44DE5ECF6098FD0C79C5CF60C5F46AB5F', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/FFBB7F80E7C7826C19284FDEEE3D8CDD83BD4BA200CE763698AEFA8361AFA73E', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FFBB7F80E7C7826C19284FDEEE3D8CDD83BD4BA200CE763698AEFA8361AFA73E', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/CC125E7ED161431E647A4CC32EAF6A3B4EB1230805B4B36977999610BBFC38D8', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CC125E7ED161431E647A4CC32EAF6A3B4EB1230805B4B36977999610BBFC38D8', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/EE8F5CED31BBDE9E321370F07DFF101604ED02E5775B3E09D0D9E7D53AA4AF9C', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/EE8F5CED31BBDE9E321370F07DFF101604ED02E5775B3E09D0D9E7D53AA4AF9C', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/458591208296536E5856E11ABADA1C77715E01B4D650277893FE6039F737F1C5', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/458591208296536E5856E11ABADA1C77715E01B4D650277893FE6039F737F1C5', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/03A69CD854F2D4125C31A240A1DD37A49AF6D01B115DED9B813BCCB5C9EF4458', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03A69CD854F2D4125C31A240A1DD37A49AF6D01B115DED9B813BCCB5C9EF4458', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/B996425C4BF85B259EDB99E61D4B207DA2B62165A2060EEBEC66993B38A1F36C', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/B996425C4BF85B259EDB99E61D4B207DA2B62165A2060EEBEC66993B38A1F36C', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/E321055B0017C3EF9096AB14C5B3FD5AE14347D86A6ED409ABACB23E13BBBF7A', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/E321055B0017C3EF9096AB14C5B3FD5AE14347D86A6ED409ABACB23E13BBBF7A', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/2B6C0B569203A010CC544F6A226B89CEAA5D1A21A1EEBAFD7A65CE71F528E9F7', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/2B6C0B569203A010CC544F6A226B89CEAA5D1A21A1EEBAFD7A65CE71F528E9F7', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/EA2F53BF847DC23426FCD15E4ACDDB67A0480AD43F1DE366D0EC74D03438D898', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/EA2F53BF847DC23426FCD15E4ACDDB67A0480AD43F1DE366D0EC74D03438D898', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/07CB5FD01CB8F2F83C446DDEC2C95BBE967CC185B11267D46B328FB75E89F473', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/07CB5FD01CB8F2F83C446DDEC2C95BBE967CC185B11267D46B328FB75E89F473', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/02E0ADDF093BFDD9A0F84836CDA316778FF3BB2889EF81272F30E9E25C4894E5', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/02E0ADDF093BFDD9A0F84836CDA316778FF3BB2889EF81272F30E9E25C4894E5', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/BA9B4AEA0268DCE3CF890DF0868D7B5FAA0A1CAD9F1A5F0B1A0693F2CB7828B9', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/BA9B4AEA0268DCE3CF890DF0868D7B5FAA0A1CAD9F1A5F0B1A0693F2CB7828B9', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/420141F7E72BBC5FE82A25578B81C85461783FE036CD567755DF3D5E09D530A5', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/420141F7E72BBC5FE82A25578B81C85461783FE036CD567755DF3D5E09D530A5', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/13BACDD33994E105426AC643045185AC0067F7743E954EEE4D14CF98086D635D', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/13BACDD33994E105426AC643045185AC0067F7743E954EEE4D14CF98086D635D', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/7085ED9CD66CFD64CF595378A42254F0AA31F229ADADAB6CE8EA0D5BF2767DFB', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7085ED9CD66CFD64CF595378A42254F0AA31F229ADADAB6CE8EA0D5BF2767DFB', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/3420794ED726449CAFFB833D7A695A98D09DBE2FBF738784A625FA756236B379', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/3420794ED726449CAFFB833D7A695A98D09DBE2FBF738784A625FA756236B379', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/823641B88165906EC65DC5234D442201D043BD4D7D8FA4A739BEB02E067C4A8B', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/823641B88165906EC65DC5234D442201D043BD4D7D8FA4A739BEB02E067C4A8B', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/3A9829B8D9C90AB423C9E5548D19C5A2BA148372EEEA7C694B8EB6E1E824FC68', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3A9829B8D9C90AB423C9E5548D19C5A2BA148372EEEA7C694B8EB6E1E824FC68', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/201A5FDC83AF39E04026DB7D6640723B6F3A129B8ED66D9F78B4B017758CF80F', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/201A5FDC83AF39E04026DB7D6640723B6F3A129B8ED66D9F78B4B017758CF80F', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/2D3A7D2EA96C341C9242E5AC3DC8EB80C136A78174A82C894C1759C3CD9B0FF0', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2D3A7D2EA96C341C9242E5AC3DC8EB80C136A78174A82C894C1759C3CD9B0FF0', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/31B7D78B2D4E268A3D3A7A31960BC7B4A5E89088C6FFB555218024A10EA5AC33', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/31B7D78B2D4E268A3D3A7A31960BC7B4A5E89088C6FFB555218024A10EA5AC33', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/4368EB1CA97572CD7E9C17BF5461376E1FD70105E6D743E2091AD6F37734DFCD', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/4368EB1CA97572CD7E9C17BF5461376E1FD70105E6D743E2091AD6F37734DFCD', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/245F7484BA5013EBCA0BBD383D019352AA53D99C1281E3196F8813AEBE13B7FC', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/245F7484BA5013EBCA0BBD383D019352AA53D99C1281E3196F8813AEBE13B7FC', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/5868DD0A11B2AF0DFFD4451482C9FF0FD5A75500EDE6E446CF70A39CC1D8D559', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5868DD0A11B2AF0DFFD4451482C9FF0FD5A75500EDE6E446CF70A39CC1D8D559', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/D7C482497541FE4718592BBFE793334B94D7A7713529A74B72E4B42FF7B1AFCA', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D7C482497541FE4718592BBFE793334B94D7A7713529A74B72E4B42FF7B1AFCA', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/098CDF8E83A365A62D682A6D2B97865ED65A606A12532ABF2B93C1DCD90E0E38', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/098CDF8E83A365A62D682A6D2B97865ED65A606A12532ABF2B93C1DCD90E0E38', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/7DF6353BD49FA824DDC32B9735D44EC6E595D8CBDB6C53B1859C85790B2C6940', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7DF6353BD49FA824DDC32B9735D44EC6E595D8CBDB6C53B1859C85790B2C6940', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/DBFDAC4943962CC45921D78E49AA8BF8695621EF46FD378AB33D576020889889', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DBFDAC4943962CC45921D78E49AA8BF8695621EF46FD378AB33D576020889889', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/D7126A1BA41739CF3AB9F3605290B8633D438AE34D66F0C3B7BA660C0EE1BC6B', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D7126A1BA41739CF3AB9F3605290B8633D438AE34D66F0C3B7BA660C0EE1BC6B', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/11EBE0EE495AA4BA5B298A675793EE4D057FF2BAE5FA96A605FA865D14DA97FD', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/11EBE0EE495AA4BA5B298A675793EE4D057FF2BAE5FA96A605FA865D14DA97FD', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/F6507D754CE93EE6ED166E6A446812289E4FC66E12D7D1E24A4F787900546D4D', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6507D754CE93EE6ED166E6A446812289E4FC66E12D7D1E24A4F787900546D4D', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/34A37A58A7E4C196C0B08B9EA62E07D03B67F911F60F5FCA2B42D68CA160ABAD', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/34A37A58A7E4C196C0B08B9EA62E07D03B67F911F60F5FCA2B42D68CA160ABAD', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F25E1BE8F33CCB6F1DB3494FB632DF3C6AB42DF6AB4D45A2D4B962BD007E05FD', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/F25E1BE8F33CCB6F1DB3494FB632DF3C6AB42DF6AB4D45A2D4B962BD007E05FD', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/0036235C29EA0DB8DAFAE36FD6BADF0C67BAD5FAB231D9DD4723727D80175CF1', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0036235C29EA0DB8DAFAE36FD6BADF0C67BAD5FAB231D9DD4723727D80175CF1', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/183EE9B6DB0C651C3B109EA3AA34A92C372310D6B9FDBAFB8F8A7D3ED856163E', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/183EE9B6DB0C651C3B109EA3AA34A92C372310D6B9FDBAFB8F8A7D3ED856163E', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/1C776F46D6F98F4DA82451E3EDAF62C5C029193BC9C7A1716C5B36008794950F', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/1C776F46D6F98F4DA82451E3EDAF62C5C029193BC9C7A1716C5B36008794950F', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/5CEC7625422FA51C4F143F1C830B0A295BA7CFB742430F05E29967BBEB2DEE71', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/5CEC7625422FA51C4F143F1C830B0A295BA7CFB742430F05E29967BBEB2DEE71', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/AF07FD7EF992B7647DFA39450610E2EDEECCC6445A1CC1B03FA9D3158B415742', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AF07FD7EF992B7647DFA39450610E2EDEECCC6445A1CC1B03FA9D3158B415742', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/C329A291289710BD7CB6AE29E91C8456527FA11336CD3452EABB0F415386CB72', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C329A291289710BD7CB6AE29E91C8456527FA11336CD3452EABB0F415386CB72', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/2BAA93D1D68B52E8F6DB5601F5FA2164C103BD0E6EEF0CF2C37C9499A26F07ED', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2BAA93D1D68B52E8F6DB5601F5FA2164C103BD0E6EEF0CF2C37C9499A26F07ED', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/5B9FFDD18A675C6BCEF047D0D096B8641A5C1B7F30F0E75211DA40CF0B83DCB2', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5B9FFDD18A675C6BCEF047D0D096B8641A5C1B7F30F0E75211DA40CF0B83DCB2', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/1AF5758FEB766B194819806F1F96D90E423B747BD84565B37440668DF21E6427', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1AF5758FEB766B194819806F1F96D90E423B747BD84565B37440668DF21E6427', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/ABAD012014A039A2940D6E989DFE4CDA8BEF260C037EB3B7EC0AC5FA77FC37E4', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/ABAD012014A039A2940D6E989DFE4CDA8BEF260C037EB3B7EC0AC5FA77FC37E4', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B223198FB039782946A6D2D2BD48E709349B5DC2BA341E8A2F20D92C5D521634', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B223198FB039782946A6D2D2BD48E709349B5DC2BA341E8A2F20D92C5D521634', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/A39392BF733B250555F5DE01A59A3D0402F7BB3658E473FDA7703B544815CB4D', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/A39392BF733B250555F5DE01A59A3D0402F7BB3658E473FDA7703B544815CB4D', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/29BC81371438F8C23B3F2518EA471D6067059DDFF1AB0F68B8539D6DFA03925D', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29BC81371438F8C23B3F2518EA471D6067059DDFF1AB0F68B8539D6DFA03925D', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/C7D7C80B8946393CD24937D22F888DEA03243C14179BFC46BC73B351028194B8', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/C7D7C80B8946393CD24937D22F888DEA03243C14179BFC46BC73B351028194B8', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/1A17B322BEFE62C0859520A46E0D4282A89F99A9A619C82EE985A83AA6C76028', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/1A17B322BEFE62C0859520A46E0D4282A89F99A9A619C82EE985A83AA6C76028', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/quasar.ts b/packages/assets/src/mainnet/quasar.ts index 60405e29e..50190b03f 100644 --- a/packages/assets/src/mainnet/quasar.ts +++ b/packages/assets/src/mainnet/quasar.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-688', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/quicksilver.ts b/packages/assets/src/mainnet/quicksilver.ts index c50922390..7142beef1 100644 --- a/packages/assets/src/mainnet/quicksilver.ts +++ b/packages/assets/src/mainnet/quicksilver.ts @@ -14286,6 +14286,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-522', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14349,17 +14396,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14372,6 +14408,17 @@ const assets: AssetList = { channel_id: 'channel-16' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14641,17 +14688,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14664,6 +14700,17 @@ const assets: AssetList = { channel_id: 'channel-16' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14685,6 +14732,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-16' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14694,19 +14754,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/C772A5AC19EC8B6C7DB01D3078313D21B9B5980D9C98D901687B21D967E8404F', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/C772A5AC19EC8B6C7DB01D3078313D21B9B5980D9C98D901687B21D967E8404F', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-73', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-16' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B3549955F7D3B85CBBF3F6E3908835ACB81CD6D879DE9CEBA104780588C8E45E', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B3549955F7D3B85CBBF3F6E3908835ACB81CD6D879DE9CEBA104780588C8E45E', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-16' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/4945E29EDEBB5FDEFD2AADAD0DC8D61603658D2B6E141D929E836BB76F0B3E7A', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/4945E29EDEBB5FDEFD2AADAD0DC8D61603658D2B6E141D929E836BB76F0B3E7A', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-16' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/qwoyn.ts b/packages/assets/src/mainnet/qwoyn.ts index f63336a93..1fc60a774 100644 --- a/packages/assets/src/mainnet/qwoyn.ts +++ b/packages/assets/src/mainnet/qwoyn.ts @@ -13743,6 +13743,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-880', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/realio.ts b/packages/assets/src/mainnet/realio.ts index fa19b5df1..184770205 100644 --- a/packages/assets/src/mainnet/realio.ts +++ b/packages/assets/src/mainnet/realio.ts @@ -15154,6 +15154,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1424', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/rebus.ts b/packages/assets/src/mainnet/rebus.ts index 4b3a81c53..a2cc4781e 100644 --- a/packages/assets/src/mainnet/rebus.ts +++ b/packages/assets/src/mainnet/rebus.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-355', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/regen.ts b/packages/assets/src/mainnet/regen.ts index 87a74e9f8..2321e8500 100644 --- a/packages/assets/src/mainnet/regen.ts +++ b/packages/assets/src/mainnet/regen.ts @@ -15336,6 +15336,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15399,17 +15446,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -15422,6 +15458,17 @@ const assets: AssetList = { channel_id: 'channel-14' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -15691,17 +15738,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -15714,6 +15750,17 @@ const assets: AssetList = { channel_id: 'channel-14' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -15735,6 +15782,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-14' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -15744,19 +15804,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/77C45E2DEFD2DDE126D84DDC75E1CAE86ADC5E134DB5C737794E37699EDBA531', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/77C45E2DEFD2DDE126D84DDC75E1CAE86ADC5E134DB5C737794E37699EDBA531', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-21', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-14' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/29538183BDB6F096DF371959CCC9E5E9085B8E9466AD7757D1BB315915D7EC85', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29538183BDB6F096DF371959CCC9E5E9085B8E9466AD7757D1BB315915D7EC85', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-14' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/FAB16CD21E70831CAF712D47BC1865245C582E938DCF96C881347803405678BE', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/FAB16CD21E70831CAF712D47BC1865245C582E938DCF96C881347803405678BE', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-14' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -16146,6 +16335,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/76ADAF7500FA7E048261145768030EB72392A488BFDEC353631B21EF15F0EE69', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/76ADAF7500FA7E048261145768030EB72392A488BFDEC353631B21EF15F0EE69', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-107', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-158' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/rizon.ts b/packages/assets/src/mainnet/rizon.ts index 82d2302ea..dae379269 100644 --- a/packages/assets/src/mainnet/rizon.ts +++ b/packages/assets/src/mainnet/rizon.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-221', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/scorum.ts b/packages/assets/src/mainnet/scorum.ts index bd473a6df..201725990 100644 --- a/packages/assets/src/mainnet/scorum.ts +++ b/packages/assets/src/mainnet/scorum.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/secretnetwork.ts b/packages/assets/src/mainnet/secretnetwork.ts index fa2d4a782..51301bed8 100644 --- a/packages/assets/src/mainnet/secretnetwork.ts +++ b/packages/assets/src/mainnet/secretnetwork.ts @@ -19907,6 +19907,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-88', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19970,17 +20017,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -19993,6 +20029,17 @@ const assets: AssetList = { channel_id: 'channel-64' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -20262,17 +20309,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -20285,6 +20321,17 @@ const assets: AssetList = { channel_id: 'channel-64' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -20306,6 +20353,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-64' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -20315,19 +20375,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/D07ED2191DED98D154C888E246C0237447611D9C754E12A4A9B2BB2B19F9274C', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/D07ED2191DED98D154C888E246C0237447611D9C754E12A4A9B2BB2B19F9274C', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-82', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-64' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/03CEFC2E69C186AFB6E7EC28B82C4F6D4C5B43CD1242047C0BA61B1EF697DD2D', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03CEFC2E69C186AFB6E7EC28B82C4F6D4C5B43CD1242047C0BA61B1EF697DD2D', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-64' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/970E5DE3BC7688D81E32A75EB87FDE28D8DCD783A7677EAACD598C2984F6C5CB', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/970E5DE3BC7688D81E32A75EB87FDE28D8DCD783A7677EAACD598C2984F6C5CB', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-64' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -21685,6 +21874,101 @@ const assets: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/867D6CA7F7DDB7CE9B9E62AAA1891D553839A87C4776682CEA650427B812DB98', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-63', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-111' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EDF2E7C09026D822AA03884DA4A4A06F915E3C39871ECE351DF40836CF78B9A5', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-63', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-111' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra Classic.', denom_units: [ @@ -23062,6 +23346,49 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/1B5D8D2E9B85030391AE48EB992A0466F8DE5DB8F15E745CF25D5714142391BD', + exponent: 0, + aliases: ['uumee'] + }, + { + denom: 'umee', + exponent: 6 + } + ], + base: 'ibc/1B5D8D2E9B85030391AE48EB992A0466F8DE5DB8F15E745CF25D5714142391BD', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + coingecko_id: 'umee', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-123', + base_denom: 'uumee', + chain_name: 'umee' + }, + chain: { + channel_id: 'channel-126' + } + } + ] + }, { description: 'The native token cw20 for Neta on Juno Chain', type_asset: 'cw20', @@ -24753,6 +25080,8 @@ const assets: AssetList = { }, { description: 'Kleomedes Token', + extended_description: + 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.', type_asset: 'cw20', address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', @@ -26251,6 +26580,102 @@ const assets: AssetList = { } ] }, + { + description: 'ATEN is NETA.', + type_asset: 'cw20', + address: + 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + denom_units: [ + { + denom: + 'ibc/4226D7A5F93E94AD5BEA5C67AA067878280390C8D3D03049400F1590EEAC174E', + exponent: 0, + aliases: [ + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r' + ] + }, + { + denom: 'aten', + exponent: 6 + } + ], + base: 'ibc/4226D7A5F93E94AD5BEA5C67AA067878280390C8D3D03049400F1590EEAC174E', + name: 'ATEN', + display: 'aten', + symbol: 'ATEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'transfer', + channel_id: 'channel-163', + base_denom: + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + chain_name: 'juno' + }, + chain: { + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-45' + } + } + ] + }, + { + description: 'HERA is the goddess of marriage in Greek mythology.', + type_asset: 'cw20', + address: + 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + denom_units: [ + { + denom: + 'ibc/CE97DE4B0BAA4D013E5FD4D8D067FA8ABDF244EF4A549135BEF25B5EBD96AFE0', + exponent: 0, + aliases: [ + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0' + ] + }, + { + denom: 'hera', + exponent: 6 + } + ], + base: 'ibc/CE97DE4B0BAA4D013E5FD4D8D067FA8ABDF244EF4A549135BEF25B5EBD96AFE0', + name: 'HERA', + display: 'hera', + symbol: 'HERA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'transfer', + channel_id: 'channel-163', + base_denom: + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + chain_name: 'juno' + }, + chain: { + port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', + channel_id: 'channel-45' + } + } + ] + }, { description: 'Auto componded USDC despoited into Ginkou on Migaloo chain', denom_units: [ diff --git a/packages/assets/src/mainnet/sei.ts b/packages/assets/src/mainnet/sei.ts index 4a74bdefa..2a762f2ec 100644 --- a/packages/assets/src/mainnet/sei.ts +++ b/packages/assets/src/mainnet/sei.ts @@ -17381,6 +17381,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-782', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/sentinel.ts b/packages/assets/src/mainnet/sentinel.ts index 74f356350..8bbf79651 100644 --- a/packages/assets/src/mainnet/sentinel.ts +++ b/packages/assets/src/mainnet/sentinel.ts @@ -13959,6 +13959,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14022,17 +14069,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14045,6 +14081,17 @@ const assets: AssetList = { channel_id: 'channel-15' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14314,17 +14361,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14337,6 +14373,17 @@ const assets: AssetList = { channel_id: 'channel-15' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14358,6 +14405,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14367,19 +14427,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/84AD19865C8A4353B10CBFD14CC9D7FCEE1DD03BC00CEE6676549F89EC8ED539', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/84AD19865C8A4353B10CBFD14CC9D7FCEE1DD03BC00CEE6676549F89EC8ED539', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-22', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/30B92D65D53F77B40D652971132788B7130770098559C4598C5214474074A337', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30B92D65D53F77B40D652971132788B7130770098559C4598C5214474074A337', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-15' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/28A10937FA9B2EFC26ED522495B046F9DD41650E38B300650DCE71B032281517', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/28A10937FA9B2EFC26ED522495B046F9DD41650E38B300650DCE71B032281517', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-15' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/sge.ts b/packages/assets/src/mainnet/sge.ts index 87711eb8b..0acada24b 100644 --- a/packages/assets/src/mainnet/sge.ts +++ b/packages/assets/src/mainnet/sge.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5485', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shareledger.ts b/packages/assets/src/mainnet/shareledger.ts index 71a08c788..c26c78a48 100644 --- a/packages/assets/src/mainnet/shareledger.ts +++ b/packages/assets/src/mainnet/shareledger.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-647', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shentu.ts b/packages/assets/src/mainnet/shentu.ts index 7434270f3..3bc414445 100644 --- a/packages/assets/src/mainnet/shentu.ts +++ b/packages/assets/src/mainnet/shentu.ts @@ -13597,6 +13597,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/26AB5A32422A0E9BC3B7FFCCF57CB30F3E8AEEA0F1705D64DCF4D8FA3DD71B9D', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-146', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/sifchain.ts b/packages/assets/src/mainnet/sifchain.ts index bd444febb..b8c0408d9 100644 --- a/packages/assets/src/mainnet/sifchain.ts +++ b/packages/assets/src/mainnet/sifchain.ts @@ -14176,6 +14176,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5AD36D3DA921466009CA5F4ED6AFB383E972010546164F60A58F04A7E1DFA4AA', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5AD36D3DA921466009CA5F4ED6AFB383E972010546164F60A58F04A7E1DFA4AA', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-17' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14239,17 +14286,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14262,6 +14298,17 @@ const assets: AssetList = { channel_id: 'channel-7' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14531,17 +14578,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14554,6 +14590,17 @@ const assets: AssetList = { channel_id: 'channel-7' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14575,6 +14622,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-26', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-7' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14584,19 +14644,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/F57E797A61625C125678009909C92DE6598A311068F51C619154CC0CA38C02F0', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/F57E797A61625C125678009909C92DE6598A311068F51C619154CC0CA38C02F0', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-26', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CDB596B559D988AE9DBB63E21AF06A290DB91D2E2BA8E3762C0DE45861A2777F', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CDB596B559D988AE9DBB63E21AF06A290DB91D2E2BA8E3762C0DE45861A2777F', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-26', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-7' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/AEB492ECA71454E3806CCECD8404C03192F2993D790CD716953A7C9F2069BC85', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/AEB492ECA71454E3806CCECD8404C03192F2993D790CD716953A7C9F2069BC85', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-26', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/sommelier.ts b/packages/assets/src/mainnet/sommelier.ts index efffa6dac..9e9a560f1 100644 --- a/packages/assets/src/mainnet/sommelier.ts +++ b/packages/assets/src/mainnet/sommelier.ts @@ -16998,6 +16998,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-165', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stride', denom_units: [ diff --git a/packages/assets/src/mainnet/source.ts b/packages/assets/src/mainnet/source.ts index 419a6019b..78b747b16 100644 --- a/packages/assets/src/mainnet/source.ts +++ b/packages/assets/src/mainnet/source.ts @@ -13598,6 +13598,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8945', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/stafihub.ts b/packages/assets/src/mainnet/stafihub.ts index 41a236658..2973e18e0 100644 --- a/packages/assets/src/mainnet/stafihub.ts +++ b/packages/assets/src/mainnet/stafihub.ts @@ -15500,6 +15500,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/012BA44A7685591C084073A8B4EE489218CCB68B562F2F9C3E56C0C44EDAAA81', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5413', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/stargaze.ts b/packages/assets/src/mainnet/stargaze.ts index b2d9e2f35..71c7820b0 100644 --- a/packages/assets/src/mainnet/stargaze.ts +++ b/packages/assets/src/mainnet/stargaze.ts @@ -1916,6 +1916,57 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/FECA8EC2394EE5CC5F67CF08DAE0EBE3783CE63FBAA23392331D981E259C13B8', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/FECA8EC2394EE5CC5F67CF08DAE0EBE3783CE63FBAA23392331D981E259C13B8', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-278' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'The native token of JUNO Chain', denom_units: [ @@ -19038,6 +19089,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-75', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19101,17 +19199,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -19124,6 +19211,17 @@ const assets: AssetList = { channel_id: 'channel-287' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19393,17 +19491,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19416,6 +19503,17 @@ const assets: AssetList = { channel_id: 'channel-287' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19437,6 +19535,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19446,19 +19557,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/FD3B4530AC2B3504ED3CD9F7A7D19224D4D7CBB4F2A849FE26153E69B2CD260F', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/FD3B4530AC2B3504ED3CD9F7A7D19224D4D7CBB4F2A849FE26153E69B2CD260F', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-197', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/0B46AC0E5E40F0C779E0B435E4CD46F24865958399EDCD6DC186BC5D0DD0295B', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0B46AC0E5E40F0C779E0B435E4CD46F24865958399EDCD6DC186BC5D0DD0295B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-287' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/1C52596E4BD1298DEEF94989DF824B6A2D29DEB389243EA17E47B3693C739A66', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/1C52596E4BD1298DEEF94989DF824B6A2D29DEB389243EA17E47B3693C739A66', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-287' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/starname.ts b/packages/assets/src/mainnet/starname.ts index d88780381..1dfe3c842 100644 --- a/packages/assets/src/mainnet/starname.ts +++ b/packages/assets/src/mainnet/starname.ts @@ -13916,6 +13916,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/671081296D08D7B4D918ECA5EE828091EEA3572DEA2831825B235B48ACA19B66', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -13979,17 +14026,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14002,6 +14038,17 @@ const assets: AssetList = { channel_id: 'channel-13' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14271,17 +14318,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14294,6 +14330,17 @@ const assets: AssetList = { channel_id: 'channel-13' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14315,6 +14362,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-27', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-13' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14324,19 +14384,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/B9B62A9FEF89E2F3B8AB4D18158BA2853F355FE946397A0906B95247ECBFC2AC', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/B9B62A9FEF89E2F3B8AB4D18158BA2853F355FE946397A0906B95247ECBFC2AC', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-27', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-13' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/847CFFACE9E343A43D1D4541801EE595F38643F843EB8C26D9BF47910F53BEF2', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/847CFFACE9E343A43D1D4541801EE595F38643F843EB8C26D9BF47910F53BEF2', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-27', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-13' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/15C9954955925B77955ECF08F220BC10D8922A70916863C5683670EC4519C013', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/15C9954955925B77955ECF08F220BC10D8922A70916863C5683670EC4519C013', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-27', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-13' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/stride.ts b/packages/assets/src/mainnet/stride.ts index d41944283..d311557a1 100644 --- a/packages/assets/src/mainnet/stride.ts +++ b/packages/assets/src/mainnet/stride.ts @@ -20032,6 +20032,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5019A0057A149B7198971A180259B6617BD515FC3784FBECEBC9D25A503B7F19', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-326', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -20095,17 +20142,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -20118,6 +20154,17 @@ const assets: AssetList = { channel_id: 'channel-53' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -20387,17 +20434,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -20410,6 +20446,17 @@ const assets: AssetList = { channel_id: 'channel-53' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -20431,6 +20478,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-53' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -20440,19 +20500,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/DA8E89F0A89186437F3BAD31FFE321C2F7FF6136D37439414DDCC6299D8F1BB7', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/DA8E89F0A89186437F3BAD31FFE321C2F7FF6136D37439414DDCC6299D8F1BB7', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-67', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-53' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/75F3DCD42D821859A3C89E4853E88FD1B6554DDFC88E50075696D1753952A2A2', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75F3DCD42D821859A3C89E4853E88FD1B6554DDFC88E50075696D1753952A2A2', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-53' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/6FCF59C4404C3DABFFD89FC3FC96453A1FD665042F68A415FABF1B6694F25465', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/6FCF59C4404C3DABFFD89FC3FC96453A1FD665042F68A415FABF1B6694F25465', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-53' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/assets/src/mainnet/teritori.ts b/packages/assets/src/mainnet/teritori.ts index 373ff5508..e1d6db33b 100644 --- a/packages/assets/src/mainnet/teritori.ts +++ b/packages/assets/src/mainnet/teritori.ts @@ -15330,6 +15330,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-362', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/terra.ts b/packages/assets/src/mainnet/terra.ts index 7548d1c93..ea2b47366 100644 --- a/packages/assets/src/mainnet/terra.ts +++ b/packages/assets/src/mainnet/terra.ts @@ -14030,6 +14030,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-72', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/terra2.ts b/packages/assets/src/mainnet/terra2.ts index d24ac94ad..c1c60e718 100644 --- a/packages/assets/src/mainnet/terra2.ts +++ b/packages/assets/src/mainnet/terra2.ts @@ -20860,6 +20860,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/5109AE9EBFED9AF98A5A3D7CA5525202ECCF6065877F74616C8A8B9DCC261F27', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-251', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/tgrade.ts b/packages/assets/src/mainnet/tgrade.ts index e04021519..ab970d14e 100644 --- a/packages/assets/src/mainnet/tgrade.ts +++ b/packages/assets/src/mainnet/tgrade.ts @@ -13775,6 +13775,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-263', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/umee.ts b/packages/assets/src/mainnet/umee.ts index 05673502f..53dacf946 100644 --- a/packages/assets/src/mainnet/umee.ts +++ b/packages/assets/src/mainnet/umee.ts @@ -2,6 +2,94 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { chain_name: 'umee', assets: [ + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/63AA230956B5ED0E0433DF6714C6DB7D1B91974589A520C205C6436E56DF0A2C', + exponent: 0, + aliases: ['ubld'] + }, + { + denom: 'bld', + exponent: 6 + } + ], + base: 'ibc/63AA230956B5ED0E0433DF6714C6DB7D1B91974589A520C205C6436E56DF0A2C', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + coingecko_id: 'agoric', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: 'ubld', + chain_name: 'agoric' + }, + chain: { + channel_id: 'channel-42' + } + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/BA460328D9ABA27E643A924071FDB3836E4CE8084C6D2380F25EFAB85CF8EB11', + exponent: 0, + aliases: ['uist'] + }, + { + denom: 'ist', + exponent: 6 + } + ], + base: 'ibc/BA460328D9ABA27E643A924071FDB3836E4CE8084C6D2380F25EFAB85CF8EB11', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + coingecko_id: 'inter-stable-token', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: 'uist', + chain_name: 'agoric' + }, + chain: { + channel_id: 'channel-42' + } + } + ] + }, { description: 'The native token of Archway network', denom_units: [ @@ -1601,6 +1689,49 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' } }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/69860B527570A33015804BD2BF9BBB23B58A87556B108028E25EA9126E60D3D1', + exponent: 0, + aliases: ['utia'] + }, + { + denom: 'tia', + exponent: 6 + } + ], + base: 'ibc/69860B527570A33015804BD2BF9BBB23B58A87556B108028E25EA9126E60D3D1', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + coingecko_id: 'celestia', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'utia', + chain_name: 'celestia' + }, + chain: { + channel_id: 'channel-119' + } + } + ] + }, { description: 'The native staking and governance token of the Cosmos Hub.', denom_units: [ @@ -1825,185 +1956,811 @@ const assets: AssetList = { ] }, { - description: 'The native staking and governance token of Kava', + description: 'The native staking token of dYdX Protocol.', denom_units: [ { denom: - 'ibc/A81D1B9E93070A920F6DC6680FB48F83645F165BB3597D87F1D6DD2EFB6677AF', + 'ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0', exponent: 0, - aliases: ['ukava'] + aliases: ['adydx'] }, { - denom: 'kava', - exponent: 6 + denom: 'dydx', + exponent: 18 } ], - base: 'ibc/A81D1B9E93070A920F6DC6680FB48F83645F165BB3597D87F1D6DD2EFB6677AF', - name: 'Kava', - display: 'kava', - symbol: 'KAVA', + base: 'ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0', + name: 'dYdX', + display: 'dydx', + symbol: 'DYDX', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' }, - coingecko_id: 'kava', + coingecko_id: 'dydx', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg', + theme: { + circle: true + } } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-119', - base_denom: 'ukava', - chain_name: 'kava' + channel_id: 'channel-8', + base_denom: 'adydx', + chain_name: 'dydx' }, chain: { - channel_id: 'channel-98' + channel_id: 'channel-118' } } ] }, { - description: 'Governance token of Kava Lend Protocol', + description: 'Noble USDC on dYdX Protocol.', denom_units: [ { denom: - 'ibc/7312940EE94017BB5A24BD1A54FC189CBDE1D23BE6C7E20E4D3731CA31FA3198', + 'ibc/AF62E69333BAF0AB427E36B00166E6A317660BCDB949631A6DA006B231D28FD8', exponent: 0, - aliases: ['hard'] + aliases: [ + 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5' + ] }, { - denom: 'HARD', + denom: 'usdc', exponent: 6 } ], - base: 'ibc/7312940EE94017BB5A24BD1A54FC189CBDE1D23BE6C7E20E4D3731CA31FA3198', - name: 'Kava Hard', - display: 'HARD', - symbol: 'HARD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' - }, - coingecko_id: 'kava-lend', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' - } - ], + type_asset: 'ics20', + base: 'ibc/AF62E69333BAF0AB427E36B00166E6A317660BCDB949631A6DA006B231D28FD8', + name: 'Noble USDC', + display: 'usdc', + symbol: 'USDC', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-119', - base_denom: 'hard', - chain_name: 'kava' + channel_id: 'channel-8', + base_denom: + 'ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5', + chain_name: 'dydx' }, chain: { - channel_id: 'channel-98' + channel_id: 'channel-118' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } }, { - description: 'Governance token of Kava Swap Protocol', + description: + 'The INJ token is the native governance token for the Injective chain.', denom_units: [ { denom: - 'ibc/ACCFB1481C1FB7995A298E66948982271C7151A8A5383ACA347F6C3A62738FE8', + 'ibc/DB589A0C82618E56E5C90B77578CCBDB921CFEC8E6F6CF46032C43C1B06F92B8', exponent: 0, - aliases: ['swp'] + aliases: ['inj'] }, { - denom: 'SWP', - exponent: 6 + denom: 'INJ', + exponent: 18 } ], - base: 'ibc/ACCFB1481C1FB7995A298E66948982271C7151A8A5383ACA347F6C3A62738FE8', - name: 'Kava Swap', - display: 'SWP', - symbol: 'SWP', + base: 'ibc/DB589A0C82618E56E5C90B77578CCBDB921CFEC8E6F6CF46032C43C1B06F92B8', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' }, - coingecko_id: 'kava-swap', + coingecko_id: 'injective-protocol', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-119', - base_denom: 'swp', - chain_name: 'kava' + channel_id: 'channel-159', + base_denom: 'inj', + chain_name: 'injective' }, chain: { - channel_id: 'channel-98' + channel_id: 'channel-116' } } ] }, { - description: 'The native stablecoin of Kava', + description: 'Tether USDt on Injective', denom_units: [ { denom: - 'ibc/7D04E3BE2A28E2D6B08E307D87D92ECACC040BB9F87EC5A2726A47B47481A450', + 'ibc/C673F7520E23B067223AA4757BCD5DB4ACC87E023694B590D5D59BBCA570E18F', exponent: 0, - aliases: ['usdx'] + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] }, { - denom: 'USDX', + denom: 'usdt', exponent: 6 } ], - base: 'ibc/7D04E3BE2A28E2D6B08E307D87D92ECACC040BB9F87EC5A2726A47B47481A450', - name: 'Kava USDX', - display: 'USDX', - symbol: 'USDX', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' - }, - coingecko_id: 'usdx', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' - } - ], + type_asset: 'ics20', + base: 'ibc/C673F7520E23B067223AA4757BCD5DB4ACC87E023694B590D5D59BBCA570E18F', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-119', - base_denom: 'usdx', - chain_name: 'kava' + channel_id: 'channel-159', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'injective' }, chain: { - channel_id: 'channel-98' + channel_id: 'channel-116' } } - ] - }, - { - denom_units: [ + ], + images: [ { - denom: - 'ibc/84B9BEDF23F4A33A5DCB82C3D3B5348927418DBC6487EF8821DFEAFE06C77DF5', - exponent: 0, - aliases: ['erc20/tether/usdt'] - }, + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'ERIS liquid staked INJ', + denom_units: [ + { + denom: + 'ibc/1F97B067D4A2FD4850BDE1BD436451D3727EC601AFFF612A72E4B49CCA4C02B8', + exponent: 0, + aliases: ['factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ'] + }, + { + denom: 'ampINJ', + exponent: 6 + } + ], + base: 'ibc/1F97B067D4A2FD4850BDE1BD436451D3727EC601AFFF612A72E4B49CCA4C02B8', + name: 'ERIS Amplified INJ', + display: 'ampINJ', + symbol: 'ampINJ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/E7BAA9A682AFBB30933E4819BA3D65C857047E8FAAFFC3A0BDA8E12B08367EF6', + exponent: 0, + aliases: ['factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism'] + }, + { + denom: 'autism', + exponent: 6 + } + ], + base: 'ibc/E7BAA9A682AFBB30933E4819BA3D65C857047E8FAAFFC3A0BDA8E12B08367EF6', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + coingecko_id: 'autism', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/EE0E32BD7BB96CD93E62339A16AEF5A05E89B4AD8E8680409F012EF7C44411B7', + exponent: 0, + aliases: ['factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + base: 'ibc/EE0E32BD7BB96CD93E62339A16AEF5A05E89B4AD8E8680409F012EF7C44411B7', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + coingecko_id: 'dog-wif-nuchucks', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: 'The $WGMI Token - We Gonna Make It. Are you ready?', + denom_units: [ + { + denom: + 'ibc/AB239CCA841E562FA01387CBE553A2E1065181A9A84561C737CCD59E336F310A', + exponent: 0, + aliases: ['factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI'] + }, + { + denom: 'WGMI', + exponent: 6 + } + ], + base: 'ibc/AB239CCA841E562FA01387CBE553A2E1065181A9A84561C737CCD59E336F310A', + name: 'WGMI', + display: 'WGMI', + symbol: 'WGMI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: 'The first memecoin on osmosis.', + denom_units: [ + { + denom: + 'ibc/0FE697C01165C48A63597E09FC1BC4CD19349A9B49BAC29E2A4C398914347DDD', + exponent: 0, + aliases: [ + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3' + ] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0FE697C01165C48A63597E09FC1BC4CD19349A9B49BAC29E2A4C398914347DDD', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/17FFF05801FA04697A5240BA1CC58F07838EB4A1A07B7B9FF7A6F7DC55A223F7', + exponent: 0, + aliases: ['peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2'] + }, + { + denom: 'glto', + exponent: 6 + } + ], + base: 'ibc/17FFF05801FA04697A5240BA1CC58F07838EB4A1A07B7B9FF7A6F7DC55A223F7', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: 'peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + }, + { + description: + 'Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/', + denom_units: [ + { + denom: + 'ibc/5626EDD05ED1603B45F3E482047A96A9889D8005DE5A149D0DC22A96668515BB', + exponent: 0, + aliases: ['factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava'] + }, + { + denom: 'hava', + exponent: 6 + } + ], + base: 'ibc/5626EDD05ED1603B45F3E482047A96A9889D8005DE5A149D0DC22A96668515BB', + name: 'Hava Coin', + display: 'hava', + symbol: 'HAVA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/A4C280F7F68522C54A09716E682524DFA61217D3A1DA57FB7D84460F5B475EA9', + exponent: 0, + aliases: [ + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A4C280F7F68522C54A09716E682524DFA61217D3A1DA57FB7D84460F5B475EA9', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: + 'ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + }, + { + description: 'The second meme coin on Injective.', + denom_units: [ + { + denom: + 'ibc/68AD1ED41E24D70D23D4A38B080C3678265571953156D135CBA280C797C12DB9', + exponent: 0, + aliases: ['inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88'] + }, + { + denom: 'NINPO', + exponent: 6 + } + ], + base: 'ibc/68AD1ED41E24D70D23D4A38B080C3678265571953156D135CBA280C797C12DB9', + name: 'Ninpo', + display: 'NINPO', + symbol: 'NINPO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninpo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: 'inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: 'JUDO is a very futuristic meme token.', + denom_units: [ + { + denom: + 'ibc/AF246277B2D63FE07D4C66607D34287029DA7DA7EB6BAFA976188F17052F3B27', + exponent: 0, + aliases: ['inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h'] + }, + { + denom: 'JUDO', + exponent: 6 + } + ], + base: 'ibc/AF246277B2D63FE07D4C66607D34287029DA7DA7EB6BAFA976188F17052F3B27', + name: 'Judo', + display: 'JUDO', + symbol: 'JUDO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/judo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-159', + base_denom: 'inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h', + chain_name: 'injective' + }, + chain: { + channel_id: 'channel-116' + } + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/A81D1B9E93070A920F6DC6680FB48F83645F165BB3597D87F1D6DD2EFB6677AF', + exponent: 0, + aliases: ['ukava'] + }, + { + denom: 'kava', + exponent: 6 + } + ], + base: 'ibc/A81D1B9E93070A920F6DC6680FB48F83645F165BB3597D87F1D6DD2EFB6677AF', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + coingecko_id: 'kava', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-119', + base_denom: 'ukava', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-98' + } + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/7312940EE94017BB5A24BD1A54FC189CBDE1D23BE6C7E20E4D3731CA31FA3198', + exponent: 0, + aliases: ['hard'] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + base: 'ibc/7312940EE94017BB5A24BD1A54FC189CBDE1D23BE6C7E20E4D3731CA31FA3198', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + coingecko_id: 'kava-lend', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-119', + base_denom: 'hard', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-98' + } + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/ACCFB1481C1FB7995A298E66948982271C7151A8A5383ACA347F6C3A62738FE8', + exponent: 0, + aliases: ['swp'] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + base: 'ibc/ACCFB1481C1FB7995A298E66948982271C7151A8A5383ACA347F6C3A62738FE8', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + coingecko_id: 'kava-swap', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-119', + base_denom: 'swp', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-98' + } + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/7D04E3BE2A28E2D6B08E307D87D92ECACC040BB9F87EC5A2726A47B47481A450', + exponent: 0, + aliases: ['usdx'] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + base: 'ibc/7D04E3BE2A28E2D6B08E307D87D92ECACC040BB9F87EC5A2726A47B47481A450', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + coingecko_id: 'usdx', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-119', + base_denom: 'usdx', + chain_name: 'kava' + }, + chain: { + channel_id: 'channel-98' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/84B9BEDF23F4A33A5DCB82C3D3B5348927418DBC6487EF8821DFEAFE06C77DF5', + exponent: 0, + aliases: ['erc20/tether/usdt'] + }, { denom: 'usdt', exponent: 6 @@ -2525,6 +3282,181 @@ const assets: AssetList = { } ] }, + { + description: 'The permissioned staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/E8566F20E5EA2A080147A9C2F243343B1B3D7E6301172F29846CAFE3651129AC', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } + ], + base: 'ibc/E8566F20E5EA2A080147A9C2F243343B1B3D7E6301172F29846CAFE3651129AC', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: 'ustake', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-120' + } + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/B565CB2B04DE83B85C52174A20047F382B6780CCDD29102546896A9DB2A085DF', + exponent: 0, + aliases: ['ufrienzies'] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + base: 'ibc/B565CB2B04DE83B85C52174A20047F382B6780CCDD29102546896A9DB2A085DF', + display: 'frienzies', + name: 'Frienzies', + symbol: 'FRNZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: 'ufrienzies', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-120' + } + } + ] + }, + { + description: 'ATOM token on Noble', + denom_units: [ + { + denom: + 'ibc/F83FA4FCC364F2D3EB7D846DB4E730A1539D1915BFC39AEEBD163BF85A8B4891', + exponent: 0, + aliases: [ + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' + ] + }, + { + denom: 'atom', + exponent: 6, + aliases: ['ATOM'] + } + ], + type_asset: 'ics20', + base: 'ibc/F83FA4FCC364F2D3EB7D846DB4E730A1539D1915BFC39AEEBD163BF85A8B4891', + name: 'Atom Staking Coin', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-120' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/92BC8E5C50E6664B4DA748B62C1FFBE321967E1F8868EE03B005977F9AA7C0B8', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/92BC8E5C50E6664B4DA748B62C1FFBE321967E1F8868EE03B005977F9AA7C0B8', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + coingecko_id: 'usd-coin', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: 'uusdc', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-120' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ @@ -16121,6 +17053,53 @@ const assets: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-184', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -16184,17 +17163,6 @@ const assets: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -16207,6 +17175,17 @@ const assets: AssetList = { channel_id: 'channel-51' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -16476,17 +17455,6 @@ const assets: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -16499,6 +17467,17 @@ const assets: AssetList = { channel_id: 'channel-51' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -16520,6 +17499,19 @@ const assets: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-81', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-51' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -16529,19 +17521,148 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/9542DEEBAA76CA3AD52C838000A7E926E7771978345D4E40A1D08D944D1F2F1F', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/9542DEEBAA76CA3AD52C838000A7E926E7771978345D4E40A1D08D944D1F2F1F', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-81', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-51' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/03233FEF51164BD5D78EE248D09B8B4D67CA00901CCB816FF01423403F95CEC8', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03233FEF51164BD5D78EE248D09B8B4D67CA00901CCB816FF01423403F95CEC8', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-81', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-51' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/7CDC6771985B35DAD47A54C5C9E42CAB3C10153EBF72D6492BE3C43F0E20A33D', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/7CDC6771985B35DAD47A54C5C9E42CAB3C10153EBF72D6492BE3C43F0E20A33D', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-81', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-51' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -16801,6 +17922,136 @@ const assets: AssetList = { } ] }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/3AEB88073FA7797522985F8188A7742055CDCE532573B62715E85188C8B5856E', + exponent: 0, + aliases: ['uregen'] + }, + { + denom: 'regen', + exponent: 6 + } + ], + base: 'ibc/3AEB88073FA7797522985F8188A7742055CDCE532573B62715E85188C8B5856E', + name: 'Regen Network', + display: 'regen', + symbol: 'REGEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + coingecko_id: 'regen', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-158', + base_denom: 'uregen', + chain_name: 'regen' + }, + chain: { + channel_id: 'channel-107' + } + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/F7F4D0035FB3F10A244A0B48990D4891793188B5D59297AE2C0293291CB1B340', + exponent: 0, + aliases: ['eco.uC.NCT'] + }, + { + denom: 'nct', + exponent: 6 + } + ], + base: 'ibc/F7F4D0035FB3F10A244A0B48990D4891793188B5D59297AE2C0293291CB1B340', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + coingecko_id: 'toucan-protocol-nature-carbon-tonne', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-158', + base_denom: 'eco.uC.NCT', + chain_name: 'regen' + }, + chain: { + channel_id: 'channel-107' + } + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/6CDC150BDB3B4391C5ED7EB53014C12D92E0316B08C3E7499DAC65CA0673517A', + exponent: 0, + aliases: ['uscrt'] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + base: 'ibc/6CDC150BDB3B4391C5ED7EB53014C12D92E0316B08C3E7499DAC65CA0673517A', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + coingecko_id: 'secret', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-126', + base_denom: 'uscrt', + chain_name: 'secretnetwork' + }, + chain: { + channel_id: 'channel-123' + } + } + ] + }, { description: 'The native token of Stride', denom_units: [ diff --git a/packages/assets/src/mainnet/unification.ts b/packages/assets/src/mainnet/unification.ts index 77865065b..5c6b8d436 100644 --- a/packages/assets/src/mainnet/unification.ts +++ b/packages/assets/src/mainnet/unification.ts @@ -14026,6 +14026,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-382', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/vidulum.ts b/packages/assets/src/mainnet/vidulum.ts index caea22b62..6061d9910 100644 --- a/packages/assets/src/mainnet/vidulum.ts +++ b/packages/assets/src/mainnet/vidulum.ts @@ -13784,6 +13784,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-124', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/xpla.ts b/packages/assets/src/mainnet/xpla.ts index db3d0b136..0521ec20a 100644 --- a/packages/assets/src/mainnet/xpla.ts +++ b/packages/assets/src/mainnet/xpla.ts @@ -14124,6 +14124,53 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/575421180F2025214043A402C63F4066342689867C986C28FC590CD5AEC62F05', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1634', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] } ] }; diff --git a/packages/assets/src/testnet/akashtestnet.ts b/packages/assets/src/testnet/akashtestnet.ts index aaca6c865..04798d7fb 100644 --- a/packages/assets/src/testnet/akashtestnet.ts +++ b/packages/assets/src/testnet/akashtestnet.ts @@ -170,6 +170,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/CEE849E7746944873F0EBA9FE58313BF39C0D5411F0AF5B3E8FF5F040D0FEF96', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CEE849E7746944873F0EBA9FE58313BF39C0D5411F0AF5B3E8FF5F040D0FEF96', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4171', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/06E85292C0685D801A05DDFB19D1683812E1D975A5F93947D17E035C5D7CBC3C', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/06E85292C0685D801A05DDFB19D1683812E1D975A5F93947D17E035C5D7CBC3C', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4171', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/archwaytestnet.ts b/packages/assets/src/testnet/archwaytestnet.ts index 037e7de54..9f37c88ea 100644 --- a/packages/assets/src/testnet/archwaytestnet.ts +++ b/packages/assets/src/testnet/archwaytestnet.ts @@ -530,6 +530,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/9097A5C2753A710788E57C17F253AA5D0FA80AFC35D7C05B835C39FA9C22F690', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9097A5C2753A710788E57C17F253AA5D0FA80AFC35D7C05B835C39FA9C22F690', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3938', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-58' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/33357B10F756B6117E91B27CA74C8B9E02232E1C468322A67A09021AAA12C53B', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/33357B10F756B6117E91B27CA74C8B9E02232E1C468322A67A09021AAA12C53B', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3938', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-58' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/axelartestnet.ts b/packages/assets/src/testnet/axelartestnet.ts index b8ab6f312..9c63bc665 100644 --- a/packages/assets/src/testnet/axelartestnet.ts +++ b/packages/assets/src/testnet/axelartestnet.ts @@ -260,6 +260,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/6CCE6862BB92FF29DD7CA41D70D90C4463F35C95C41DC07D272D5E2BDF1480DC', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6CCE6862BB92FF29DD7CA41D70D90C4463F35C95C41DC07D272D5E2BDF1480DC', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4170', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-339' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/E398C9FCB5639AD08B052966C2B7A621064AE81490BE5BFBEEFAB49F52AA2AD8', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E398C9FCB5639AD08B052966C2B7A621064AE81490BE5BFBEEFAB49F52AA2AD8', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4170', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-339' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Osmosis', denom_units: [ @@ -622,11 +725,6 @@ const assets: AssetList = { exponent: 0, aliases: ['uxion'] }, - { - denom: 'mxion', - exponent: 3, - aliases: ['millixion'] - }, { denom: 'XION', exponent: 6, @@ -800,6 +898,53 @@ const assets: AssetList = { logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } + }, + { + denom_units: [ + { + denom: + 'ibc/9421E51240B5CACF4D06283AD10837C7BB020C78B30124767B283E79EA5B942E', + exponent: 0, + aliases: [ + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9421E51240B5CACF4D06283AD10837C7BB020C78B30124767B283E79EA5B942E', + name: 'Injective INJ token', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-283' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'injectivetestnet', + base_denom: 'inj' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } } ] }; diff --git a/packages/assets/src/testnet/celestiatestnet3.ts b/packages/assets/src/testnet/celestiatestnet3.ts index 25a31681b..89e12c768 100644 --- a/packages/assets/src/testnet/celestiatestnet3.ts +++ b/packages/assets/src/testnet/celestiatestnet3.ts @@ -219,6 +219,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/3E6A434D42779F6AAF7B257E1E37DB6274DA5291870DA5836AE585AD25EB354B', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3E6A434D42779F6AAF7B257E1E37DB6274DA5291870DA5836AE585AD25EB354B', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4370', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-25' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/A464329CBEDAAFCBAB187E455B71ECB9C173FE3638E3415BD619D5C7988E4BE1', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A464329CBEDAAFCBAB187E455B71ECB9C173FE3638E3415BD619D5C7988E4BE1', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4370', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-25' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/chain4energytestnet.ts b/packages/assets/src/testnet/chain4energytestnet.ts index 5acd81080..7db0a6683 100644 --- a/packages/assets/src/testnet/chain4energytestnet.ts +++ b/packages/assets/src/testnet/chain4energytestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-111', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-111', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/composabletestnet.ts b/packages/assets/src/testnet/composabletestnet.ts index 15d366a93..5d2c70102 100644 --- a/packages/assets/src/testnet/composabletestnet.ts +++ b/packages/assets/src/testnet/composabletestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/8EF1D2F794F824EC8CA3B708EBFEC59096D6D81FA542E70FD75B2BC1DD4A03C5', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8EF1D2F794F824EC8CA3B708EBFEC59096D6D81FA542E70FD75B2BC1DD4A03C5', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-329', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-11' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/B5D42C234812A39F6FD1442F0B97C8C6BA8B7558034E06249CD3893852CE2E71', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B5D42C234812A39F6FD1442F0B97C8C6BA8B7558034E06249CD3893852CE2E71', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-329', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-11' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/cosmoshubtestnet.ts b/packages/assets/src/testnet/cosmoshubtestnet.ts index 8ef8885e4..06b5b8936 100644 --- a/packages/assets/src/testnet/cosmoshubtestnet.ts +++ b/packages/assets/src/testnet/cosmoshubtestnet.ts @@ -218,6 +218,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/B3A64456342C0AF30D36B1AA5EF761597258E07D5E9883B69C30C94DEA4AF539', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B3A64456342C0AF30D36B1AA5EF761597258E07D5E9883B69C30C94DEA4AF539', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4156', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-3306' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/DCF2315685816A1B90FC43ED43E98CEB7C8EBFA2A9A75D805BF98A1C74461ADD', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DCF2315685816A1B90FC43ED43E98CEB7C8EBFA2A9A75D805BF98A1C74461ADD', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4156', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-3306' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/testnet/doravotatestnet.ts b/packages/assets/src/testnet/doravotatestnet.ts index 8b21fbf7d..a67c49d47 100644 --- a/packages/assets/src/testnet/doravotatestnet.ts +++ b/packages/assets/src/testnet/doravotatestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/EF309EA857D56D42163780A34B763296E927EE9BBF09606120662DD4FECDDF17', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EF309EA857D56D42163780A34B763296E927EE9BBF09606120662DD4FECDDF17', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1260', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/6B322DA0FEB7D53840E193134829D49C859AF0C487C59D5CF70C41C94AA5D78E', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6B322DA0FEB7D53840E193134829D49C859AF0C487C59D5CF70C41C94AA5D78E', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1260', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/empowertestnet.ts b/packages/assets/src/testnet/empowertestnet.ts index 4669eb960..04b505a02 100644 --- a/packages/assets/src/testnet/empowertestnet.ts +++ b/packages/assets/src/testnet/empowertestnet.ts @@ -178,6 +178,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-155', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-155', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/testnet/entrypointtestnet.ts b/packages/assets/src/testnet/entrypointtestnet.ts index 8feeddee8..fe7b254da 100644 --- a/packages/assets/src/testnet/entrypointtestnet.ts +++ b/packages/assets/src/testnet/entrypointtestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1543', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1543', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/impacthubtestnet.ts b/packages/assets/src/testnet/impacthubtestnet.ts index d491b8dc3..fde704b3c 100644 --- a/packages/assets/src/testnet/impacthubtestnet.ts +++ b/packages/assets/src/testnet/impacthubtestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/C67683B7AD488DD9917EF50E92D81A4ADF89BD875FE52A995D03E235C34716FC', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C67683B7AD488DD9917EF50E92D81A4ADF89BD875FE52A995D03E235C34716FC', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1637', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/D4F8922E7DCF22B914642E08346D1329A264C88DA989E64C87129163C4DACE6A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D4F8922E7DCF22B914642E08346D1329A264C88DA989E64C87129163C4DACE6A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1637', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/injectivetestnet.ts b/packages/assets/src/testnet/injectivetestnet.ts index 78cb5a664..c38032d2c 100644 --- a/packages/assets/src/testnet/injectivetestnet.ts +++ b/packages/assets/src/testnet/injectivetestnet.ts @@ -177,6 +177,339 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/0357F81EEFB3CE67A7C8DF990D62F73C637D78E0E4B8A495FDFFEB2A7E8DA258', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0357F81EEFB3CE67A7C8DF990D62F73C637D78E0E4B8A495FDFFEB2A7E8DA258', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4174', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-129' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/64A67E5F8931233C2D7B5731717EF3DF558C686553A1C3FC004750B928FDBCC8', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/64A67E5F8931233C2D7B5731717EF3DF558C686553A1C3FC004750B928FDBCC8', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4174', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-129' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, + { + description: 'The native staking token of the Xion network.', + denom_units: [ + { + denom: + 'ibc/6AB81EFD48DC233A206FAD0FB6F2691A456246C4A7F98D0CD37E2853DD0493EA', + exponent: 0, + aliases: ['uxion'] + }, + { + denom: 'XION', + exponent: 6, + aliases: ['xion'] + } + ], + base: 'ibc/6AB81EFD48DC233A206FAD0FB6F2691A456246C4A7F98D0CD37E2853DD0493EA', + display: 'XION', + name: 'xion', + symbol: 'XION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: 'uxion', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-324' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/09E1007B3E4910D39ADE4700B8CA352AB138C7FAEE79CDAF4E9CD61875E6CB56', + exponent: 0, + aliases: [ + 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/09E1007B3E4910D39ADE4700B8CA352AB138C7FAEE79CDAF4E9CD61875E6CB56', + name: 'Axelar AXL Token', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: + 'ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-324' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'axelartestnet', + base_denom: 'uaxl' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C15E3E97C2357F33A0481A82348BEEEC37C51DE42539F2A63798D43774998403', + name: 'Osmosis OSMO Token', + display: 'osmo', + symbol: 'OSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: 'uosmo', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-324' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosistestnet', + base_denom: 'uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/82997864114AC728D1B0B41E45BBA22AC7FA827AEC7DA9E685B3E7FF931B8120', + exponent: 0, + aliases: [ + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/82997864114AC728D1B0B41E45BBA22AC7FA827AEC7DA9E685B3E7FF931B8120', + name: 'Noble USDC Token', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: + 'ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-324' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nobletestnet', + base_denom: 'uusdc' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/B3E7AA7FE707114D710D25858EC0679C3834F4006C68C50ED8E4AF9EC0D841F3', + exponent: 0, + aliases: [ + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B3E7AA7FE707114D710D25858EC0679C3834F4006C68C50ED8E4AF9EC0D841F3', + name: 'Injective INJ token', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-324' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'injectivetestnet', + base_denom: 'inj' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } } ] }; diff --git a/packages/assets/src/testnet/junotestnet.ts b/packages/assets/src/testnet/junotestnet.ts index 9f6e2f983..7d7380a4f 100644 --- a/packages/assets/src/testnet/junotestnet.ts +++ b/packages/assets/src/testnet/junotestnet.ts @@ -178,6 +178,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/1B533345FEF3EFCEE51439960592432CA95BA29BE1E16CD62BBE3CB861B368BB', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1B533345FEF3EFCEE51439960592432CA95BA29BE1E16CD62BBE3CB861B368BB', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5498', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-889' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/55700E8959D29E3F9EF853319C45460E2E710B1C3F77F35A80A24A515002CFE3', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/55700E8959D29E3F9EF853319C45460E2E710B1C3F77F35A80A24A515002CFE3', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5498', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-889' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/testnet/kyvetestnet.ts b/packages/assets/src/testnet/kyvetestnet.ts index e636dc3a3..0bec8ecfd 100644 --- a/packages/assets/src/testnet/kyvetestnet.ts +++ b/packages/assets/src/testnet/kyvetestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/lavatestnet2.ts b/packages/assets/src/testnet/lavatestnet2.ts index 2ac418d91..b70e2ee91 100644 --- a/packages/assets/src/testnet/lavatestnet2.ts +++ b/packages/assets/src/testnet/lavatestnet2.ts @@ -487,6 +487,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5286', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5286', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/likecointestnet.ts b/packages/assets/src/testnet/likecointestnet.ts index 6450e04d7..59a5d3b0a 100644 --- a/packages/assets/src/testnet/likecointestnet.ts +++ b/packages/assets/src/testnet/likecointestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4357', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4357', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/marstestnet.ts b/packages/assets/src/testnet/marstestnet.ts index 7334de096..65f8610a5 100644 --- a/packages/assets/src/testnet/marstestnet.ts +++ b/packages/assets/src/testnet/marstestnet.ts @@ -135,6 +135,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/B02051C4C7FB9C705E6136B0BA4D21F7A7F4857E7F565B8320CA52D877BFDEDD', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B02051C4C7FB9C705E6136B0BA4D21F7A7F4857E7F565B8320CA52D877BFDEDD', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5499', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-28' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/069E302FF37729BB3023347344C90192ADDE49435757D56325B419170DB84A12', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/069E302FF37729BB3023347344C90192ADDE49435757D56325B419170DB84A12', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5499', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-28' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/testnet/neutrontestnet.ts b/packages/assets/src/testnet/neutrontestnet.ts index fa1c9f3de..27b9b5ca0 100644 --- a/packages/assets/src/testnet/neutrontestnet.ts +++ b/packages/assets/src/testnet/neutrontestnet.ts @@ -261,6 +261,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/3088A9B090300825499E600B515639DAD4E6DD8ACC7E17A21212E78B46D589F7', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3088A9B090300825499E600B515639DAD4E6DD8ACC7E17A21212E78B46D589F7', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4172', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-196' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/BCF0B1328967D69CC8C2E18F97DC1FE46A165AEADD960A068B532F15734174B3', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BCF0B1328967D69CC8C2E18F97DC1FE46A165AEADD960A068B532F15734174B3', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4172', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-196' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/nobletestnet.ts b/packages/assets/src/testnet/nobletestnet.ts index be330b07d..bdddbce7e 100644 --- a/packages/assets/src/testnet/nobletestnet.ts +++ b/packages/assets/src/testnet/nobletestnet.ts @@ -135,6 +135,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/B0FD76BB55A783EB9EBC033FBC47FBF9B69071FE11430A55AC0501D09262CE19', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B0FD76BB55A783EB9EBC033FBC47FBF9B69071FE11430A55AC0501D09262CE19', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4280', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-22' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/5E1C19F49AEEFE6623B5F8AA26F9C6AAB7712F6A4BC500C97DCFBD537CAA6A79', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5E1C19F49AEEFE6623B5F8AA26F9C6AAB7712F6A4BC500C97DCFBD537CAA6A79', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4280', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-22' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Osmosis', denom_units: [ @@ -232,11 +335,6 @@ const assets: AssetList = { exponent: 0, aliases: ['uxion'] }, - { - denom: 'mxion', - exponent: 3, - aliases: ['millixion'] - }, { denom: 'XION', exponent: 6, @@ -410,6 +508,53 @@ const assets: AssetList = { logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } + }, + { + denom_units: [ + { + denom: + 'ibc/1C944E2CEE952ADAF798C5450E3E08A0C17AE960688B7ED5C41FF94DD31B95B4', + exponent: 0, + aliases: [ + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1C944E2CEE952ADAF798C5450E3E08A0C17AE960688B7ED5C41FF94DD31B95B4', + name: 'Injective INJ token', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-9', + base_denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-17' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'injectivetestnet', + base_denom: 'inj' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } } ] }; diff --git a/packages/assets/src/testnet/nolustestnet.ts b/packages/assets/src/testnet/nolustestnet.ts index 0c9a9b4ac..8190abfd8 100644 --- a/packages/assets/src/testnet/nolustestnet.ts +++ b/packages/assets/src/testnet/nolustestnet.ts @@ -176,6 +176,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-110', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-110', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/osmosistestnet.ts b/packages/assets/src/testnet/osmosistestnet.ts index ad97871d6..84415c861 100644 --- a/packages/assets/src/testnet/osmosistestnet.ts +++ b/packages/assets/src/testnet/osmosistestnet.ts @@ -1619,10 +1619,9 @@ const assets: AssetList = { aliases: ['usge'] }, { - denom: - 'ibc/8446486081A4086F4C6D5846FC5DC12E01D2DDD0C6A89B00B2F25EDD9986D026', + denom: 'sge', exponent: 6, - aliases: ['usge'] + aliases: [] } ], base: 'ibc/8446486081A4086F4C6D5846FC5DC12E01D2DDD0C6A89B00B2F25EDD9986D026', @@ -1750,11 +1749,6 @@ const assets: AssetList = { exponent: 0, aliases: ['uxion'] }, - { - denom: 'mxion', - exponent: 3, - aliases: ['millixion'] - }, { denom: 'XION', exponent: 6, @@ -1928,6 +1922,53 @@ const assets: AssetList = { logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } + }, + { + denom_units: [ + { + denom: + 'ibc/919F3214F6DCEE01B9CB9F1793E42FA66A8D65203D5A057A5273692A97548540', + exponent: 0, + aliases: [ + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/919F3214F6DCEE01B9CB9F1793E42FA66A8D65203D5A057A5273692A97548540', + name: 'Injective INJ token', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + chain_name: 'xiontestnet' + }, + chain: { + channel_id: 'channel-4410' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'injectivetestnet', + base_denom: 'inj' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } } ] }; diff --git a/packages/assets/src/testnet/persistencetestnet2.ts b/packages/assets/src/testnet/persistencetestnet2.ts index bd32f7901..fa2388e5d 100644 --- a/packages/assets/src/testnet/persistencetestnet2.ts +++ b/packages/assets/src/testnet/persistencetestnet2.ts @@ -530,6 +530,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/E9960733FCFB375EE79ED3E71AC175E2A3374FE3FFEF0C92E569C50F6593FF1E', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E9960733FCFB375EE79ED3E71AC175E2A3374FE3FFEF0C92E569C50F6593FF1E', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1037', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/BF14790DD967418761FB244433CE63695739A3DA0F33A2B25483B67A04EC1D82', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF14790DD967418761FB244433CE63695739A3DA0F33A2B25483B67A04EC1D82', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1037', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/quicksilvertestnet.ts b/packages/assets/src/testnet/quicksilvertestnet.ts index ccc078ed2..94b939766 100644 --- a/packages/assets/src/testnet/quicksilvertestnet.ts +++ b/packages/assets/src/testnet/quicksilvertestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/3E4F665A6E429741446AA2ED3DE4DC77C78306FCF063477FEA1FECE6784AE814', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3E4F665A6E429741446AA2ED3DE4DC77C78306FCF063477FEA1FECE6784AE814', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-13', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-20' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/F6E67E6FFAFA4E5868105C9ED0C63CDA0EEE1913F3FAF42E9328D0B6041F266E', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6E67E6FFAFA4E5868105C9ED0C63CDA0EEE1913F3FAF42E9328D0B6041F266E', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-13', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-20' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/sagatestnet.ts b/packages/assets/src/testnet/sagatestnet.ts index d8bd7b30c..ca3e7cf7b 100644 --- a/packages/assets/src/testnet/sagatestnet.ts +++ b/packages/assets/src/testnet/sagatestnet.ts @@ -487,6 +487,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/3E4F665A6E429741446AA2ED3DE4DC77C78306FCF063477FEA1FECE6784AE814', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3E4F665A6E429741446AA2ED3DE4DC77C78306FCF063477FEA1FECE6784AE814', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4946', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-20' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/F6E67E6FFAFA4E5868105C9ED0C63CDA0EEE1913F3FAF42E9328D0B6041F266E', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6E67E6FFAFA4E5868105C9ED0C63CDA0EEE1913F3FAF42E9328D0B6041F266E', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4946', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-20' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/sgetestnet.ts b/packages/assets/src/testnet/sgetestnet.ts index e04fafd90..14d4c8706 100644 --- a/packages/assets/src/testnet/sgetestnet.ts +++ b/packages/assets/src/testnet/sgetestnet.ts @@ -134,6 +134,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/EF309EA857D56D42163780A34B763296E927EE9BBF09606120662DD4FECDDF17', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EF309EA857D56D42163780A34B763296E927EE9BBF09606120662DD4FECDDF17', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1568', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/6B322DA0FEB7D53840E193134829D49C859AF0C487C59D5CF70C41C94AA5D78E', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6B322DA0FEB7D53840E193134829D49C859AF0C487C59D5CF70C41C94AA5D78E', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1568', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/assets/src/testnet/stargazetestnet.ts b/packages/assets/src/testnet/stargazetestnet.ts index fbd19fd97..a8e3a8ce7 100644 --- a/packages/assets/src/testnet/stargazetestnet.ts +++ b/packages/assets/src/testnet/stargazetestnet.ts @@ -219,6 +219,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/46E49DC41B6DBA632F5F8A416AFD2EB80152500E676F28EBC90D3A9F98CFE1A7', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/46E49DC41B6DBA632F5F8A416AFD2EB80152500E676F28EBC90D3A9F98CFE1A7', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4175', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-638' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/AFDDC9E2E88E738F90E539D185B9711C7C52AF7AB527AEBFBB2E3038E26D6066', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AFDDC9E2E88E738F90E539D185B9711C7C52AF7AB527AEBFBB2E3038E26D6066', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4175', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-638' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of the Titan network.', denom_units: [ diff --git a/packages/assets/src/testnet/titantestnet.ts b/packages/assets/src/testnet/titantestnet.ts index 6cd6108da..e54ff6564 100644 --- a/packages/assets/src/testnet/titantestnet.ts +++ b/packages/assets/src/testnet/titantestnet.ts @@ -531,6 +531,109 @@ const assets: AssetList = { } ] }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/829E4A055D3879A8A0F3B63F1DAF1422F72307A586572D37959392DCE6D0CF5C', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5969', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E4684EC3416E68FF6E6EED93BB825ED223DCD31B7386830FCA68AD81F5078E99', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5969', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/testnet/xiontestnet.ts b/packages/assets/src/testnet/xiontestnet.ts index 1e9a77eeb..a574417fa 100644 --- a/packages/assets/src/testnet/xiontestnet.ts +++ b/packages/assets/src/testnet/xiontestnet.ts @@ -355,6 +355,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' } }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + exponent: 0, + aliases: ['inj'] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + base: 'ibc/0166AE2224341A3F70943E315DAC6EDF012A638D0F9358794FF7525BA1DFC191', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + coingecko_id: 'injective-protocol', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-324', + base_denom: 'inj', + chain_name: 'injectivetestnet' + }, + chain: { + channel_id: 'channel-215' + } + } + ] + }, { description: 'The controlled staking asset for Noble Chain', denom_units: [ @@ -635,6 +679,109 @@ const assets: AssetList = { } } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/189B2C50BD4514595544694AA7D267DA509D1085F4C29ABC1A03F484DAC1C792', + exponent: 0, + aliases: [ + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' + ] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/189B2C50BD4514595544694AA7D267DA509D1085F4C29ABC1A03F484DAC1C792', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4410', + base_denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/3991F1E282275087A3E633977100736376EE72EE6B65BF2EE5BDA13BFFAD8F02', + exponent: 0, + aliases: [ + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' + ] + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3991F1E282275087A3E633977100736376EE72EE6B65BF2EE5BDA13BFFAD8F02', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4410', + base_denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + chain_name: 'osmosistestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index fb52e4f3c..61cf3a445 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit fb52e4f3c66c78abd7fcbc4279264ebc711a9307 +Subproject commit 61cf3a44505d5d9b3a4a0076ada0879f89c4af13 diff --git a/packages/chain-registry/src/mainnet/agoric/ibc.ts b/packages/chain-registry/src/mainnet/agoric/ibc.ts index 9e270d5f7..89b012aeb 100644 --- a/packages/chain-registry/src/mainnet/agoric/ibc.ts +++ b/packages/chain-registry/src/mainnet/agoric/ibc.ts @@ -432,6 +432,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-18', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-152', + connection_id: 'connection-101' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-11', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-42', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts index 9e270d5f7..89b012aeb 100644 --- a/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/agoric/ibc_chain1.ts @@ -432,6 +432,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-18', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-152', + connection_id: 'connection-101' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-11', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-42', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/aura/chain.ts b/packages/chain-registry/src/mainnet/aura/chain.ts index 381e8ebc0..b89cfbc1e 100644 --- a/packages/chain-registry/src/mainnet/aura/chain.ts +++ b/packages/chain-registry/src/mainnet/aura/chain.ts @@ -34,9 +34,9 @@ const info: Chain = { } }, codebase: { - cosmos_sdk_version: '0.47.4', + cosmos_sdk_version: '0.47.5', cosmwasm_enabled: true, - cosmwasm_version: '0.41.0' + cosmwasm_version: '0.42.0' }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png', diff --git a/packages/chain-registry/src/mainnet/celestia/ibc.ts b/packages/chain-registry/src/mainnet/celestia/ibc.ts index db366728a..6e5bd1473 100644 --- a/packages/chain-registry/src/mainnet/celestia/ibc.ts +++ b/packages/chain-registry/src/mainnet/celestia/ibc.ts @@ -340,6 +340,36 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-58', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-245', + connection_id: 'connection-209' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-119', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts index ace556c75..df49d4684 100644 --- a/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/celestia/ibc_chain1.ts @@ -309,6 +309,36 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-58', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-245', + connection_id: 'connection-209' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-119', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/dydx/chain.ts b/packages/chain-registry/src/mainnet/dydx/chain.ts index f5ada6262..5dc715f31 100644 --- a/packages/chain-registry/src/mainnet/dydx/chain.ts +++ b/packages/chain-registry/src/mainnet/dydx/chain.ts @@ -72,7 +72,7 @@ const info: Chain = { }, { address: 'https://dydx-mainnet-rpc.autostake.com:443', - provider: 'AutoStake | Delegate for StakeDrops' + provider: 'AutoStake | StakeDrops' }, { address: 'https://rpc-dydx.ecostake.com:443', @@ -122,7 +122,7 @@ const info: Chain = { }, { address: 'https://dydx-mainnet-lcd.autostake.com:443', - provider: 'AutoStake | Delegate for StakeDrops' + provider: 'AutoStake | StakeDrops' }, { address: 'https://rest-dydx.ecostake.com:443', @@ -184,7 +184,7 @@ const info: Chain = { }, { address: 'dydx-mainnet-grpc.autostake.com:443', - provider: 'AutoStake | Delegate for StakeDrops' + provider: 'AutoStake | StakeDrops' }, { address: 'https://grpc.dydx.nodestake.top', diff --git a/packages/chain-registry/src/mainnet/dydx/ibc.ts b/packages/chain-registry/src/mainnet/dydx/ibc.ts index 573a7db9a..fddcef81f 100644 --- a/packages/chain-registry/src/mainnet/dydx/ibc.ts +++ b/packages/chain-registry/src/mainnet/dydx/ibc.ts @@ -342,6 +342,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dydx', + client_id: '07-tendermint-8', + connection_id: 'connection-13' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-244', + connection_id: 'connection-208' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-8', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-118', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts b/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts index 71b2d0415..5a420d26e 100644 --- a/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/dydx/ibc_chain1.ts @@ -279,6 +279,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dydx', + client_id: '07-tendermint-8', + connection_id: 'connection-13' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-244', + connection_id: 'connection-208' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-8', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-118', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/gateway/assets.ts b/packages/chain-registry/src/mainnet/gateway/assets.ts index 93dcb0262..5a89fb276 100644 --- a/packages/chain-registry/src/mainnet/gateway/assets.ts +++ b/packages/chain-registry/src/mainnet/gateway/assets.ts @@ -670,6 +670,54 @@ const info: AssetList = { logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } + }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + exponent: 0, + aliases: [ + '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA', + 'wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'bridge', + counterparty: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + provider: 'Wormhole' + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/injective/ibc.ts b/packages/chain-registry/src/mainnet/injective/ibc.ts index 2541e1d42..ae763715a 100644 --- a/packages/chain-registry/src/mainnet/injective/ibc.ts +++ b/packages/chain-registry/src/mainnet/injective/ibc.ts @@ -706,6 +706,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-229', + connection_id: 'connection-217' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-243', + connection_id: 'connection-206' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-116', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts index 38cc8e8da..b4fd94b22 100644 --- a/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/injective/ibc_chain1.ts @@ -423,6 +423,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-229', + connection_id: 'connection-217' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-243', + connection_id: 'connection-206' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-116', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/noble/ibc.ts b/packages/chain-registry/src/mainnet/noble/ibc.ts index 9c799f698..ecdc72b27 100644 --- a/packages/chain-registry/src/mainnet/noble/ibc.ts +++ b/packages/chain-registry/src/mainnet/noble/ibc.ts @@ -777,6 +777,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-73', + connection_id: 'connection-74' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-248', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-51', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-120', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts index 218924aeb..37f12a1ee 100644 --- a/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts @@ -250,6 +250,37 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-73', + connection_id: 'connection-74' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-248', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-51', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-120', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/quasar/chain.ts b/packages/chain-registry/src/mainnet/quasar/chain.ts index 30526f847..6f5d886b7 100644 --- a/packages/chain-registry/src/mainnet/quasar/chain.ts +++ b/packages/chain-registry/src/mainnet/quasar/chain.ts @@ -21,6 +21,13 @@ const info: Chain = { }, fees: { fee_tokens: [ + { + denom: 'uqsr', + fixed_min_gas_price: 0.01, + low_gas_price: 0.01, + average_gas_price: 0.025, + high_gas_price: 0.03 + }, { denom: 'ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B', diff --git a/packages/chain-registry/src/mainnet/regen/ibc.ts b/packages/chain-registry/src/mainnet/regen/ibc.ts index 94c2c5aaa..2b76b5152 100644 --- a/packages/chain-registry/src/mainnet/regen/ibc.ts +++ b/packages/chain-registry/src/mainnet/regen/ibc.ts @@ -310,6 +310,37 @@ const info: IBCInfo[] = [ tags: {} } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'regen', + client_id: '07-tendermint-176', + connection_id: 'connection-148' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-239', + connection_id: 'connection-200' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-158', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-107', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts b/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts index 6cf16a6a1..1ea5991c1 100644 --- a/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/regen/ibc_chain1.ts @@ -83,6 +83,37 @@ const info: IBCInfo[] = [ tags: {} } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'regen', + client_id: '07-tendermint-176', + connection_id: 'connection-148' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-239', + connection_id: 'connection-200' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-158', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-107', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts index a06cd2829..18f4abfa3 100644 --- a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts @@ -1203,6 +1203,38 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-193', + connection_id: 'connection-188' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-249', + connection_id: 'connection-213' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-126', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts index fd74dfd78..b3ffc5b28 100644 --- a/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc_chain1.ts @@ -241,6 +241,38 @@ const info: IBCInfo[] = [ } } ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-193', + connection_id: 'connection-188' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-249', + connection_id: 'connection-213' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-126', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' + } + } + ] } ]; export default info; diff --git a/packages/chain-registry/src/mainnet/umee/ibc.ts b/packages/chain-registry/src/mainnet/umee/ibc.ts index 6c3552816..c1a475e8c 100644 --- a/packages/chain-registry/src/mainnet/umee/ibc.ts +++ b/packages/chain-registry/src/mainnet/umee/ibc.ts @@ -1,5 +1,36 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'agoric', + client_id: '07-tendermint-18', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-152', + connection_id: 'connection-101' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-11', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-42', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -60,6 +91,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'celestia', + client_id: '07-tendermint-58', + connection_id: 'connection-18' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-245', + connection_id: 'connection-209' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-119', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -120,6 +181,68 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'dydx', + client_id: '07-tendermint-8', + connection_id: 'connection-13' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-244', + connection_id: 'connection-208' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-8', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-118', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'injective', + client_id: '07-tendermint-229', + connection_id: 'connection-217' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-243', + connection_id: 'connection-206' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-159', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-116', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -181,6 +304,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-73', + connection_id: 'connection-74' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-248', + connection_id: 'connection-210' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-51', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-120', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -271,6 +425,69 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'regen', + client_id: '07-tendermint-176', + connection_id: 'connection-148' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-239', + connection_id: 'connection-200' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-158', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-107', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-193', + connection_id: 'connection-188' + }, + chain_2: { + chain_name: 'umee', + client_id: '07-tendermint-249', + connection_id: 'connection-213' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-126', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + properties: 'privacy' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/zetachain/assets.ts b/packages/chain-registry/src/mainnet/zetachain/assets.ts index 6657cd177..380631326 100644 --- a/packages/chain-registry/src/mainnet/zetachain/assets.ts +++ b/packages/chain-registry/src/mainnet/zetachain/assets.ts @@ -19,6 +19,7 @@ const info: AssetList = { name: 'ZetaChain', display: 'zeta', symbol: 'ZETA', + coingecko_id: 'zetachain', logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zetachain/images/zetachain.svg' diff --git a/packages/chain-registry/src/mainnet/zetachain/chain.ts b/packages/chain-registry/src/mainnet/zetachain/chain.ts index e16fdb8cd..c5d2dd6b0 100644 --- a/packages/chain-registry/src/mainnet/zetachain/chain.ts +++ b/packages/chain-registry/src/mainnet/zetachain/chain.ts @@ -30,7 +30,7 @@ const info: Chain = { ] }, codebase: { - cosmos_sdk_version: '0.46' + cosmos_sdk_version: 'v0.46.13' }, apis: { rpc: [ @@ -41,6 +41,10 @@ const info: Chain = { { address: 'https://zetachain-mainnet-archive.allthatnode.com:26657', provider: 'All That Node' + }, + { + address: 'https://zetachain-rpc.lavenderfive.com:443', + provider: 'Lavender.Five Nodes 🐝' } ], rest: [ @@ -51,9 +55,18 @@ const info: Chain = { { address: 'https://zetachain-mainnet-archive.allthatnode.com:1317', provider: 'All That Node' + }, + { + address: 'https://zetachain-api.lavenderfive.com:443', + provider: 'Lavender.Five Nodes 🐝' } ], - grpc: [] + grpc: [ + { + address: 'https://zetachain-grpc.lavenderfive.com:443', + provider: 'Lavender.Five Nodes 🐝' + } + ] }, explorers: [ { diff --git a/packages/chain-registry/src/testnet/quasartestnet/chain.ts b/packages/chain-registry/src/testnet/quasartestnet/chain.ts index b4c0bac82..8e72b22b0 100644 --- a/packages/chain-registry/src/testnet/quasartestnet/chain.ts +++ b/packages/chain-registry/src/testnet/quasartestnet/chain.ts @@ -11,6 +11,17 @@ const info: Chain = { node_home: '$HOME/.quasarnoded', key_algos: ['secp256k1'], slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uqsr', + fixed_min_gas_price: 0, + low_gas_price: 0.0025, + average_gas_price: 0.025, + high_gas_price: 0.04 + } + ] + }, staking: { staking_tokens: [ { diff --git a/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts b/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts index b63384a09..1706e135f 100644 --- a/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts +++ b/packages/chain-registry/src/testnet/swisstroniktestnet/chain.ts @@ -38,6 +38,10 @@ const info: Chain = { { address: 'https://testnet-swisstronik-rpc.genznodes.dev', provider: 'genznodes' + }, + { + address: 'https://rpc.swisstronik.comunitynode.my.id', + provider: 'ComunityNode' } ], rest: [ @@ -48,6 +52,10 @@ const info: Chain = { { address: 'https://testnet-swisstronik-api.genznodes.dev', provider: 'genznodes' + }, + { + address: 'https://rest.swisstronik.comunitynode.my.id/', + provider: 'Comunitynode' } ], grpc: [ @@ -64,6 +72,10 @@ const info: Chain = { { address: 'https://testnet-swisstronik-rpc-evm.genznodes.dev', provider: 'genznodes' + }, + { + address: 'https://evm.swisstronik.comunitynode.my.id', + provider: 'comunitynode' } ] }, diff --git a/packages/juno/src/asset_list.ts b/packages/juno/src/asset_list.ts index c63bda3ff..c1367612d 100644 --- a/packages/juno/src/asset_list.ts +++ b/packages/juno/src/asset_list.ts @@ -19262,6 +19262,53 @@ const asset_list: AssetList = { } ] }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19325,17 +19372,6 @@ const asset_list: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -19348,6 +19384,17 @@ const asset_list: AssetList = { channel_id: 'channel-33' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -19617,17 +19664,6 @@ const asset_list: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -19640,6 +19676,17 @@ const asset_list: AssetList = { channel_id: 'channel-33' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -19661,6 +19708,19 @@ const asset_list: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -19670,19 +19730,148 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/80A3F1A36B6EF7876C8A5143E09BCEACBD5BBA84ED8A865E4A8497F9AE75245A', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/80A3F1A36B6EF7876C8A5143E09BCEACBD5BBA84ED8A865E4A8497F9AE75245A', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-37', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/5054F108D42234903BACFB1948187EBBA5B99FCA1A283C3FA7F5EB4EC2A36A14', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5054F108D42234903BACFB1948187EBBA5B99FCA1A283C3FA7F5EB4EC2A36A14', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { channel_id: 'channel-33' } } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/BC9BBA74D8B9D77A61D95E0860686FA66018472EF51913BF61A00A9684B4036F', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/BC9BBA74D8B9D77A61D95E0860686FA66018472EF51913BF61A00A9684B4036F', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-33' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { diff --git a/packages/juno/src/assets.ts b/packages/juno/src/assets.ts index 6e8a8a6f9..d51a45a40 100644 --- a/packages/juno/src/assets.ts +++ b/packages/juno/src/assets.ts @@ -1152,6 +1152,8 @@ const assets: AssetList = { }, { description: 'Kleomedes Token', + extended_description: + 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.', type_asset: 'cw20', address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', @@ -2110,6 +2112,64 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/luno.png' } ] + }, + { + description: 'ATEN is NETA.', + type_asset: 'cw20', + address: + 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + denom_units: [ + { + denom: + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + exponent: 0 + }, + { + denom: 'aten', + exponent: 6 + } + ], + base: 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + name: 'ATEN', + display: 'aten', + symbol: 'ATEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + } + ] + }, + { + description: 'HERA is the goddess of marriage in Greek mythology.', + type_asset: 'cw20', + address: + 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + denom_units: [ + { + denom: + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + exponent: 0 + }, + { + denom: 'hera', + exponent: 6 + } + ], + base: 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + name: 'HERA', + display: 'hera', + symbol: 'HERA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + } + ] } ] }; diff --git a/packages/juno/src/chain.ts b/packages/juno/src/chain.ts index a6b51c574..2ecb0894b 100644 --- a/packages/juno/src/chain.ts +++ b/packages/juno/src/chain.ts @@ -154,6 +154,10 @@ const chain: Chain = { { address: 'https://rpc.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://juno-rpc.cogwheel.zone', + provider: 'Cogwheel' } ], rest: [ @@ -248,6 +252,10 @@ const chain: Chain = { { address: 'https://lcd.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'https://juno-api.cogwheel.zone', + provider: 'Cogwheel' } ], grpc: [ @@ -322,6 +330,10 @@ const chain: Chain = { { address: 'https://grpc.juno.bronbro.io:443', provider: 'Bro_n_Bro' + }, + { + address: 'juno-grpc.cogwheel.zone:443', + provider: 'Cogwheel' } ] }, diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index 19346b445..12bbf8100 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -3914,6 +3914,47 @@ const asset_list: AssetList = { } ] }, + { + description: 'The native token of Chain4Energy', + denom_units: [ + { + denom: + 'ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8', + exponent: 0, + aliases: ['uc4e'] + }, + { + denom: 'c4e', + exponent: 6 + } + ], + base: 'ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8', + name: 'Chain4Energy', + display: 'c4e', + symbol: 'C4E', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'uc4e', + chain_name: 'chain4energy' + }, + chain: { + channel_id: 'channel-22172' + } + } + ] + }, { description: 'Native token for the cheqd network', denom_units: [ @@ -6995,6 +7036,57 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } }, + { + description: + 'Basket (Wormhole), BSKT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + denom_units: [ + { + denom: + 'ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA', + exponent: 0, + aliases: [ + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst' + ] + }, + { + denom: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + exponent: 5, + aliases: ['bskt'] + } + ], + address: + 'wormhole15rantn6k68twp4wmsljtk9uu9a0e5rt7g66fdfkvrsr24hj6je7qat93e6', + base: 'ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA', + display: 'wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5', + name: 'Basket', + symbol: 'BSKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3', + base_denom: + 'factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst', + chain_name: 'gateway' + }, + chain: { + channel_id: 'channel-2186' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'solana', + base_denom: '6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' + } + }, { description: 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', @@ -13619,7 +13711,8 @@ const asset_list: AssetList = { ] }, { - description: "NYX Token (NYX) is the Nym Network's native token.", + description: + "NYX Token (NYX) is the Nym Network's native staking and governance token.", denom_units: [ { denom: @@ -13679,21 +13772,21 @@ const asset_list: AssetList = { display: 'nym', symbol: 'NYM', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png' }, coingecko_id: 'nym', images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-light.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.svg', theme: { dark_mode: false, circle: true } }, { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym-token-dark.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_dark.svg', theme: { dark_mode: true, circle: true @@ -13739,6 +13832,10 @@ const asset_list: AssetList = { coingecko_id: 'odin-protocol', images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'loki' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' } @@ -13781,6 +13878,10 @@ const asset_list: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mGeo' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' } @@ -13799,86 +13900,6 @@ const asset_list: AssetList = { } ] }, - { - description: 'DOKI the last Dragon', - denom_units: [ - { - denom: - 'ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B', - exponent: 0, - aliases: ['udoki'] - }, - { - denom: 'doki', - exponent: 6 - } - ], - base: 'ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B', - name: 'DOKI', - display: 'doki', - symbol: 'DOKI', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-3', - base_denom: 'udoki', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-258' - } - } - ] - }, - { - description: 'Myrkur the leader of OLD Order', - denom_units: [ - { - denom: - 'ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752', - exponent: 0, - aliases: ['umyrk'] - }, - { - denom: 'myrk', - exponent: 6 - } - ], - base: 'ibc/B9CBF51BD026FDB9F6D0623130E5242512CCE6147978C90A3B00C57F797AF752', - name: 'MYRK', - display: 'myrk', - symbol: 'MYRK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png' - } - ], - traces: [ - { - type: 'ibc', - counterparty: { - channel_id: 'channel-3', - base_denom: 'umyrk', - chain_name: 'odin' - }, - chain: { - channel_id: 'channel-258' - } - } - ] - }, { description: 'O9W token for ODIN Protocol', denom_units: [ @@ -13903,6 +13924,10 @@ const asset_list: AssetList = { }, images: [ { + image_sync: { + chain_name: 'odin', + base_denom: 'mO9W' + }, png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' } @@ -14446,17 +14471,6 @@ const asset_list: AssetList = { name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - }, - coingecko_id: 'stkatom', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' - } - ], traces: [ { type: 'ibc', @@ -14469,6 +14483,17 @@ const asset_list: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + coingecko_id: 'stkatom', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } ] }, { @@ -14738,17 +14763,6 @@ const asset_list: AssetList = { name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - }, - coingecko_id: 'pstake-staked-osmo', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' - } - ], traces: [ { type: 'ibc', @@ -14761,6 +14775,17 @@ const asset_list: AssetList = { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + coingecko_id: 'pstake-staked-osmo', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } ] }, { @@ -14782,6 +14807,19 @@ const asset_list: AssetList = { name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: 'stk/adydx', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' @@ -14791,19 +14829,148 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.svg' } + ] + }, + { + description: 'PSTAKE Liquid-Staked STARS', + denom_units: [ + { + denom: + 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + exponent: 0, + aliases: ['stk/ustars'] + }, + { + denom: 'stkstars', + exponent: 6, + aliases: ['stk/stars'] + } ], + base: 'ibc/999964F543B253A5CC2B707D648D61895A51194533FE29A5D630F186DD040730', + name: 'PSTAKE staked STARS', + display: 'stkstars', + symbol: 'stkSTARS', traces: [ { type: 'ibc', counterparty: { channel_id: 'channel-6', - base_denom: 'stk/adydx', + base_denom: 'stk/ustars', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + exponent: 0, + aliases: [ + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1DA5B49F84E0CC9DBD23616A035FDE10D56525EA69C9BFC6EF4EE78814021B9B', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', + chain_name: 'persistence' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + exponent: 0, + aliases: [ + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/8D71375B2586E6BF89428CBA84F21991AB551672CC9B7E9AAFD3DC0F0736D5A6', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { channel_id: 'channel-4' } } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } ] }, { @@ -15032,6 +15199,46 @@ const asset_list: AssetList = { } ] }, + { + description: 'The revenue token for Pylons', + denom_units: [ + { + denom: + 'ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF', + exponent: 0, + aliases: ['ubedrock'] + }, + { + denom: 'rock', + exponent: 6 + } + ], + base: 'ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF', + name: 'Pylons', + display: 'rock', + symbol: 'ROCK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-29', + base_denom: 'ubedrock', + chain_name: 'pylons' + }, + chain: { + channel_id: 'channel-17683' + } + } + ] + }, { description: 'The native token of Quasar', denom_units: [ @@ -17829,6 +18036,101 @@ const asset_list: AssetList = { } ] }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0DF5483CE99697A45A65CEBE373DE3535F117877F07E5F480E1BE3BD8818E3E8', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-362' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Secret chain.', + denom_units: [ + { + denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + exponent: 0 + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/87D9B43B0B1F00D37417FE7A79CDDCD144175631D5F743146DF6A7CF1CE59A91', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9', + chain_name: 'teritori' + }, + chain: { + channel_id: 'channel-362' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'secretnetwork', + base_denom: 'uscrt' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, { description: 'The native staking token of Terra Classic.', denom_units: [ @@ -21160,6 +21462,8 @@ const asset_list: AssetList = { }, { description: 'Kleomedes Token', + extended_description: + 'Kleomedes is an infrastructure provider that self-hosts nodes that validate IBC networks. We are active in supporting the chains we validate through providing infrastructure support in the form of RPC endpoints and relayers.\n\nAs a DAO, we have a community of delegators who are active in the discussion of governance on all the chains we validate. We are one of the only validators in the Cosmos Ecosystem that places 100% of profits under the control of DAO governance.\n\nWe support innovation in the Cosmos Ecosystem by funding and supporting projects that we believe, support the growth and decentralization of the networks we validate.', type_asset: 'cw20', address: 'juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy', @@ -22658,6 +22962,102 @@ const asset_list: AssetList = { } ] }, + { + description: 'ATEN is NETA.', + type_asset: 'cw20', + address: + 'juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + denom_units: [ + { + denom: + 'ibc/BD34998D398D927B04616A3FFC6A513A10AF203A80E0B0DAD5F01CEA9E050C20', + exponent: 0, + aliases: [ + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r' + ] + }, + { + denom: 'aten', + exponent: 6 + } + ], + base: 'ibc/BD34998D398D927B04616A3FFC6A513A10AF203A80E0B0DAD5F01CEA9E050C20', + name: 'ATEN', + display: 'aten', + symbol: 'ATEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/aten.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, + { + description: 'HERA is the goddess of marriage in Greek mythology.', + type_asset: 'cw20', + address: + 'juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + denom_units: [ + { + denom: + 'ibc/D29CE169AD7EDB6E9DFC3B42179D54B7EC756C9EB1790E9CAD888A203C17E102', + exponent: 0, + aliases: [ + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0' + ] + }, + { + denom: 'hera', + exponent: 6 + } + ], + base: 'ibc/D29CE169AD7EDB6E9DFC3B42179D54B7EC756C9EB1790E9CAD888A203C17E102', + name: 'HERA', + display: 'hera', + symbol: 'HERA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' + } + ], + traces: [ + { + type: 'ibc-cw20', + counterparty: { + port: 'wasm.juno1v4887y83d6g28puzvt8cl0f3cdhd3y6y9mpysnsp3k8krdm7l6jqgm0rkn', + channel_id: 'channel-47', + base_denom: + 'cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0', + chain_name: 'juno' + }, + chain: { + port: 'transfer', + channel_id: 'channel-169' + } + } + ] + }, { description: 'ELEVENPARIS loyalty token on KiChain', type_asset: 'cw20', diff --git a/packages/osmosis/src/assets.ts b/packages/osmosis/src/assets.ts index 103a29090..4988139cd 100644 --- a/packages/osmosis/src/assets.ts +++ b/packages/osmosis/src/assets.ts @@ -14075,6 +14075,36 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' } ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + exponent: 0 + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ] } ] }; diff --git a/packages/osmosis/src/testnet_assets.ts b/packages/osmosis/src/testnet_assets.ts index 64bc19903..ac562f7c6 100644 --- a/packages/osmosis/src/testnet_assets.ts +++ b/packages/osmosis/src/testnet_assets.ts @@ -88,6 +88,112 @@ const testnet_assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.svg' } ] + }, + { + description: + 'The native EVM, governance and staking token of the Titan Chain', + denom_units: [ + { + denom: + 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + exponent: 0, + aliases: ['atkx'] + }, + { + denom: 'utkx', + exponent: 12, + aliases: ['microtkx'] + }, + { + denom: 'mtkx', + exponent: 15, + aliases: ['millitkx'] + }, + { + denom: 'tkx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', + name: 'tkx', + display: 'tkx', + symbol: 'TKX', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'titan', + base_denom: 'atkx', + channel_id: 'channel-2' + }, + chain: { + channel_id: 'channel-5969', + path: 'transfer/channel-5969/atkx' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/titantestnet/images/tkx.png' + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + exponent: 0 + }, + { + denom: 'ausdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', + name: 'USD Coin (Axelar)', + display: 'ausdc', + symbol: 'aUSDC.axl', + traces: [ + { + type: 'bridge', + counterparty: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + provider: 'Axelar' + }, + { + type: 'ibc', + counterparty: { + chain_name: 'axelartestnet', + base_denom: 'uausdc', + channel_id: 'channel-339' + }, + chain: { + channel_id: 'channel-4170', + path: 'transfer/channel-4170/uausdc' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereumtestnet', + base_denom: '0x254d06f33bDc5b8ee05b2ea472107E300226659A' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } } ] }; From 31826fca4fe57e56fdc6015fd52c999db6e3b16c Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Fri, 8 Mar 2024 15:22:10 +0800 Subject: [PATCH 29/54] chore(release): publish - @chain-registry/assets@1.30.0 - chain-registry@1.29.0 - @chain-registry/cosmostation@1.32.0 - @chain-registry/juno@1.30.0 - @chain-registry/keplr@1.34.0 - @chain-registry/osmosis@1.30.0 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index ca7b6a333..2350544ed 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.8...@chain-registry/assets@1.30.0) (2024-03-08) + +**Note:** Version bump only for package @chain-registry/assets + + + + + ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.7...@chain-registry/assets@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 8d9228759..76b857f81 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.29.8", + "version": "1.30.0", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.7", + "chain-registry": "^1.29.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 0c06e4e49..0820ba74a 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.7...chain-registry@1.29.0) (2024-03-08) + +**Note:** Version bump only for package chain-registry + + + + + ## [1.28.7](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.6...chain-registry@1.28.7) (2024-03-06) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 553f7ee9f..3d84a0d32 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.28.7", + "version": "1.29.0", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index e08401874..0251b5b9f 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.7...@chain-registry/cosmostation@1.32.0) (2024-03-08) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + ## [1.31.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.6...@chain-registry/cosmostation@1.31.7) (2024-03-06) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 2e8192500..53529a4cf 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.31.7", + "version": "1.32.0", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.7", + "chain-registry": "^1.29.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index 3a6f180dc..9d1f50470 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.8...@chain-registry/juno@1.30.0) (2024-03-08) + +**Note:** Version bump only for package @chain-registry/juno + + + + + ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.7...@chain-registry/juno@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 9fb65dbed..99b3c00ff 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.29.8", + "version": "1.30.0", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.7", + "chain-registry": "^1.29.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 5ad2d9785..589c1c6ce 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.7...@chain-registry/keplr@1.34.0) (2024-03-08) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + ## [1.33.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.6...@chain-registry/keplr@1.33.7) (2024-03-06) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index 564909b56..74c70f258 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.33.7", + "version": "1.34.0", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.7", + "chain-registry": "^1.29.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index c69f42dce..37e492f29 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.8...@chain-registry/osmosis@1.30.0) (2024-03-08) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.7...@chain-registry/osmosis@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 116818d8f..3f6127f70 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.29.8", + "version": "1.30.0", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.28.7", + "chain-registry": "^1.29.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From c8b304b69f8f2051457e07f0c649f07e4fdb29c1 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Sun, 10 Mar 2024 02:57:21 +0000 Subject: [PATCH 30/54] =?UTF-8?q?build=20=F0=9F=9B=A0=20build-20240310-014?= =?UTF-8?q?413?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/src/mainnet/8ball.ts | 53 +++- packages/assets/src/mainnet/acrechain.ts | 85 ++++++- packages/assets/src/mainnet/agoric.ts | 97 ++++++- packages/assets/src/mainnet/aioz.ts | 57 ++++- packages/assets/src/mainnet/akash.ts | 97 ++++++- packages/assets/src/mainnet/andromeda.ts | 24 ++ packages/assets/src/mainnet/archway.ts | 145 ++++++++++- packages/assets/src/mainnet/arkh.ts | 53 +++- packages/assets/src/mainnet/assetmantle.ts | 61 ++++- packages/assets/src/mainnet/aura.ts | 69 ++++- packages/assets/src/mainnet/axelar.ts | 137 +++++++++- packages/assets/src/mainnet/bandchain.ts | 53 +++- packages/assets/src/mainnet/beezee.ts | 53 +++- packages/assets/src/mainnet/bitcanna.ts | 69 ++++- packages/assets/src/mainnet/bitsong.ts | 65 ++++- packages/assets/src/mainnet/bluzelle.ts | 53 +++- packages/assets/src/mainnet/bostrom.ts | 53 +++- packages/assets/src/mainnet/canto.ts | 57 ++++- packages/assets/src/mainnet/carbon.ts | 81 +++++- packages/assets/src/mainnet/celestia.ts | 97 ++++++- packages/assets/src/mainnet/cerberus.ts | 53 +++- packages/assets/src/mainnet/chain4energy.ts | 57 ++++- packages/assets/src/mainnet/cheqd.ts | 61 ++++- packages/assets/src/mainnet/chihuahua.ts | 69 ++++- packages/assets/src/mainnet/comdex.ts | 77 +++++- packages/assets/src/mainnet/composable.ts | 109 +++++++- packages/assets/src/mainnet/coreum.ts | 93 ++++++- packages/assets/src/mainnet/cosmoshub.ts | 153 ++++++++++- packages/assets/src/mainnet/crescent.ts | 125 ++++++++- packages/assets/src/mainnet/cronos.ts | 4 + packages/assets/src/mainnet/cryptoorgchain.ts | 81 +++++- packages/assets/src/mainnet/cudos.ts | 53 +++- packages/assets/src/mainnet/decentr.ts | 61 ++++- packages/assets/src/mainnet/desmos.ts | 53 +++- packages/assets/src/mainnet/dig.ts | 57 ++++- packages/assets/src/mainnet/doravota.ts | 85 ++++++- packages/assets/src/mainnet/dydx.ts | 81 +++++- packages/assets/src/mainnet/dymension.ts | 239 +++++++++++++++++- packages/assets/src/mainnet/dyson.ts | 53 +++- packages/assets/src/mainnet/echelon.ts | 53 +++- packages/assets/src/mainnet/emoney.ts | 61 ++++- packages/assets/src/mainnet/empowerchain.ts | 61 ++++- packages/assets/src/mainnet/evmos.ts | 117 ++++++++- packages/assets/src/mainnet/fetchhub.ts | 53 +++- packages/assets/src/mainnet/furya.ts | 65 ++++- packages/assets/src/mainnet/fxcore.ts | 61 ++++- packages/assets/src/mainnet/galaxy.ts | 53 +++- packages/assets/src/mainnet/gateway.ts | 73 +++++- packages/assets/src/mainnet/genesisl1.ts | 53 +++- packages/assets/src/mainnet/gitopia.ts | 53 +++- packages/assets/src/mainnet/gravitybridge.ts | 77 +++++- packages/assets/src/mainnet/haqq.ts | 69 ++++- packages/assets/src/mainnet/humans.ts | 53 +++- packages/assets/src/mainnet/impacthub.ts | 61 ++++- packages/assets/src/mainnet/imversed.ts | 53 +++- packages/assets/src/mainnet/injective.ts | 105 +++++++- packages/assets/src/mainnet/irisnet.ts | 81 +++++- packages/assets/src/mainnet/jackal.ts | 69 ++++- packages/assets/src/mainnet/juno.ts | 109 +++++++- packages/assets/src/mainnet/kava.ts | 101 +++++++- packages/assets/src/mainnet/kichain.ts | 57 ++++- packages/assets/src/mainnet/konstellation.ts | 53 +++- packages/assets/src/mainnet/kujira.ts | 157 +++++++++++- packages/assets/src/mainnet/kyve.ts | 57 ++++- packages/assets/src/mainnet/lambda.ts | 53 +++- packages/assets/src/mainnet/likecoin.ts | 57 ++++- packages/assets/src/mainnet/lumenx.ts | 53 +++- packages/assets/src/mainnet/lumnetwork.ts | 57 ++++- packages/assets/src/mainnet/mars.ts | 69 ++++- packages/assets/src/mainnet/medasdigital.ts | 57 ++++- packages/assets/src/mainnet/meme.ts | 53 +++- packages/assets/src/mainnet/microtick.ts | 53 +++- packages/assets/src/mainnet/migaloo.ts | 97 ++++++- packages/assets/src/mainnet/neutron.ts | 129 +++++++++- packages/assets/src/mainnet/noble.ts | 121 ++++++++- packages/assets/src/mainnet/nois.ts | 81 +++++- packages/assets/src/mainnet/nolus.ts | 57 ++++- packages/assets/src/mainnet/nomic.ts | 61 ++++- packages/assets/src/mainnet/nyx.ts | 57 ++++- packages/assets/src/mainnet/odin.ts | 69 ++++- packages/assets/src/mainnet/okexchain.ts | 8 + packages/assets/src/mainnet/omniflixhub.ts | 73 +++++- packages/assets/src/mainnet/onomy.ts | 53 +++- packages/assets/src/mainnet/oraichain.ts | 57 ++++- packages/assets/src/mainnet/osmosis.ts | 168 ++++++++++++ packages/assets/src/mainnet/panacea.ts | 53 +++- packages/assets/src/mainnet/passage.ts | 53 +++- packages/assets/src/mainnet/persistence.ts | 129 +++++++++- packages/assets/src/mainnet/planq.ts | 73 +++++- packages/assets/src/mainnet/point.ts | 4 + packages/assets/src/mainnet/provenance.ts | 53 +++- packages/assets/src/mainnet/pundix.ts | 53 +++- packages/assets/src/mainnet/pylons.ts | 53 +++- packages/assets/src/mainnet/quasar.ts | 53 +++- packages/assets/src/mainnet/quicksilver.ts | 85 ++++++- packages/assets/src/mainnet/qwoyn.ts | 57 ++++- packages/assets/src/mainnet/realio.ts | 61 ++++- packages/assets/src/mainnet/rebus.ts | 53 +++- packages/assets/src/mainnet/regen.ts | 85 ++++++- packages/assets/src/mainnet/rizon.ts | 53 +++- packages/assets/src/mainnet/scorum.ts | 53 +++- packages/assets/src/mainnet/secretnetwork.ts | 137 +++++++++- packages/assets/src/mainnet/sei.ts | 73 +++++- packages/assets/src/mainnet/sentinel.ts | 81 +++++- packages/assets/src/mainnet/sge.ts | 53 +++- packages/assets/src/mainnet/shareledger.ts | 53 +++- packages/assets/src/mainnet/shentu.ts | 53 +++- packages/assets/src/mainnet/sifchain.ts | 85 ++++++- packages/assets/src/mainnet/sommelier.ts | 73 +++++- packages/assets/src/mainnet/source.ts | 53 +++- packages/assets/src/mainnet/stafihub.ts | 65 ++++- packages/assets/src/mainnet/stargaze.ts | 93 ++++++- packages/assets/src/mainnet/starname.ts | 77 +++++- packages/assets/src/mainnet/stride.ts | 129 +++++++++- packages/assets/src/mainnet/teritori.ts | 65 ++++- packages/assets/src/mainnet/terra.ts | 65 ++++- packages/assets/src/mainnet/terra2.ts | 117 ++++++++- packages/assets/src/mainnet/tgrade.ts | 57 ++++- packages/assets/src/mainnet/umee.ts | 109 +++++++- packages/assets/src/mainnet/unification.ts | 57 ++++- packages/assets/src/mainnet/uptick.ts | 4 + packages/assets/src/mainnet/vidulum.ts | 57 ++++- packages/assets/src/mainnet/xpla.ts | 61 ++++- packages/assets/src/noncosmos/picasso.ts | 4 + packages/assets/src/testnet/axelartestnet.ts | 8 +- packages/assets/src/testnet/lavatestnet2.ts | 104 ++++---- packages/assets/src/testnet/osmosistestnet.ts | 8 +- packages/chain-registry/chain-registry | 2 +- .../src/mainnet/agoric/assets.ts | 6 +- .../chain-registry/src/mainnet/aioz/chain.ts | 8 +- .../src/mainnet/akash/assets.ts | 6 +- .../src/mainnet/archway/assets.ts | 6 +- .../chain-registry/src/mainnet/archway/ibc.ts | 31 +++ .../src/mainnet/archway/ibc_chain1.ts | 31 +++ .../src/mainnet/assetmantle/assets.ts | 6 +- .../src/mainnet/axelar/assets.ts | 6 +- .../src/mainnet/bandchain/assets.ts | 6 +- .../src/mainnet/bitsong/assets.ts | 6 +- .../src/mainnet/celestia/assets.ts | 6 +- .../src/mainnet/chain4energy/assets.ts | 6 +- .../src/mainnet/chain4energy/chain.ts | 2 +- .../chain-registry/src/mainnet/cifer/chain.ts | 14 +- .../src/mainnet/composable/assets.ts | 4 + .../src/mainnet/cosmoshub/assets.ts | 6 +- .../src/mainnet/cryptoorgchain/assets.ts | 6 +- .../chain-registry/src/mainnet/dydx/assets.ts | 6 +- .../src/mainnet/dymension/assets.ts | 6 +- .../src/mainnet/dymension/ibc.ts | 31 +++ .../src/mainnet/evmos/assets.ts | 6 +- .../src/mainnet/gitopia/assets.ts | 6 +- .../src/mainnet/gravitybridge/assets.ts | 6 +- .../src/mainnet/humans/assets.ts | 6 +- .../src/mainnet/injective/assets.ts | 10 +- .../chain-registry/src/mainnet/juno/assets.ts | 6 +- .../chain-registry/src/mainnet/kava/assets.ts | 6 +- .../src/mainnet/kujira/assets.ts | 6 +- .../chain-registry/src/mainnet/kyve/assets.ts | 6 +- .../chain-registry/src/mainnet/mars/assets.ts | 6 +- .../src/mainnet/neutron/assets.ts | 6 +- .../src/mainnet/nibiru/chain.ts | 2 +- .../chain-registry/src/mainnet/nois/chain.ts | 12 + .../src/mainnet/nolus/assets.ts | 6 +- .../src/mainnet/omniflixhub/assets.ts | 6 +- .../src/mainnet/osmosis/assets.ts | 39 ++- .../src/mainnet/persistence/assets.ts | 6 +- .../src/mainnet/pylons/assets.ts | 6 +- .../src/mainnet/quasar/assets.ts | 6 +- .../src/mainnet/quicksilver/assets.ts | 6 +- .../src/mainnet/regen/assets.ts | 6 +- .../src/mainnet/secretnetwork/assets.ts | 6 +- .../chain-registry/src/mainnet/sei/assets.ts | 6 +- .../src/mainnet/sentinel/assets.ts | 6 +- .../src/mainnet/sommelier/assets.ts | 6 +- .../src/mainnet/stargaze/assets.ts | 6 +- .../src/mainnet/starname/assets.ts | 6 +- .../src/mainnet/stride/assets.ts | 6 +- .../src/mainnet/terra2/assets.ts | 12 +- .../src/noncosmos/avalanchetestnet/assets.ts | 43 ++++ .../src/noncosmos/ethereum/assets.ts | 2 +- .../src/noncosmos/solana/assets.ts | 8 +- packages/chain-registry/src/testnet/assets.ts | 2 + .../src/testnet/axelartestnet/ibc.ts | 17 +- .../src/testnet/axelartestnet/ibc_chain1.ts | 17 +- packages/chain-registry/src/testnet/chains.ts | 2 + packages/chain-registry/src/testnet/index.ts | 1 + .../src/testnet/lavatestnet2/ibc.ts | 34 ++- .../src/testnet/lavatestnet2/ibc_chain1.ts | 17 +- .../src/testnet/osmosistestnet/ibc.ts | 17 +- .../testnet/wardenprotocoltestnet/assets.ts | 35 +++ .../testnet/wardenprotocoltestnet/chain.ts | 70 +++++ .../testnet/wardenprotocoltestnet/index.ts | 5 + packages/juno/src/asset_list.ts | 109 +++++++- packages/juno/src/assets.ts | 6 +- packages/osmosis/src/asset_list.ts | 168 ++++++++++++ packages/osmosis/src/assets.ts | 39 ++- 195 files changed, 9746 insertions(+), 289 deletions(-) create mode 100644 packages/chain-registry/src/testnet/wardenprotocoltestnet/assets.ts create mode 100644 packages/chain-registry/src/testnet/wardenprotocoltestnet/chain.ts create mode 100644 packages/chain-registry/src/testnet/wardenprotocoltestnet/index.ts diff --git a/packages/assets/src/mainnet/8ball.ts b/packages/assets/src/mainnet/8ball.ts index 535a94541..c5df10491 100644 --- a/packages/assets/src/mainnet/8ball.ts +++ b/packages/assets/src/mainnet/8ball.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/7E90903AB09B12991D3FA93B121B7DA4EA04650CD233D6D196A3B0F8090FA84C', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/7E90903AB09B12991D3FA93B121B7DA4EA04650CD233D6D196A3B0F8090FA84C', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-641', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/acrechain.ts b/packages/assets/src/mainnet/acrechain.ts index ab1b93b4a..2fadd5480 100644 --- a/packages/assets/src/mainnet/acrechain.ts +++ b/packages/assets/src/mainnet/acrechain.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1622,6 +1630,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1799,6 +1811,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2229,6 +2245,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3693,6 +3713,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3736,7 +3760,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17305,6 +17333,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-490', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ @@ -17334,6 +17405,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -17603,6 +17678,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -19255,6 +19334,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/agoric.ts b/packages/assets/src/mainnet/agoric.ts index f2d9d58be..844da09f1 100644 --- a/packages/assets/src/mainnet/agoric.ts +++ b/packages/assets/src/mainnet/agoric.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -177,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1644,6 +1652,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -1818,6 +1830,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2042,6 +2058,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -2219,6 +2239,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2649,6 +2673,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4243,6 +4271,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -4534,6 +4566,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -4577,7 +4613,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18146,6 +18186,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-320', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18176,6 +18259,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -18740,6 +18827,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -18783,6 +18874,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/aioz.ts b/packages/assets/src/mainnet/aioz.ts index 27bb3de06..cf02dc76f 100644 --- a/packages/assets/src/mainnet/aioz.ts +++ b/packages/assets/src/mainnet/aioz.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -170,6 +174,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -213,7 +221,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13781,6 +13793,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-779', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/akash.ts b/packages/assets/src/mainnet/akash.ts index 90792f292..47f77baef 100644 --- a/packages/assets/src/mainnet/akash.ts +++ b/packages/assets/src/mainnet/akash.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -177,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -402,6 +410,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -533,6 +545,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -751,6 +767,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2172,6 +2192,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2215,7 +2239,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15784,6 +15812,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15814,6 +15885,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -16378,6 +16453,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -16465,6 +16544,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -16508,6 +16591,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -16596,6 +16683,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', @@ -16639,6 +16730,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/andromeda.ts b/packages/assets/src/mainnet/andromeda.ts index 848b30cb8..543774a0a 100644 --- a/packages/assets/src/mainnet/andromeda.ts +++ b/packages/assets/src/mainnet/andromeda.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -178,6 +182,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -501,6 +509,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -705,6 +717,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2124,6 +2140,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -2167,6 +2187,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/archway.ts b/packages/assets/src/mainnet/archway.ts index 5f93e20de..106c0cb4b 100644 --- a/packages/assets/src/mainnet/archway.ts +++ b/packages/assets/src/mainnet/archway.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -120,6 +124,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -252,6 +260,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1749,6 +1761,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1944,6 +1960,54 @@ const assets: AssetList = { } ] }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/5BAD723F09B0CDBB5AC6B439BF9670DA77DEE1F2330CF74D855937E2D6E15E49', + exponent: 0, + aliases: ['adym'] + }, + { + denom: 'dym', + exponent: 18 + } + ], + base: 'ibc/5BAD723F09B0CDBB5AC6B439BF9670DA77DEE1F2330CF74D855937E2D6E15E49', + name: 'Dymension', + display: 'dym', + symbol: 'DYM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + coingecko_id: 'dymension', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-45', + base_denom: 'adym', + chain_name: 'dymension' + }, + chain: { + channel_id: 'channel-123' + } + } + ] + }, { description: 'The native token of Gravity Bridge', denom_units: [ @@ -1973,6 +2037,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2446,6 +2514,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3865,6 +3937,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -5269,6 +5345,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -5560,6 +5640,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5603,7 +5687,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19172,6 +19260,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1429', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', @@ -19288,6 +19419,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -19586,6 +19721,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -19629,6 +19768,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/arkh.ts b/packages/assets/src/mainnet/arkh.ts index d00dd31f3..a7875f9e2 100644 --- a/packages/assets/src/mainnet/arkh.ts +++ b/packages/assets/src/mainnet/arkh.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B162AFFC2C0ABB9399741D01E683FF1E6E01E817B7365118AFF3A5580D6CC268', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B162AFFC2C0ABB9399741D01E683FF1E6E01E817B7365118AFF3A5580D6CC268', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-648', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-12' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/assetmantle.ts b/packages/assets/src/mainnet/assetmantle.ts index 53da8432b..437156d42 100644 --- a/packages/assets/src/mainnet/assetmantle.ts +++ b/packages/assets/src/mainnet/assetmantle.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -249,6 +253,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1711,6 +1719,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1754,7 +1766,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15322,6 +15338,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-232', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/aura.ts b/packages/assets/src/mainnet/aura.ts index 1f1c9ad82..dcd9d8fda 100644 --- a/packages/assets/src/mainnet/aura.ts +++ b/packages/assets/src/mainnet/aura.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1621,6 +1629,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2057,6 +2069,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2100,7 +2116,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15669,6 +15689,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11304', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ @@ -15698,6 +15761,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/axelar.ts b/packages/assets/src/mainnet/axelar.ts index d255edf6e..b8feca89a 100644 --- a/packages/assets/src/mainnet/axelar.ts +++ b/packages/assets/src/mainnet/axelar.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -252,6 +256,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -438,6 +446,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -1074,6 +1086,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1115,6 +1131,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' } ], + socials: { + webiste: 'https://c4e.io/', + twitter: 'https://twitter.com/Chain4Energy' + }, traces: [ { type: 'ibc', @@ -1172,6 +1192,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -1390,6 +1414,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1614,6 +1642,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -1698,6 +1730,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -2050,6 +2086,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2373,6 +2413,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2619,6 +2663,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -2837,6 +2885,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4256,6 +4308,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' } ], + socials: { + webiste: 'https://www.kyve.network/', + twitter: 'https://twitter.com/KYVENetwork' + }, traces: [ { type: 'ibc', @@ -4784,6 +4840,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -6109,6 +6169,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -6400,6 +6464,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6443,7 +6511,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -20012,6 +20084,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-208', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -20041,6 +20156,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20084,6 +20203,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -20351,6 +20474,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -20394,6 +20521,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -20939,6 +21070,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/bandchain.ts b/packages/assets/src/mainnet/bandchain.ts index ce6fa6bae..8f3c2ff71 100644 --- a/packages/assets/src/mainnet/bandchain.ts +++ b/packages/assets/src/mainnet/bandchain.ts @@ -77,6 +77,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -120,7 +124,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13688,6 +13696,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B76B91160DE969BE0B0DFA7E0ED5730AC81D74AA23ECB4159D102F67552B802B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B76B91160DE969BE0B0DFA7E0ED5730AC81D74AA23ECB4159D102F67552B802B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-148', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-83' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/beezee.ts b/packages/assets/src/mainnet/beezee.ts index 135329086..24a12e42d 100644 --- a/packages/assets/src/mainnet/beezee.ts +++ b/packages/assets/src/mainnet/beezee.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-340', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitcanna.ts b/packages/assets/src/mainnet/bitcanna.ts index f7674eace..1a5706c6d 100644 --- a/packages/assets/src/mainnet/bitcanna.ts +++ b/packages/assets/src/mainnet/bitcanna.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -178,6 +182,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -814,6 +822,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -951,6 +963,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -1170,6 +1186,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1213,7 +1233,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14781,6 +14805,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitsong.ts b/packages/assets/src/mainnet/bitsong.ts index 61c38afd0..907e8e644 100644 --- a/packages/assets/src/mainnet/bitsong.ts +++ b/packages/assets/src/mainnet/bitsong.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1528,6 +1532,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1665,6 +1673,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -1884,6 +1896,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1927,7 +1943,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15495,6 +15515,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bluzelle.ts b/packages/assets/src/mainnet/bluzelle.ts index 169647dd6..633f04e13 100644 --- a/packages/assets/src/mainnet/bluzelle.ts +++ b/packages/assets/src/mainnet/bluzelle.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-763', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bostrom.ts b/packages/assets/src/mainnet/bostrom.ts index fea980d24..f6708af1c 100644 --- a/packages/assets/src/mainnet/bostrom.ts +++ b/packages/assets/src/mainnet/bostrom.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-95', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/canto.ts b/packages/assets/src/mainnet/canto.ts index cfbc07bb8..03be090cc 100644 --- a/packages/assets/src/mainnet/canto.ts +++ b/packages/assets/src/mainnet/canto.ts @@ -555,6 +555,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -731,6 +735,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -774,7 +782,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14342,6 +14354,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-550', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/carbon.ts b/packages/assets/src/mainnet/carbon.ts index 6bcbc7023..7762f507d 100644 --- a/packages/assets/src/mainnet/carbon.ts +++ b/packages/assets/src/mainnet/carbon.ts @@ -123,6 +123,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -261,6 +265,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -483,6 +491,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1904,6 +1916,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1947,7 +1963,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15516,6 +15536,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-188', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ @@ -15545,6 +15608,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -15814,6 +15881,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -16359,6 +16430,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -16633,6 +16708,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/celestia.ts b/packages/assets/src/mainnet/celestia.ts index 1dfeedae2..e968d2909 100644 --- a/packages/assets/src/mainnet/celestia.ts +++ b/packages/assets/src/mainnet/celestia.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1498,6 +1502,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -1673,6 +1681,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -1717,6 +1729,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1895,6 +1911,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2218,6 +2238,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2421,6 +2445,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2637,6 +2665,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -3825,6 +3857,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3868,7 +3904,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17437,6 +17477,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6994', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -17466,6 +17549,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -17509,6 +17596,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -18054,6 +18145,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/cerberus.ts b/packages/assets/src/mainnet/cerberus.ts index c9fa6c839..e61520e57 100644 --- a/packages/assets/src/mainnet/cerberus.ts +++ b/packages/assets/src/mainnet/cerberus.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-212', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/chain4energy.ts b/packages/assets/src/mainnet/chain4energy.ts index eea671ae2..49ad14a67 100644 --- a/packages/assets/src/mainnet/chain4energy.ts +++ b/packages/assets/src/mainnet/chain4energy.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1486,6 +1490,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1529,7 +1537,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15097,6 +15109,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/cheqd.ts b/packages/assets/src/mainnet/cheqd.ts index aadebf8a0..87ebc4d30 100644 --- a/packages/assets/src/mainnet/cheqd.ts +++ b/packages/assets/src/mainnet/cheqd.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -462,6 +466,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -505,7 +513,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14074,6 +14086,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-108', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -14103,6 +14158,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/chihuahua.ts b/packages/assets/src/mainnet/chihuahua.ts index ff83be39f..e6215f86b 100644 --- a/packages/assets/src/mainnet/chihuahua.ts +++ b/packages/assets/src/mainnet/chihuahua.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -733,6 +737,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -1962,6 +1970,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2005,7 +2017,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15574,6 +15590,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/7172A4532955459A1837D667FF2CCB07834506510731564352C15958966A1B08', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/7172A4532955459A1837D667FF2CCB07834506510731564352C15958966A1B08', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-113', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15604,6 +15663,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -16168,6 +16231,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/comdex.ts b/packages/assets/src/mainnet/comdex.ts index 63d59f74c..c8d895242 100644 --- a/packages/assets/src/mainnet/comdex.ts +++ b/packages/assets/src/mainnet/comdex.ts @@ -117,6 +117,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -335,6 +339,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2241,6 +2249,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2284,7 +2296,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15853,6 +15869,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-87', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15883,6 +15942,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -16447,6 +16510,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -16490,6 +16557,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -17035,6 +17106,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/composable.ts b/packages/assets/src/mainnet/composable.ts index 1d6790a41..707422058 100644 --- a/packages/assets/src/mainnet/composable.ts +++ b/packages/assets/src/mainnet/composable.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -119,6 +123,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1664,6 +1672,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1707,6 +1719,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1931,6 +1947,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -2109,6 +2129,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2432,6 +2456,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2635,6 +2663,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -2853,6 +2885,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4272,6 +4308,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -5460,6 +5500,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5503,7 +5547,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19072,6 +19120,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1279', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking and governance token of Picasso.', denom_units: [ @@ -19265,6 +19356,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -19523,6 +19618,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -19566,6 +19665,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -19835,6 +19938,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/coreum.ts b/packages/assets/src/mainnet/coreum.ts index 64bfdfcbb..3eacb5f5b 100644 --- a/packages/assets/src/mainnet/coreum.ts +++ b/packages/assets/src/mainnet/coreum.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' } ], + socials: { + webiste: 'https://www.bandprotocol.com/', + twitter: 'https://twitter.com/BandProtocol' + }, traces: [ { type: 'ibc', @@ -1527,6 +1535,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1714,6 +1726,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -1808,6 +1824,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1985,6 +2005,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2414,6 +2438,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2631,6 +2659,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4227,6 +4259,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -4270,7 +4306,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17839,6 +17879,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2188', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -17868,6 +17951,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -17911,6 +17998,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/cosmoshub.ts b/packages/assets/src/mainnet/cosmoshub.ts index 55c25c8b3..01c757d85 100644 --- a/packages/assets/src/mainnet/cosmoshub.ts +++ b/packages/assets/src/mainnet/cosmoshub.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -297,6 +301,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -392,6 +400,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -577,6 +589,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2075,6 +2091,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -3235,6 +3255,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -3541,6 +3565,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -3629,6 +3657,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -3977,6 +4009,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -4329,6 +4365,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -4652,6 +4692,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -4899,6 +4943,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -5116,6 +5164,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -5376,6 +5428,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -6882,6 +6938,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -8243,6 +8303,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -8534,6 +8598,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -8577,7 +8645,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -22146,6 +22218,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A5D73223975E6A9ABED31ECEEB09F737C8290F49C2133F39AA5178D81555A6FF', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A5D73223975E6A9ABED31ECEEB09F737C8290F49C2133F39AA5178D81555A6FF', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-141' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -22176,6 +22291,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -22871,6 +22990,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -23214,6 +23337,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -23301,6 +23428,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -23344,6 +23475,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -23605,6 +23740,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -23898,6 +24037,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', @@ -23941,6 +24084,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -24778,6 +24925,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/crescent.ts b/packages/assets/src/mainnet/crescent.ts index f8737395f..0b07123c6 100644 --- a/packages/assets/src/mainnet/crescent.ts +++ b/packages/assets/src/mainnet/crescent.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -120,6 +124,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -211,6 +219,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1807,6 +1819,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -1981,6 +1997,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2120,6 +2140,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -2164,6 +2188,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -2341,6 +2369,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2771,6 +2803,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -3094,6 +3130,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -3384,6 +3424,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -3602,6 +3646,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -5021,6 +5069,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -5282,6 +5334,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5325,7 +5381,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18894,6 +18954,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-297', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18924,6 +19027,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -19488,6 +19595,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -19531,6 +19642,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -19800,6 +19915,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -21452,6 +21571,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/cronos.ts b/packages/assets/src/mainnet/cronos.ts index 3a1f57e91..44909c2f6 100644 --- a/packages/assets/src/mainnet/cronos.ts +++ b/packages/assets/src/mainnet/cronos.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/cryptoorgchain.ts b/packages/assets/src/mainnet/cryptoorgchain.ts index 4d95a41f1..e6be85ace 100644 --- a/packages/assets/src/mainnet/cryptoorgchain.ts +++ b/packages/assets/src/mainnet/cryptoorgchain.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -347,6 +355,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -570,6 +582,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -613,7 +629,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14182,6 +14202,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14212,6 +14275,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -14776,6 +14843,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -14863,6 +14934,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -14951,6 +15026,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/cudos.ts b/packages/assets/src/mainnet/cudos.ts index c61c8e94c..145b50063 100644 --- a/packages/assets/src/mainnet/cudos.ts +++ b/packages/assets/src/mainnet/cudos.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-298', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/decentr.ts b/packages/assets/src/mainnet/decentr.ts index 6c9c6ccd9..eeef06c61 100644 --- a/packages/assets/src/mainnet/decentr.ts +++ b/packages/assets/src/mainnet/decentr.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -179,6 +183,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -222,7 +230,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13791,6 +13803,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-181', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -13820,6 +13875,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/desmos.ts b/packages/assets/src/mainnet/desmos.ts index 9a512fa49..77d0126e4 100644 --- a/packages/assets/src/mainnet/desmos.ts +++ b/packages/assets/src/mainnet/desmos.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-135', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dig.ts b/packages/assets/src/mainnet/dig.ts index e32b6a0d4..cbd0548f5 100644 --- a/packages/assets/src/mainnet/dig.ts +++ b/packages/assets/src/mainnet/dig.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -250,6 +254,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -293,7 +301,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13861,6 +13873,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-128', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/doravota.ts b/packages/assets/src/mainnet/doravota.ts index b338bef87..3e46287e8 100644 --- a/packages/assets/src/mainnet/doravota.ts +++ b/packages/assets/src/mainnet/doravota.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -127,6 +131,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -313,6 +321,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -456,6 +468,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -550,6 +566,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -873,6 +893,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -1076,6 +1100,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } ], + socials: { + webiste: 'https://nolus.io/', + twitter: 'https://twitter.com/NolusProtocol' + }, traces: [ { type: 'ibc', @@ -2084,6 +2112,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2127,7 +2159,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15696,6 +15732,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2694', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -15725,6 +15804,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/dydx.ts b/packages/assets/src/mainnet/dydx.ts index 8f34d543d..608f0c0b3 100644 --- a/packages/assets/src/mainnet/dydx.ts +++ b/packages/assets/src/mainnet/dydx.ts @@ -120,6 +120,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -297,6 +301,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -514,6 +522,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1933,6 +1945,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -3296,6 +3312,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3339,7 +3359,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -16908,6 +16932,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6787', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -16938,6 +17005,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -17502,6 +17573,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -18047,6 +18122,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/dymension.ts b/packages/assets/src/mainnet/dymension.ts index 8d443cf80..fabac79c5 100644 --- a/packages/assets/src/mainnet/dymension.ts +++ b/packages/assets/src/mainnet/dymension.ts @@ -2,6 +2,156 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { chain_name: 'dymension', assets: [ + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/5C58CC109FB067073F1B80481EE9C3A8484330FECB35D2591B28E7E1A6FCF64C', + exponent: 0, + aliases: ['aarch'] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + base: 'ibc/5C58CC109FB067073F1B80481EE9C3A8484330FECB35D2591B28E7E1A6FCF64C', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + coingecko_id: 'archway', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-123', + base_denom: 'aarch', + chain_name: 'archway' + }, + chain: { + channel_id: 'channel-45' + } + } + ] + }, + { + description: 'The first memecoin on osmosis.', + denom_units: [ + { + denom: + 'ibc/7D3868A20087E7EB369F64F6AA2C5D70E59522E5C7E03B9973D2EDE86E1DB6F0', + exponent: 0, + aliases: [ + 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278' + ] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7D3868A20087E7EB369F64F6AA2C5D70E59522E5C7E03B9973D2EDE86E1DB6F0', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-123', + base_denom: + 'ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278', + chain_name: 'archway' + }, + chain: { + channel_id: 'channel-45' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' + } + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/2E537B6325ADAFDE0B37F1609B8BC8F46B07C5030B3B97F15719B797EE1F1121', + exponent: 0, + aliases: [ + 'ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2E537B6325ADAFDE0B37F1609B8BC8F46B07C5030B3B97F15719B797EE1F1121', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-123', + base_denom: + 'ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1', + chain_name: 'archway' + }, + chain: { + channel_id: 'channel-45' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'vidulum', + base_denom: 'uvdl' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, { description: 'The native token of Axelar', denom_units: [ @@ -31,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1638,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1527,6 +1685,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1665,6 +1827,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1842,6 +2008,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2059,6 +2229,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3478,6 +3652,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -4841,6 +5019,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -4884,7 +5066,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18453,6 +18639,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18482,6 +18711,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -18525,6 +18758,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/dyson.ts b/packages/assets/src/mainnet/dyson.ts index b2d31ba65..48c746ca7 100644 --- a/packages/assets/src/mainnet/dyson.ts +++ b/packages/assets/src/mainnet/dyson.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-526', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/echelon.ts b/packages/assets/src/mainnet/echelon.ts index 1db28c40e..1e95f9d4a 100644 --- a/packages/assets/src/mainnet/echelon.ts +++ b/packages/assets/src/mainnet/echelon.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/ACDC2F8F0E88BD229649B3642C73EBFCE0150083B2F95ACE2842FBEE68F56583', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/ACDC2F8F0E88BD229649B3642C73EBFCE0150083B2F95ACE2842FBEE68F56583', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-403', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-11' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/emoney.ts b/packages/assets/src/mainnet/emoney.ts index 0ab21bd46..010fa45b8 100644 --- a/packages/assets/src/mainnet/emoney.ts +++ b/packages/assets/src/mainnet/emoney.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -212,6 +216,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -431,6 +439,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -474,7 +486,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14042,6 +14058,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/empowerchain.ts b/packages/assets/src/mainnet/empowerchain.ts index 503f950bd..d3d907608 100644 --- a/packages/assets/src/mainnet/empowerchain.ts +++ b/packages/assets/src/mainnet/empowerchain.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1623,6 +1631,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1666,7 +1678,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15234,6 +15250,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1411', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/evmos.ts b/packages/assets/src/mainnet/evmos.ts index 6e344800a..2b427d6cb 100644 --- a/packages/assets/src/mainnet/evmos.ts +++ b/packages/assets/src/mainnet/evmos.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -248,6 +252,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2211,6 +2219,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -2268,6 +2280,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2486,6 +2502,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2711,6 +2731,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -2760,6 +2784,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -2854,6 +2882,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -3728,6 +3760,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -4158,6 +4194,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -4481,6 +4521,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -4684,6 +4728,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -4901,6 +4949,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -6497,6 +6549,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6540,7 +6596,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -20109,6 +20169,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-204', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -20138,6 +20241,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20181,6 +20288,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -20450,6 +20561,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/fetchhub.ts b/packages/assets/src/mainnet/fetchhub.ts index 8dcc4acb2..32faf3e37 100644 --- a/packages/assets/src/mainnet/fetchhub.ts +++ b/packages/assets/src/mainnet/fetchhub.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-229', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/furya.ts b/packages/assets/src/mainnet/furya.ts index 28ac82f72..fb26c77ce 100644 --- a/packages/assets/src/mainnet/furya.ts +++ b/packages/assets/src/mainnet/furya.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -249,6 +253,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1845,6 +1853,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1888,7 +1900,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15457,6 +15473,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8690', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -15486,6 +15545,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/fxcore.ts b/packages/assets/src/mainnet/fxcore.ts index 9341dd873..e84c48664 100644 --- a/packages/assets/src/mainnet/fxcore.ts +++ b/packages/assets/src/mainnet/fxcore.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1623,6 +1631,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1666,7 +1678,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15235,6 +15251,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/284F1FE2E5F2A92CF0E0F6DF75B4A0187DCEEF5DACC6FA9AD947F62D18E8DFB5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/284F1FE2E5F2A92CF0E0F6DF75B4A0187DCEEF5DACC6FA9AD947F62D18E8DFB5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2716', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, { description: 'Pundi X Token', denom_units: [ diff --git a/packages/assets/src/mainnet/galaxy.ts b/packages/assets/src/mainnet/galaxy.ts index 308099dac..c4e740e86 100644 --- a/packages/assets/src/mainnet/galaxy.ts +++ b/packages/assets/src/mainnet/galaxy.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-236', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gateway.ts b/packages/assets/src/mainnet/gateway.ts index 0f7fe0cfd..2dbadf25c 100644 --- a/packages/assets/src/mainnet/gateway.ts +++ b/packages/assets/src/mainnet/gateway.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -210,6 +214,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -533,6 +541,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -737,6 +749,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2158,6 +2174,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2201,7 +2221,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15770,6 +15794,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2186', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ @@ -15799,6 +15866,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/genesisl1.ts b/packages/assets/src/mainnet/genesisl1.ts index 2ecdc1751..eccaee2af 100644 --- a/packages/assets/src/mainnet/genesisl1.ts +++ b/packages/assets/src/mainnet/genesisl1.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-253', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gitopia.ts b/packages/assets/src/mainnet/gitopia.ts index c7ed2be20..4aefb9dd8 100644 --- a/packages/assets/src/mainnet/gitopia.ts +++ b/packages/assets/src/mainnet/gitopia.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-781', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gravitybridge.ts b/packages/assets/src/mainnet/gravitybridge.ts index 38ad67f29..ea49934f0 100644 --- a/packages/assets/src/mainnet/gravitybridge.ts +++ b/packages/assets/src/mainnet/gravitybridge.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -252,6 +256,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -568,6 +576,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -790,6 +802,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2308,6 +2324,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2351,7 +2371,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15920,6 +15944,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15950,6 +16017,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -16602,6 +16673,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/haqq.ts b/packages/assets/src/mainnet/haqq.ts index 00cc6f23e..93cfd7370 100644 --- a/packages/assets/src/mainnet/haqq.ts +++ b/packages/assets/src/mainnet/haqq.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1621,6 +1629,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -2050,6 +2062,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2443,6 +2459,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2486,7 +2506,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -16054,6 +16078,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1575', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/humans.ts b/packages/assets/src/mainnet/humans.ts index 1eaf78b12..d32e7d07f 100644 --- a/packages/assets/src/mainnet/humans.ts +++ b/packages/assets/src/mainnet/humans.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/ACDD2D31C122035D9FAB10069719037CAF2C83C05B16447654B3E9A44309B5FF', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/ACDD2D31C122035D9FAB10069719037CAF2C83C05B16447654B3E9A44309B5FF', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/impacthub.ts b/packages/assets/src/mainnet/impacthub.ts index 8f4d98888..27fb0173a 100644 --- a/packages/assets/src/mainnet/impacthub.ts +++ b/packages/assets/src/mainnet/impacthub.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1484,6 +1488,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1798,6 +1806,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1841,7 +1853,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15410,6 +15426,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/ACDD2D31C122035D9FAB10069719037CAF2C83C05B16447654B3E9A44309B5FF', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/ACDD2D31C122035D9FAB10069719037CAF2C83C05B16447654B3E9A44309B5FF', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, { description: "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", diff --git a/packages/assets/src/mainnet/imversed.ts b/packages/assets/src/mainnet/imversed.ts index 8e52f3fe2..f237634ab 100644 --- a/packages/assets/src/mainnet/imversed.ts +++ b/packages/assets/src/mainnet/imversed.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-517', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/injective.ts b/packages/assets/src/mainnet/injective.ts index 49f49b934..467075375 100644 --- a/packages/assets/src/mainnet/injective.ts +++ b/packages/assets/src/mainnet/injective.ts @@ -72,6 +72,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1525,6 +1529,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1582,6 +1590,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -1756,6 +1768,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2024,6 +2040,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -3032,6 +3052,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -3249,6 +3273,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -5153,6 +5181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -6698,6 +6730,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6741,7 +6777,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -20310,6 +20350,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-122', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -20340,6 +20423,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -20904,6 +20991,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20953,6 +21044,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -20996,6 +21091,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -21541,6 +21640,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/irisnet.ts b/packages/assets/src/mainnet/irisnet.ts index 4a6be2ea5..e87e1cb1b 100644 --- a/packages/assets/src/mainnet/irisnet.ts +++ b/packages/assets/src/mainnet/irisnet.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -633,6 +637,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -858,6 +866,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -1167,6 +1179,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1210,7 +1226,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14779,6 +14799,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14809,6 +14872,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -15373,6 +15440,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -15460,6 +15531,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -15753,6 +15828,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/jackal.ts b/packages/assets/src/mainnet/jackal.ts index a3abb7db6..bd81e3a22 100644 --- a/packages/assets/src/mainnet/jackal.ts +++ b/packages/assets/src/mainnet/jackal.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -177,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1717,6 +1725,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3138,6 +3150,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3181,7 +3197,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -16750,6 +16770,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-412', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -16779,6 +16842,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/juno.ts b/packages/assets/src/mainnet/juno.ts index 9814eda9e..1edc8897a 100644 --- a/packages/assets/src/mainnet/juno.ts +++ b/packages/assets/src/mainnet/juno.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -166,6 +174,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1664,6 +1676,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -2744,6 +2760,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2918,6 +2938,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -3489,6 +3513,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4908,6 +4936,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -5697,6 +5729,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5740,7 +5776,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19309,6 +19349,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19339,6 +19422,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -19902,6 +19989,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -20160,6 +20251,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20247,6 +20342,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -20516,6 +20615,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -22168,6 +22271,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/kava.ts b/packages/assets/src/mainnet/kava.ts index d5f1a07a5..472ba1bd5 100644 --- a/packages/assets/src/mainnet/kava.ts +++ b/packages/assets/src/mainnet/kava.ts @@ -74,6 +74,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -161,6 +165,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -397,6 +405,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -491,6 +503,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -535,6 +551,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -757,6 +777,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -1080,6 +1104,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -1284,6 +1312,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3188,6 +3220,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -4376,6 +4412,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -4419,7 +4459,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17988,6 +18032,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-143', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18018,6 +18105,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -18582,6 +18673,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -18843,6 +18938,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/kichain.ts b/packages/assets/src/mainnet/kichain.ts index 122a04038..2178678b5 100644 --- a/packages/assets/src/mainnet/kichain.ts +++ b/packages/assets/src/mainnet/kichain.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -170,6 +174,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -213,7 +221,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13781,6 +13793,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-77', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/konstellation.ts b/packages/assets/src/mainnet/konstellation.ts index af9fbd501..22cb10129 100644 --- a/packages/assets/src/mainnet/konstellation.ts +++ b/packages/assets/src/mainnet/konstellation.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-171', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/kujira.ts b/packages/assets/src/mainnet/kujira.ts index 95af981ab..488c9485e 100644 --- a/packages/assets/src/mainnet/kujira.ts +++ b/packages/assets/src/mainnet/kujira.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -249,6 +253,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -385,6 +393,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -527,6 +539,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -570,6 +586,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2676,6 +2696,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2894,6 +2918,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -3123,6 +3151,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -3217,6 +3249,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -3261,6 +3297,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -4311,6 +4351,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -4741,6 +4785,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -5064,6 +5112,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -5310,6 +5362,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -5527,6 +5583,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -5743,6 +5803,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -6271,6 +6335,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -7855,6 +7923,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -8146,6 +8218,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -8189,7 +8265,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -21758,6 +21838,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-259', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -21788,6 +21911,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -22525,6 +22652,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -22612,6 +22743,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -22661,6 +22796,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -22909,6 +23048,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -23178,6 +23321,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -24015,6 +24162,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -24706,6 +24857,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/kyve.ts b/packages/assets/src/mainnet/kyve.ts index 06a51dd78..12eeacce0 100644 --- a/packages/assets/src/mainnet/kyve.ts +++ b/packages/assets/src/mainnet/kyve.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1486,6 +1490,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1529,7 +1537,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15097,6 +15109,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-767', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lambda.ts b/packages/assets/src/mainnet/lambda.ts index 4f4488267..499fb4171 100644 --- a/packages/assets/src/mainnet/lambda.ts +++ b/packages/assets/src/mainnet/lambda.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-378', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/likecoin.ts b/packages/assets/src/mainnet/likecoin.ts index 9ea95233f..519e2b72f 100644 --- a/packages/assets/src/mainnet/likecoin.ts +++ b/packages/assets/src/mainnet/likecoin.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -170,6 +174,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -213,7 +221,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13781,6 +13793,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumenx.ts b/packages/assets/src/mainnet/lumenx.ts index 3c1a907c8..8449e5807 100644 --- a/packages/assets/src/mainnet/lumenx.ts +++ b/packages/assets/src/mainnet/lumenx.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-286', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumnetwork.ts b/packages/assets/src/mainnet/lumnetwork.ts index 80cbc88a8..b040986e5 100644 --- a/packages/assets/src/mainnet/lumnetwork.ts +++ b/packages/assets/src/mainnet/lumnetwork.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -170,6 +174,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -213,7 +221,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13781,6 +13793,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-115', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/mars.ts b/packages/assets/src/mainnet/mars.ts index 9091de5dd..0e23fcc0c 100644 --- a/packages/assets/src/mainnet/mars.ts +++ b/packages/assets/src/mainnet/mars.ts @@ -117,6 +117,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -335,6 +339,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1754,6 +1762,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -2942,6 +2954,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2985,7 +3001,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -16554,6 +16574,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-557', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -16583,6 +16646,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/medasdigital.ts b/packages/assets/src/mainnet/medasdigital.ts index 67f722327..5f710d050 100644 --- a/packages/assets/src/mainnet/medasdigital.ts +++ b/packages/assets/src/mainnet/medasdigital.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13645,6 +13653,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-519', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ @@ -13674,6 +13725,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/meme.ts b/packages/assets/src/mainnet/meme.ts index 04ba79b68..c976ea70b 100644 --- a/packages/assets/src/mainnet/meme.ts +++ b/packages/assets/src/mainnet/meme.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-238', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/microtick.ts b/packages/assets/src/mainnet/microtick.ts index cd2bd40f0..67e011d76 100644 --- a/packages/assets/src/mainnet/microtick.ts +++ b/packages/assets/src/mainnet/microtick.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/7E90903AB09B12991D3FA93B121B7DA4EA04650CD233D6D196A3B0F8090FA84C', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/7E90903AB09B12991D3FA93B121B7DA4EA04650CD233D6D196A3B0F8090FA84C', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-39', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/migaloo.ts b/packages/assets/src/mainnet/migaloo.ts index 91818295b..959fbe737 100644 --- a/packages/assets/src/mainnet/migaloo.ts +++ b/packages/assets/src/mainnet/migaloo.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1915,6 +1919,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2238,6 +2246,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2441,6 +2453,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -2658,6 +2674,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2875,6 +2895,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4471,6 +4495,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -4514,7 +4542,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18083,6 +18115,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-642', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18112,6 +18187,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -18155,6 +18234,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -18416,6 +18499,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -18685,6 +18772,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -19419,6 +19510,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/neutron.ts b/packages/assets/src/mainnet/neutron.ts index d6e629ca0..e704ae09b 100644 --- a/packages/assets/src/mainnet/neutron.ts +++ b/packages/assets/src/mainnet/neutron.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -177,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1630,6 +1638,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1988,6 +2000,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2162,6 +2178,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2305,6 +2325,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -2399,6 +2423,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -2443,6 +2471,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2766,6 +2798,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2969,6 +3005,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -3186,6 +3226,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4605,6 +4649,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -4866,6 +4914,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } ], + socials: { + webiste: 'https://nolus.io/', + twitter: 'https://twitter.com/NolusProtocol' + }, traces: [ { type: 'ibc', @@ -5958,6 +6010,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6001,7 +6057,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19570,6 +19630,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-874', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19600,6 +19703,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -20164,6 +20271,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -20425,6 +20536,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -20694,6 +20809,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -21239,6 +21358,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -21978,6 +22101,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/noble.ts b/packages/assets/src/mainnet/noble.ts index ae2b5b6e0..a1a0bac07 100644 --- a/packages/assets/src/mainnet/noble.ts +++ b/packages/assets/src/mainnet/noble.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -352,6 +360,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -581,6 +593,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -675,6 +691,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -719,6 +739,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1026,6 +1050,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -1349,6 +1377,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -1552,6 +1584,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -1770,6 +1806,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3674,6 +3714,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -4860,6 +4904,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -5151,6 +5199,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5194,7 +5246,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18763,6 +18819,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-750', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18793,6 +18892,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -19357,6 +19460,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -19400,6 +19507,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -19661,6 +19772,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -20222,6 +20337,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/nois.ts b/packages/assets/src/mainnet/nois.ts index c7bbb104f..73dacefc0 100644 --- a/packages/assets/src/mainnet/nois.ts +++ b/packages/assets/src/mainnet/nois.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -221,6 +225,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -544,6 +552,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -747,6 +759,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -964,6 +980,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -2152,6 +2172,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2195,7 +2219,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15764,6 +15792,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/864D409267DAB5653C7376506907928E0AB89CCEA00C24B8869E4D9A0B4C1ECD', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/864D409267DAB5653C7376506907928E0AB89CCEA00C24B8869E4D9A0B4C1ECD', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8277', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -15793,6 +15864,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -16054,6 +16129,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/nolus.ts b/packages/assets/src/mainnet/nolus.ts index fd97b2a50..9998370f7 100644 --- a/packages/assets/src/mainnet/nolus.ts +++ b/packages/assets/src/mainnet/nolus.ts @@ -75,6 +75,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -1263,6 +1267,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1306,7 +1314,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14874,6 +14886,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-783', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nomic.ts b/packages/assets/src/mainnet/nomic.ts index 1adc47732..96cab073a 100644 --- a/packages/assets/src/mainnet/nomic.ts +++ b/packages/assets/src/mainnet/nomic.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1451,6 +1455,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -2639,6 +2647,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2682,7 +2694,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -16250,6 +16266,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6897', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nyx.ts b/packages/assets/src/mainnet/nyx.ts index 324e17bae..f792b51fa 100644 --- a/packages/assets/src/mainnet/nyx.ts +++ b/packages/assets/src/mainnet/nyx.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -462,6 +466,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -505,7 +513,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14073,6 +14085,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15464', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/odin.ts b/packages/assets/src/mainnet/odin.ts index 825ac5c20..61e793353 100644 --- a/packages/assets/src/mainnet/odin.ts +++ b/packages/assets/src/mainnet/odin.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1485,6 +1489,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -1808,6 +1816,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2012,6 +2024,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3433,6 +3449,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3476,7 +3496,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17044,6 +17068,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/23E2A9A395BE42ECEAB110351186D267AD1DA49EFFEECD72286B56F164A007E7', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-258', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/okexchain.ts b/packages/assets/src/mainnet/okexchain.ts index 11313f025..3a1585a76 100644 --- a/packages/assets/src/mainnet/okexchain.ts +++ b/packages/assets/src/mainnet/okexchain.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -461,6 +465,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/omniflixhub.ts b/packages/assets/src/mainnet/omniflixhub.ts index 1f47a7ba3..d93ed8a53 100644 --- a/packages/assets/src/mainnet/omniflixhub.ts +++ b/packages/assets/src/mainnet/omniflixhub.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -265,6 +273,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1718,6 +1730,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1856,6 +1872,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3452,6 +3472,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3495,7 +3519,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17063,6 +17091,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-199', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/onomy.ts b/packages/assets/src/mainnet/onomy.ts index f715ce9f2..558f40dc9 100644 --- a/packages/assets/src/mainnet/onomy.ts +++ b/packages/assets/src/mainnet/onomy.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-525', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/oraichain.ts b/packages/assets/src/mainnet/oraichain.ts index 47e292849..47f686d72 100644 --- a/packages/assets/src/mainnet/oraichain.ts +++ b/packages/assets/src/mainnet/oraichain.ts @@ -162,6 +162,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -205,7 +209,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13774,6 +13782,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B3646D251B247406C050CD4323090A93DEEB9B5190FDC97C296DE02C2F44DFD0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B3646D251B247406C050CD4323090A93DEEB9B5190FDC97C296DE02C2F44DFD0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-216', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-13' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -13803,6 +13854,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/osmosis.ts b/packages/assets/src/mainnet/osmosis.ts index 9defa93bc..d6b6b0a52 100644 --- a/packages/assets/src/mainnet/osmosis.ts +++ b/packages/assets/src/mainnet/osmosis.ts @@ -204,6 +204,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -340,6 +344,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -435,6 +443,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -619,6 +631,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -705,6 +721,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2158,6 +2178,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' } ], + socials: { + webiste: 'https://www.bandprotocol.com/', + twitter: 'https://twitter.com/BandProtocol' + }, traces: [ { type: 'ibc', @@ -2289,6 +2313,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -3857,6 +3885,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -3941,6 +3973,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' } ], + socials: { + webiste: 'https://c4e.io/', + twitter: 'https://twitter.com/Chain4Energy' + }, traces: [ { type: 'ibc', @@ -4471,6 +4507,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -4689,6 +4729,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -4914,6 +4958,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -5177,6 +5225,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -5271,6 +5323,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -5851,6 +5907,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -7162,6 +7222,10 @@ const assets: AssetList = { } ], coingecko_id: 'gitopia', + socials: { + webiste: 'https://gitopia.com/', + twitter: 'https://twitter.com/gitopiaDAO' + }, traces: [ { type: 'ibc', @@ -7205,6 +7269,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -7688,6 +7756,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://humans.ai/', + twitter: 'https://twitter.com/humansdotai' + }, traces: [ { type: 'ibc', @@ -7819,6 +7891,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -8142,6 +8218,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -8432,6 +8512,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -8649,6 +8733,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -8952,6 +9040,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -10371,6 +10463,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' } ], + socials: { + webiste: 'https://www.kyve.network/', + twitter: 'https://twitter.com/KYVENetwork' + }, traces: [ { type: 'ibc', @@ -10586,6 +10682,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -11245,6 +11345,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -12649,6 +12753,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } ], + socials: { + webiste: 'https://nolus.io/', + twitter: 'https://twitter.com/NolusProtocol' + }, traces: [ { type: 'ibc', @@ -13975,6 +14083,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -14438,6 +14550,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -15225,6 +15341,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' } ], + socials: { + webiste: 'https://pylons.tech', + twitter: 'https://twitter.com/pylonstech' + }, traces: [ { type: 'ibc', @@ -15268,6 +15388,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' } ], + socials: { + webiste: 'https://www.quasar.fi/', + twitter: 'https://twitter.com/QuasarFi' + }, traces: [ { type: 'ibc', @@ -15465,6 +15589,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -15891,6 +16019,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -16143,6 +16275,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -16186,6 +16322,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -16447,6 +16587,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -16670,6 +16814,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -17010,6 +17158,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -17280,6 +17432,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', @@ -17323,6 +17479,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -19267,6 +19427,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -23556,6 +23720,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/panacea.ts b/packages/assets/src/mainnet/panacea.ts index 8add77171..7416f1e16 100644 --- a/packages/assets/src/mainnet/panacea.ts +++ b/packages/assets/src/mainnet/panacea.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/passage.ts b/packages/assets/src/mainnet/passage.ts index fc13a6946..7ec1d9b16 100644 --- a/packages/assets/src/mainnet/passage.ts +++ b/packages/assets/src/mainnet/passage.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2494', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/persistence.ts b/packages/assets/src/mainnet/persistence.ts index 9908cd634..baf6df0e2 100644 --- a/packages/assets/src/mainnet/persistence.ts +++ b/packages/assets/src/mainnet/persistence.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -120,6 +124,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -641,6 +649,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -866,6 +878,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -915,6 +931,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -1008,6 +1028,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -1438,6 +1462,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -1761,6 +1789,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2008,6 +2040,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -2225,6 +2261,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2442,6 +2482,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3861,6 +3905,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -5224,6 +5272,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5267,7 +5319,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -18836,6 +18892,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/9D634C3B1C95CD35E0854D4523D30570194D85A143B5EFEC31A2C889A44256BB', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ] + }, { description: 'QCK - native token of Quicksilver', denom_units: [ @@ -18864,6 +18963,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -19122,6 +19225,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -19209,6 +19316,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -19252,6 +19363,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -19339,6 +19454,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -19609,6 +19728,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', @@ -19652,6 +19775,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/planq.ts b/packages/assets/src/mainnet/planq.ts index 2ab65b5bb..8169cd569 100644 --- a/packages/assets/src/mainnet/planq.ts +++ b/packages/assets/src/mainnet/planq.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -177,6 +181,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -314,6 +322,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -744,6 +756,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -2165,6 +2181,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -2208,7 +2228,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15777,6 +15801,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-492', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -15806,6 +15873,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/point.ts b/packages/assets/src/mainnet/point.ts index df7a1430c..a612cf2b4 100644 --- a/packages/assets/src/mainnet/point.ts +++ b/packages/assets/src/mainnet/point.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/provenance.ts b/packages/assets/src/mainnet/provenance.ts index d540e8dfb..6bb7c0ef7 100644 --- a/packages/assets/src/mainnet/provenance.ts +++ b/packages/assets/src/mainnet/provenance.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/7172A4532955459A1837D667FF2CCB07834506510731564352C15958966A1B08', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/7172A4532955459A1837D667FF2CCB07834506510731564352C15958966A1B08', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-222', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pundix.ts b/packages/assets/src/mainnet/pundix.ts index 2f7f18041..e34dcc040 100644 --- a/packages/assets/src/mainnet/pundix.ts +++ b/packages/assets/src/mainnet/pundix.ts @@ -120,6 +120,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -163,7 +167,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13731,6 +13739,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12618', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pylons.ts b/packages/assets/src/mainnet/pylons.ts index 6e1c6a6c6..644f01bf3 100644 --- a/packages/assets/src/mainnet/pylons.ts +++ b/packages/assets/src/mainnet/pylons.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/3A9382FC760DFD54DB3C3F74A08A8E346774792B8CB73EEFA24F7546CCA1C8DA', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/3A9382FC760DFD54DB3C3F74A08A8E346774792B8CB73EEFA24F7546CCA1C8DA', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/quasar.ts b/packages/assets/src/mainnet/quasar.ts index 50190b03f..d2e04d2bb 100644 --- a/packages/assets/src/mainnet/quasar.ts +++ b/packages/assets/src/mainnet/quasar.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-688', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/quicksilver.ts b/packages/assets/src/mainnet/quicksilver.ts index 7142beef1..083d13d7e 100644 --- a/packages/assets/src/mainnet/quicksilver.ts +++ b/packages/assets/src/mainnet/quicksilver.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -191,6 +195,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -365,6 +373,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -502,6 +514,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -721,6 +737,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -764,7 +784,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14333,6 +14357,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-522', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14363,6 +14430,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -14927,6 +14998,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -15014,6 +15089,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -15057,6 +15136,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/qwoyn.ts b/packages/assets/src/mainnet/qwoyn.ts index 1fc60a774..5d9d09280 100644 --- a/packages/assets/src/mainnet/qwoyn.ts +++ b/packages/assets/src/mainnet/qwoyn.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -179,6 +183,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -222,7 +230,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13790,6 +13802,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-880', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/realio.ts b/packages/assets/src/mainnet/realio.ts index 184770205..b9d238457 100644 --- a/packages/assets/src/mainnet/realio.ts +++ b/packages/assets/src/mainnet/realio.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -169,6 +173,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1590,6 +1598,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1633,7 +1645,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15201,6 +15217,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1424', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/rebus.ts b/packages/assets/src/mainnet/rebus.ts index a2cc4781e..5b2fccf60 100644 --- a/packages/assets/src/mainnet/rebus.ts +++ b/packages/assets/src/mainnet/rebus.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-355', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/regen.ts b/packages/assets/src/mainnet/regen.ts index 2321e8500..19f23c22f 100644 --- a/packages/assets/src/mainnet/regen.ts +++ b/packages/assets/src/mainnet/regen.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -262,6 +270,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -350,6 +362,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1771,6 +1787,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1814,7 +1834,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15383,6 +15407,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -15413,6 +15480,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -15976,6 +16047,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -16234,6 +16309,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -16322,6 +16401,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/rizon.ts b/packages/assets/src/mainnet/rizon.ts index dae379269..40c39b3ad 100644 --- a/packages/assets/src/mainnet/rizon.ts +++ b/packages/assets/src/mainnet/rizon.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-221', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/scorum.ts b/packages/assets/src/mainnet/scorum.ts index 201725990..61343b0ea 100644 --- a/packages/assets/src/mainnet/scorum.ts +++ b/packages/assets/src/mainnet/scorum.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/secretnetwork.ts b/packages/assets/src/mainnet/secretnetwork.ts index 51301bed8..00f8e15e6 100644 --- a/packages/assets/src/mainnet/secretnetwork.ts +++ b/packages/assets/src/mainnet/secretnetwork.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -120,6 +124,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -256,6 +264,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -398,6 +410,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1851,6 +1867,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -2338,6 +2358,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2556,6 +2580,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2780,6 +2808,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -2824,6 +2856,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -3001,6 +3037,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -3431,6 +3471,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -3754,6 +3798,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -4000,6 +4048,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -4218,6 +4270,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -6342,6 +6398,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6385,7 +6445,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19954,6 +20018,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-88', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19984,6 +20091,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -20547,6 +20658,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -20805,6 +20920,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -20892,6 +21011,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -21161,6 +21284,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -23105,6 +23232,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -26758,6 +26889,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/assets/src/mainnet/sei.ts b/packages/assets/src/mainnet/sei.ts index 2a762f2ec..3c06286d4 100644 --- a/packages/assets/src/mainnet/sei.ts +++ b/packages/assets/src/mainnet/sei.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1528,6 +1532,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1709,6 +1717,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -2410,6 +2422,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -3816,6 +3832,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3859,7 +3879,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17428,6 +17452,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-782', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', @@ -17545,6 +17612,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/sentinel.ts b/packages/assets/src/mainnet/sentinel.ts index 8bbf79651..35867aed9 100644 --- a/packages/assets/src/mainnet/sentinel.ts +++ b/packages/assets/src/mainnet/sentinel.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -262,6 +270,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -394,6 +406,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -437,7 +453,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14006,6 +14026,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14036,6 +14099,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -14600,6 +14667,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -14687,6 +14758,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -14775,6 +14850,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/sge.ts b/packages/assets/src/mainnet/sge.ts index 0acada24b..536988c2d 100644 --- a/packages/assets/src/mainnet/sge.ts +++ b/packages/assets/src/mainnet/sge.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5485', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shareledger.ts b/packages/assets/src/mainnet/shareledger.ts index c26c78a48..095010f37 100644 --- a/packages/assets/src/mainnet/shareledger.ts +++ b/packages/assets/src/mainnet/shareledger.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-647', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shentu.ts b/packages/assets/src/mainnet/shentu.ts index 3bc414445..29c8a3295 100644 --- a/packages/assets/src/mainnet/shentu.ts +++ b/packages/assets/src/mainnet/shentu.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13644,6 +13652,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/37DF4CCD7D156B9A8BF3636CD7E073BADBFD54E7C7D5B42B34C116E33DB0FE81', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-146', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/sifchain.ts b/packages/assets/src/mainnet/sifchain.ts index b8c0408d9..4eafff946 100644 --- a/packages/assets/src/mainnet/sifchain.ts +++ b/packages/assets/src/mainnet/sifchain.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -262,6 +270,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -392,6 +404,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -611,6 +627,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -654,7 +674,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14223,6 +14247,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/D2C4CA77C3478E1EF39D142D76E1F5F3EAB4744089A04D92B207C69522BFD41D', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/D2C4CA77C3478E1EF39D142D76E1F5F3EAB4744089A04D92B207C69522BFD41D', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-17' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -14253,6 +14320,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -14817,6 +14888,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -14904,6 +14979,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -14947,6 +15026,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/sommelier.ts b/packages/assets/src/mainnet/sommelier.ts index 9e9a560f1..37963f6df 100644 --- a/packages/assets/src/mainnet/sommelier.ts +++ b/packages/assets/src/mainnet/sommelier.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1485,6 +1489,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -1808,6 +1816,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2012,6 +2024,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -3433,6 +3449,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3476,7 +3496,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17045,6 +17069,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-165', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Stride', denom_units: [ @@ -17074,6 +17141,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/source.ts b/packages/assets/src/mainnet/source.ts index 78b747b16..051fee0ec 100644 --- a/packages/assets/src/mainnet/source.ts +++ b/packages/assets/src/mainnet/source.ts @@ -33,6 +33,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -76,7 +80,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13645,6 +13653,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8945', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/stafihub.ts b/packages/assets/src/mainnet/stafihub.ts index 2973e18e0..e048eb9e8 100644 --- a/packages/assets/src/mainnet/stafihub.ts +++ b/packages/assets/src/mainnet/stafihub.ts @@ -332,6 +332,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -514,6 +518,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1935,6 +1943,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1978,7 +1990,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15547,6 +15563,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/8BD3EB6ABBD8DC8B1BA1F2E58CDFBAACFF8CF55DB8C475E9D6D97B9A56B052F0', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5413', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ @@ -15576,6 +15635,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/stargaze.ts b/packages/assets/src/mainnet/stargaze.ts index 71c7820b0..831ff2d97 100644 --- a/packages/assets/src/mainnet/stargaze.ts +++ b/packages/assets/src/mainnet/stargaze.ts @@ -727,6 +727,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -988,6 +992,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -1996,6 +2004,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -2214,6 +2226,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4118,6 +4134,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -5524,6 +5544,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5567,7 +5591,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19136,6 +19164,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-75', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19166,6 +19237,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -19729,6 +19804,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -19987,6 +20066,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20030,6 +20113,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -20575,6 +20662,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/starname.ts b/packages/assets/src/mainnet/starname.ts index 1dfe3c842..b12867731 100644 --- a/packages/assets/src/mainnet/starname.ts +++ b/packages/assets/src/mainnet/starname.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -262,6 +270,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -351,6 +363,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -394,7 +410,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13963,6 +13983,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/895D502280E6C6EB4DCD6F5591231DAC2072890F67D5422BD5004D0747496F3B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -13993,6 +14056,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -14557,6 +14624,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -14644,6 +14715,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/stride.ts b/packages/assets/src/mainnet/stride.ts index d311557a1..591270fd8 100644 --- a/packages/assets/src/mainnet/stride.ts +++ b/packages/assets/src/mainnet/stride.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -248,6 +252,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2211,6 +2219,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -2397,6 +2409,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2571,6 +2587,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2800,6 +2820,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -2894,6 +2918,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -2938,6 +2966,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -3116,6 +3148,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -3439,6 +3475,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -3642,6 +3682,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -3860,6 +3904,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -5279,6 +5327,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -6467,6 +6519,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -6510,7 +6566,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -20079,6 +20139,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B2E3380E03B739BC96CC2DFE1A0A92C73A32649B85FA75C34D3AFE830E4475AA', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-326', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -20109,6 +20212,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -20673,6 +20780,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20716,6 +20827,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -20983,6 +21098,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -21026,6 +21145,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -21295,6 +21418,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/teritori.ts b/packages/assets/src/mainnet/teritori.ts index e1d6db33b..427419baa 100644 --- a/packages/assets/src/mainnet/teritori.ts +++ b/packages/assets/src/mainnet/teritori.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -169,6 +173,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -1765,6 +1773,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -1808,7 +1820,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -15377,6 +15393,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-362', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -15406,6 +15465,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/terra.ts b/packages/assets/src/mainnet/terra.ts index ea2b47366..1b9f2ff85 100644 --- a/packages/assets/src/mainnet/terra.ts +++ b/packages/assets/src/mainnet/terra.ts @@ -246,6 +246,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -465,6 +469,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -508,7 +516,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14077,6 +14089,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-72', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -14106,6 +14161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -14149,6 +14208,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/terra2.ts b/packages/assets/src/mainnet/terra2.ts index c1c60e718..838bfc77b 100644 --- a/packages/assets/src/mainnet/terra2.ts +++ b/packages/assets/src/mainnet/terra2.ts @@ -161,6 +161,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -297,6 +301,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -439,6 +447,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2402,6 +2414,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -2617,6 +2633,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -2889,6 +2909,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -3025,6 +3049,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -3348,6 +3376,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -3551,6 +3583,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -3768,6 +3804,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -3985,6 +4025,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -5404,6 +5448,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -5932,6 +5980,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -7295,6 +7347,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -7338,7 +7394,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -20907,6 +20967,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/A7CECF797C590E4BF95655636742C8C10EC3FFB88062D600087EF2DF91196C2B', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-251', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -20936,6 +21039,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -21184,6 +21291,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -21453,6 +21564,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/tgrade.ts b/packages/assets/src/mainnet/tgrade.ts index ab970d14e..c33673b5f 100644 --- a/packages/assets/src/mainnet/tgrade.ts +++ b/packages/assets/src/mainnet/tgrade.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -211,6 +215,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -254,7 +262,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13822,6 +13834,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-263', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/umee.ts b/packages/assets/src/mainnet/umee.ts index 53dacf946..1c835b872 100644 --- a/packages/assets/src/mainnet/umee.ts +++ b/packages/assets/src/mainnet/umee.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -265,6 +273,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1718,6 +1730,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -1761,6 +1777,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -1990,6 +2010,10 @@ const assets: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -2084,6 +2108,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -2407,6 +2435,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -2610,6 +2642,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -3488,6 +3524,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -3531,7 +3571,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -17100,6 +17144,49 @@ const assets: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-184', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -17130,6 +17217,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -17693,6 +17784,10 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -17951,6 +18046,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -18038,6 +18137,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -18081,6 +18184,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/unification.ts b/packages/assets/src/mainnet/unification.ts index 5c6b8d436..351481bb8 100644 --- a/packages/assets/src/mainnet/unification.ts +++ b/packages/assets/src/mainnet/unification.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -462,6 +466,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -505,7 +513,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14073,6 +14085,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-382', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/uptick.ts b/packages/assets/src/mainnet/uptick.ts index 72f0bca40..a493a205c 100644 --- a/packages/assets/src/mainnet/uptick.ts +++ b/packages/assets/src/mainnet/uptick.ts @@ -31,6 +31,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', diff --git a/packages/assets/src/mainnet/vidulum.ts b/packages/assets/src/mainnet/vidulum.ts index 6061d9910..92c9bcd05 100644 --- a/packages/assets/src/mainnet/vidulum.ts +++ b/packages/assets/src/mainnet/vidulum.ts @@ -35,6 +35,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -220,6 +224,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -263,7 +271,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -13831,6 +13843,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-124', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/xpla.ts b/packages/assets/src/mainnet/xpla.ts index 0521ec20a..783d72a2e 100644 --- a/packages/assets/src/mainnet/xpla.ts +++ b/packages/assets/src/mainnet/xpla.ts @@ -32,6 +32,10 @@ const assets: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -355,6 +359,10 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -560,6 +568,10 @@ const assets: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -603,7 +615,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -14171,6 +14187,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0CDEE78E2B10D0137FE9BC50A6EB634D52C9FD678FA42A556E8D3475C176F4D9', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1634', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ] } ] }; diff --git a/packages/assets/src/noncosmos/picasso.ts b/packages/assets/src/noncosmos/picasso.ts index 302d87d53..c199dc68a 100644 --- a/packages/assets/src/noncosmos/picasso.ts +++ b/packages/assets/src/noncosmos/picasso.ts @@ -45,6 +45,10 @@ const assets: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { diff --git a/packages/assets/src/testnet/axelartestnet.ts b/packages/assets/src/testnet/axelartestnet.ts index 9c63bc665..393ee09ba 100644 --- a/packages/assets/src/testnet/axelartestnet.ts +++ b/packages/assets/src/testnet/axelartestnet.ts @@ -91,7 +91,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/D0760CFDA2FE5D16DA23234E87519AB9A6601DCC242B6D18A55A092ED945B5BB', + 'ibc/40BDF4D1CFC245BA82B7F75833B27E7BEDE1ED37D061085E9ED629B6AE67699A', exponent: 0, aliases: ['ulava'] }, @@ -100,7 +100,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/D0760CFDA2FE5D16DA23234E87519AB9A6601DCC242B6D18A55A092ED945B5BB', + base: 'ibc/40BDF4D1CFC245BA82B7F75833B27E7BEDE1ED37D061085E9ED629B6AE67699A', name: 'LAVA', display: 'lava', symbol: 'LAVA', @@ -117,12 +117,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-1', + channel_id: 'channel-4', base_denom: 'ulava', chain_name: 'lavatestnet2' }, chain: { - channel_id: 'channel-418' + channel_id: 'channel-444' } } ] diff --git a/packages/assets/src/testnet/lavatestnet2.ts b/packages/assets/src/testnet/lavatestnet2.ts index b70e2ee91..c47d58deb 100644 --- a/packages/assets/src/testnet/lavatestnet2.ts +++ b/packages/assets/src/testnet/lavatestnet2.ts @@ -7,7 +7,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + 'ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E', exponent: 0, aliases: ['uaxl'] }, @@ -16,7 +16,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + base: 'ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E', name: 'Axelar', display: 'axl', symbol: 'AXL', @@ -35,12 +35,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'uaxl', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ] @@ -50,7 +50,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + 'ibc/3D3E77333E4AAE1BCE0F03BEDA9A538166D113AF1B60EB1C35365D03506F07F4', exponent: 0, aliases: ['uausdc'] }, @@ -59,7 +59,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/4BDF2D63B8FFE3454AF30E9BC10D2D7979BD3A938D989889ABC94FC5B86F1E2D', + base: 'ibc/3D3E77333E4AAE1BCE0F03BEDA9A538166D113AF1B60EB1C35365D03506F07F4', name: 'USD Coin', display: 'ausdc', symbol: 'aUSDC', @@ -67,12 +67,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'uausdc', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -94,7 +94,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + 'ibc/9BE75CAB3126DA45896BBA7CC269199120F7E7B256E6EA07A57D20007042AD50', exponent: 0, aliases: ['eth-wei'] }, @@ -103,7 +103,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/13F73121EEA6CAA0DF51B06F64C39FD55EF394C64223881569DFA5628FA1288D', + base: 'ibc/9BE75CAB3126DA45896BBA7CC269199120F7E7B256E6EA07A57D20007042AD50', name: 'Wrapped Ether', display: 'weth', symbol: 'axlWETH', @@ -111,12 +111,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'eth-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -138,7 +138,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + 'ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673', exponent: 0, aliases: ['wglmr-wei'] }, @@ -147,7 +147,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + base: 'ibc/A7C06A800850847DBCC36213185EC5AAD3C719D42D1F0623F9C1F9EFF456F673', name: 'Wrapped Moonbeam', display: 'wglmr', symbol: 'WDEV', @@ -155,12 +155,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'wglmr-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -182,7 +182,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + 'ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950', exponent: 0, aliases: ['wmatic-wei'] }, @@ -191,7 +191,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + base: 'ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950', name: 'Wrapped Matic', display: 'wmatic', symbol: 'WMATIC', @@ -199,12 +199,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'wmatic-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -226,7 +226,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + 'ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391', exponent: 0, aliases: ['wbnb-wei'] }, @@ -235,7 +235,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + base: 'ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391', name: 'Wrapped BNB', display: 'wbnb', symbol: 'WBNB', @@ -243,12 +243,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'wbnb-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -272,7 +272,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + 'ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453', exponent: 0, aliases: ['wavax-wei'] }, @@ -281,7 +281,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + base: 'ibc/0886E3462B7DD438353781848DBDF90E58BB7DE90266E3F95E41B3FA8ED1B453', name: 'Wrapped AVAX', display: 'avax', symbol: 'WAVAX', @@ -289,12 +289,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'wavax-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -316,7 +316,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + 'ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B', exponent: 0, aliases: ['wftm-wei'] }, @@ -325,7 +325,7 @@ const assets: AssetList = { exponent: 18 } ], - base: 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + base: 'ibc/23B62EFD1B9444733889B42362570C774801430A1C656A0A3F8D6D69AE93ED8B', name: 'Wrapped FTM', display: 'ftm', symbol: 'WFTM', @@ -333,12 +333,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-418', + channel_id: 'channel-444', base_denom: 'wftm-wei', chain_name: 'axelartestnet' }, chain: { - channel_id: 'channel-1' + channel_id: 'channel-4' } } ], @@ -360,7 +360,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + 'ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34', exponent: 0, aliases: ['uosmo'] }, @@ -370,7 +370,7 @@ const assets: AssetList = { aliases: [] } ], - base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + base: 'ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34', name: 'Osmosis', display: 'osmo', symbol: 'OSMO', @@ -390,12 +390,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', base_denom: 'uosmo', chain_name: 'osmosistestnet' }, chain: { - channel_id: 'channel-0' + channel_id: 'channel-5' } } ] @@ -404,7 +404,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + 'ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206', exponent: 0, aliases: ['uion'] }, @@ -413,7 +413,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + base: 'ibc/07F71BEE7FA84450268B4F6895417F12FBCD1792B57C98431F5210E42117B206', name: 'Ion', display: 'ion', symbol: 'ION', @@ -433,12 +433,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', base_denom: 'uion', chain_name: 'osmosistestnet' }, chain: { - channel_id: 'channel-0' + channel_id: 'channel-5' } } ] @@ -447,7 +447,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/BB012F1C95C818F6C959D638595984F4D3916F89E1C159FF73F6B130E0ADFD33', + 'ibc/2AF7705A55E0F95B225AEFEEE2178AD8AA078B12F2A75DA3D49175C0B80BD99F', exponent: 0, aliases: [ 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz' @@ -458,7 +458,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/BB012F1C95C818F6C959D638595984F4D3916F89E1C159FF73F6B130E0ADFD33', + base: 'ibc/2AF7705A55E0F95B225AEFEEE2178AD8AA078B12F2A75DA3D49175C0B80BD99F', name: 'Willyz', display: 'willyz', symbol: 'WILLYZ', @@ -477,13 +477,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', base_denom: 'factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz', chain_name: 'osmosistestnet' }, chain: { - channel_id: 'channel-0' + channel_id: 'channel-5' } } ] @@ -494,7 +494,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + 'ibc/D9876BE0B909BD4E05CFB8100868110A81E45C162BAE719B1E1F647DF7164426', exponent: 0, aliases: [ 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6' @@ -516,7 +516,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/D1BA075F454C7F028C905EB998BFADDA312AE3B58C967C546FFBCF598A69BF07', + base: 'ibc/D9876BE0B909BD4E05CFB8100868110A81E45C162BAE719B1E1F647DF7164426', name: 'tkx', display: 'tkx', symbol: 'TKX', @@ -524,13 +524,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', base_denom: 'ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6', chain_name: 'osmosistestnet' }, chain: { - channel_id: 'channel-0' + channel_id: 'channel-5' } } ], @@ -548,7 +548,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + 'ibc/85E497413C92605462CC76325F2AC3E757FFF4E2F5854BF577B9AFE250C76A2A', exponent: 0, aliases: [ 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0' @@ -560,7 +560,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/C2586682E30B1DA0526FD970CE363420B567CADAD0F4609209D469B4196D243A', + base: 'ibc/85E497413C92605462CC76325F2AC3E757FFF4E2F5854BF577B9AFE250C76A2A', name: 'USD Coin (Axelar)', display: 'ausdc', symbol: 'aUSDC.axl', @@ -568,13 +568,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', base_denom: 'ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0', chain_name: 'osmosistestnet' }, chain: { - channel_id: 'channel-0' + channel_id: 'channel-5' } } ], diff --git a/packages/assets/src/testnet/osmosistestnet.ts b/packages/assets/src/testnet/osmosistestnet.ts index 84415c861..3ac774274 100644 --- a/packages/assets/src/testnet/osmosistestnet.ts +++ b/packages/assets/src/testnet/osmosistestnet.ts @@ -998,7 +998,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/D547C68046B6AAF0172FB2851A3A7A23EC47269E8CC44189BDF0139D88C3B5DF', + 'ibc/6E2853D2B0D521D6CD05CFD8597251AD5CC8E3B4141701311679944753A4A03F', exponent: 0, aliases: ['ulava'] }, @@ -1007,7 +1007,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/D547C68046B6AAF0172FB2851A3A7A23EC47269E8CC44189BDF0139D88C3B5DF', + base: 'ibc/6E2853D2B0D521D6CD05CFD8597251AD5CC8E3B4141701311679944753A4A03F', name: 'LAVA', display: 'lava', symbol: 'LAVA', @@ -1024,12 +1024,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-0', + channel_id: 'channel-5', base_denom: 'ulava', chain_name: 'lavatestnet2' }, chain: { - channel_id: 'channel-5286' + channel_id: 'channel-6092' } } ] diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index 61cf3a445..4eddc79f5 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit 61cf3a44505d5d9b3a4a0076ada0879f89c4af13 +Subproject commit 4eddc79f5a993d7d2d8b76376b92e46a4809d458 diff --git a/packages/chain-registry/src/mainnet/agoric/assets.ts b/packages/chain-registry/src/mainnet/agoric/assets.ts index 23976d46f..039065cb7 100644 --- a/packages/chain-registry/src/mainnet/agoric/assets.ts +++ b/packages/chain-registry/src/mainnet/agoric/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } - ] + ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/aioz/chain.ts b/packages/chain-registry/src/mainnet/aioz/chain.ts index 9df6c69ee..b8916999a 100644 --- a/packages/chain-registry/src/mainnet/aioz/chain.ts +++ b/packages/chain-registry/src/mainnet/aioz/chain.ts @@ -17,10 +17,10 @@ const info: Chain = { fee_tokens: [ { denom: 'attoaioz', - fixed_min_gas_price: 1000000000, - low_gas_price: 1000000000, - average_gas_price: 1000000000, - high_gas_price: 1500000000 + fixed_min_gas_price: 7000000000, + low_gas_price: 7000000000, + average_gas_price: 7000000000, + high_gas_price: 10000000000 } ] }, diff --git a/packages/chain-registry/src/mainnet/akash/assets.ts b/packages/chain-registry/src/mainnet/akash/assets.ts index 2dbfd32ee..7d2aa9a61 100644 --- a/packages/chain-registry/src/mainnet/akash/assets.ts +++ b/packages/chain-registry/src/mainnet/akash/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } - ] + ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + } }, { description: 'Tether USDt on Akash', diff --git a/packages/chain-registry/src/mainnet/archway/assets.ts b/packages/chain-registry/src/mainnet/archway/assets.ts index e025f7b69..b7c49c218 100644 --- a/packages/chain-registry/src/mainnet/archway/assets.ts +++ b/packages/chain-registry/src/mainnet/archway/assets.ts @@ -33,7 +33,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } - ] + ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + } }, { description: 'ERIS liquid staked ARCH', diff --git a/packages/chain-registry/src/mainnet/archway/ibc.ts b/packages/chain-registry/src/mainnet/archway/ibc.ts index afe9bb8fb..45522f8ac 100644 --- a/packages/chain-registry/src/mainnet/archway/ibc.ts +++ b/packages/chain-registry/src/mainnet/archway/ibc.ts @@ -242,6 +242,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'archway', + client_id: '07-tendermint-91', + connection_id: 'connection-89' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-39', + connection_id: 'connection-30' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-45', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts b/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts index c776c4271..35c96dba7 100644 --- a/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/archway/ibc_chain1.ts @@ -153,6 +153,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'archway', + client_id: '07-tendermint-91', + connection_id: 'connection-89' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-39', + connection_id: 'connection-30' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-45', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/assetmantle/assets.ts b/packages/chain-registry/src/mainnet/assetmantle/assets.ts index f6adfcf3e..3bef2bf9a 100644 --- a/packages/chain-registry/src/mainnet/assetmantle/assets.ts +++ b/packages/chain-registry/src/mainnet/assetmantle/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } - ] + ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/axelar/assets.ts b/packages/chain-registry/src/mainnet/axelar/assets.ts index 1ee2b88a8..e1777d86b 100644 --- a/packages/chain-registry/src/mainnet/axelar/assets.ts +++ b/packages/chain-registry/src/mainnet/axelar/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } - ] + ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + } }, { description: "Circle's stablecoin on Axelar", diff --git a/packages/chain-registry/src/mainnet/bandchain/assets.ts b/packages/chain-registry/src/mainnet/bandchain/assets.ts index f0c8fa623..0adac8a19 100644 --- a/packages/chain-registry/src/mainnet/bandchain/assets.ts +++ b/packages/chain-registry/src/mainnet/bandchain/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' } - ] + ], + socials: { + webiste: 'https://www.bandprotocol.com/', + twitter: 'https://twitter.com/BandProtocol' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/bitsong/assets.ts b/packages/chain-registry/src/mainnet/bitsong/assets.ts index 5dee1e6db..5b117dc3f 100644 --- a/packages/chain-registry/src/mainnet/bitsong/assets.ts +++ b/packages/chain-registry/src/mainnet/bitsong/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } - ] + ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + } }, { description: 'Adam Clay a BitSong Music FanToken', diff --git a/packages/chain-registry/src/mainnet/celestia/assets.ts b/packages/chain-registry/src/mainnet/celestia/assets.ts index 5f7e5c918..bb72c2e82 100644 --- a/packages/chain-registry/src/mainnet/celestia/assets.ts +++ b/packages/chain-registry/src/mainnet/celestia/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg', png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } - ] + ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/chain4energy/assets.ts b/packages/chain-registry/src/mainnet/chain4energy/assets.ts index 3c5ed1ff9..5738a8a11 100644 --- a/packages/chain-registry/src/mainnet/chain4energy/assets.ts +++ b/packages/chain-registry/src/mainnet/chain4energy/assets.ts @@ -27,7 +27,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' } - ] + ], + socials: { + webiste: 'https://c4e.io/', + twitter: 'https://twitter.com/Chain4Energy' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/chain4energy/chain.ts b/packages/chain-registry/src/mainnet/chain4energy/chain.ts index e35a5da1d..47d4da824 100644 --- a/packages/chain-registry/src/mainnet/chain4energy/chain.ts +++ b/packages/chain-registry/src/mainnet/chain4energy/chain.ts @@ -49,7 +49,7 @@ const info: Chain = { provider: 'AutoStake 🛡️ Slash Protected' }, { - address: 'http://c4e.rpc.m.stavr.tech:17097', + address: 'https://c4e.rpc.m.stavr.tech:443', provider: '🔥STAVR🔥' }, { diff --git a/packages/chain-registry/src/mainnet/cifer/chain.ts b/packages/chain-registry/src/mainnet/cifer/chain.ts index e6bdb4ee5..b66793866 100644 --- a/packages/chain-registry/src/mainnet/cifer/chain.ts +++ b/packages/chain-registry/src/mainnet/cifer/chain.ts @@ -34,8 +34,18 @@ const info: Chain = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' }, apis: { - rpc: [], - rest: [] + rpc: [ + { + address: 'https://cif_node.cifer.ai/', + provider: 'Cifer' + } + ], + rest: [ + { + address: 'https://api.cifer.ai', + provider: 'Cifer' + } + ] }, explorers: [ { diff --git a/packages/chain-registry/src/mainnet/composable/assets.ts b/packages/chain-registry/src/mainnet/composable/assets.ts index d585b358f..e1a663f12 100644 --- a/packages/chain-registry/src/mainnet/composable/assets.ts +++ b/packages/chain-registry/src/mainnet/composable/assets.ts @@ -41,6 +41,10 @@ const info: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { diff --git a/packages/chain-registry/src/mainnet/cosmoshub/assets.ts b/packages/chain-registry/src/mainnet/cosmoshub/assets.ts index 4ad5030af..f0f8a08f9 100644 --- a/packages/chain-registry/src/mainnet/cosmoshub/assets.ts +++ b/packages/chain-registry/src/mainnet/cosmoshub/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } - ] + ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + } }, { description: 'Tether USDt on the Cosmos Hub', diff --git a/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts b/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts index d498ad5d0..8b29bb2d7 100644 --- a/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts +++ b/packages/chain-registry/src/mainnet/cryptoorgchain/assets.ts @@ -31,7 +31,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } - ] + ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/dydx/assets.ts b/packages/chain-registry/src/mainnet/dydx/assets.ts index 1901bf41a..a07fae592 100644 --- a/packages/chain-registry/src/mainnet/dydx/assets.ts +++ b/packages/chain-registry/src/mainnet/dydx/assets.ts @@ -35,7 +35,11 @@ const info: AssetList = { circle: true } } - ] + ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + } }, { description: 'Noble USDC on dYdX Protocol.', diff --git a/packages/chain-registry/src/mainnet/dymension/assets.ts b/packages/chain-registry/src/mainnet/dymension/assets.ts index 6c35832c1..c7bf6d36a 100644 --- a/packages/chain-registry/src/mainnet/dymension/assets.ts +++ b/packages/chain-registry/src/mainnet/dymension/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } - ] + ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/dymension/ibc.ts b/packages/chain-registry/src/mainnet/dymension/ibc.ts index cacda5b4f..a061c5a00 100644 --- a/packages/chain-registry/src/mainnet/dymension/ibc.ts +++ b/packages/chain-registry/src/mainnet/dymension/ibc.ts @@ -1,5 +1,36 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'archway', + client_id: '07-tendermint-91', + connection_id: 'connection-89' + }, + chain_2: { + chain_name: 'dymension', + client_id: '07-tendermint-39', + connection_id: 'connection-30' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-123', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-45', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/evmos/assets.ts b/packages/chain-registry/src/mainnet/evmos/assets.ts index 713bc07c0..211203c4d 100644 --- a/packages/chain-registry/src/mainnet/evmos/assets.ts +++ b/packages/chain-registry/src/mainnet/evmos/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } - ] + ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + } }, { description: 'Tether USDt on Evmos', diff --git a/packages/chain-registry/src/mainnet/gitopia/assets.ts b/packages/chain-registry/src/mainnet/gitopia/assets.ts index 420134291..51aaa535c 100644 --- a/packages/chain-registry/src/mainnet/gitopia/assets.ts +++ b/packages/chain-registry/src/mainnet/gitopia/assets.ts @@ -32,7 +32,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' } ], - coingecko_id: 'gitopia' + coingecko_id: 'gitopia', + socials: { + webiste: 'https://gitopia.com/', + twitter: 'https://twitter.com/gitopiaDAO' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/gravitybridge/assets.ts b/packages/chain-registry/src/mainnet/gravitybridge/assets.ts index 3ccb3a4f7..6edbc7904 100644 --- a/packages/chain-registry/src/mainnet/gravitybridge/assets.ts +++ b/packages/chain-registry/src/mainnet/gravitybridge/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } - ] + ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/humans/assets.ts b/packages/chain-registry/src/mainnet/humans/assets.ts index 1604d9b53..61ef1cdc2 100644 --- a/packages/chain-registry/src/mainnet/humans/assets.ts +++ b/packages/chain-registry/src/mainnet/humans/assets.ts @@ -39,7 +39,11 @@ const info: AssetList = { dark_mode: true } } - ] + ], + socials: { + webiste: 'https://humans.ai/', + twitter: 'https://twitter.com/humansdotai' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/injective/assets.ts b/packages/chain-registry/src/mainnet/injective/assets.ts index 65f006c76..d1f8ac6f9 100644 --- a/packages/chain-registry/src/mainnet/injective/assets.ts +++ b/packages/chain-registry/src/mainnet/injective/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } - ] + ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + } }, { description: 'Tether USDt on Injective', @@ -267,6 +271,10 @@ const info: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { diff --git a/packages/chain-registry/src/mainnet/juno/assets.ts b/packages/chain-registry/src/mainnet/juno/assets.ts index 4fa178a27..ef7273470 100644 --- a/packages/chain-registry/src/mainnet/juno/assets.ts +++ b/packages/chain-registry/src/mainnet/juno/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } - ] + ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + } }, { denom_units: [ diff --git a/packages/chain-registry/src/mainnet/kava/assets.ts b/packages/chain-registry/src/mainnet/kava/assets.ts index bfb8f1c64..0f7b88189 100644 --- a/packages/chain-registry/src/mainnet/kava/assets.ts +++ b/packages/chain-registry/src/mainnet/kava/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } - ] + ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + } }, { description: 'Governance token of Kava Lend Protocol', diff --git a/packages/chain-registry/src/mainnet/kujira/assets.ts b/packages/chain-registry/src/mainnet/kujira/assets.ts index f43bf8567..d5e82878d 100644 --- a/packages/chain-registry/src/mainnet/kujira/assets.ts +++ b/packages/chain-registry/src/mainnet/kujira/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } - ] + ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/kyve/assets.ts b/packages/chain-registry/src/mainnet/kyve/assets.ts index 65432a61a..e275bceca 100644 --- a/packages/chain-registry/src/mainnet/kyve/assets.ts +++ b/packages/chain-registry/src/mainnet/kyve/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' } - ] + ], + socials: { + webiste: 'https://www.kyve.network/', + twitter: 'https://twitter.com/KYVENetwork' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/mars/assets.ts b/packages/chain-registry/src/mainnet/mars/assets.ts index 341011b1d..a58eb05e9 100644 --- a/packages/chain-registry/src/mainnet/mars/assets.ts +++ b/packages/chain-registry/src/mainnet/mars/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } - ] + ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/neutron/assets.ts b/packages/chain-registry/src/mainnet/neutron/assets.ts index ac12f072f..019e07d6b 100644 --- a/packages/chain-registry/src/mainnet/neutron/assets.ts +++ b/packages/chain-registry/src/mainnet/neutron/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } - ] + ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + } }, { description: 'IBC uatom through cosmoshub-4 transfer/channel-1', diff --git a/packages/chain-registry/src/mainnet/nibiru/chain.ts b/packages/chain-registry/src/mainnet/nibiru/chain.ts index bb408b6ef..4288d70ee 100644 --- a/packages/chain-registry/src/mainnet/nibiru/chain.ts +++ b/packages/chain-registry/src/mainnet/nibiru/chain.ts @@ -34,7 +34,7 @@ const info: Chain = { } }, codebase: { - cosmos_sdk_version: 'v0.47.7', + cosmos_sdk_version: 'v0.47.10', cosmwasm_enabled: true, cosmwasm_version: 'v0.44.0' }, diff --git a/packages/chain-registry/src/mainnet/nois/chain.ts b/packages/chain-registry/src/mainnet/nois/chain.ts index 31c7c836f..fe550be58 100644 --- a/packages/chain-registry/src/mainnet/nois/chain.ts +++ b/packages/chain-registry/src/mainnet/nois/chain.ts @@ -118,6 +118,10 @@ const info: Chain = { { address: 'https://nois-rpc.stakeandrelax.net', provider: 'Stake&Relax 🦥' + }, + { + address: 'https://rpc.nois.cumulo.org.es', + provider: 'Cumulo' } ], grpc: [ @@ -188,6 +192,10 @@ const info: Chain = { { address: 'nois-grpc.stakeandrelax.net:17390', provider: 'Stake&Relax 🦥' + }, + { + address: 'grpc.nois.cumulo.org.es:443', + provider: 'Cumulo' } ], rest: [ @@ -242,6 +250,10 @@ const info: Chain = { { address: 'https://nois-api.stakeandrelax.net', provider: 'Stake&Relax 🦥' + }, + { + address: 'https://api.nois.cumulo.org.es', + provider: 'Cumulo' } ] }, diff --git a/packages/chain-registry/src/mainnet/nolus/assets.ts b/packages/chain-registry/src/mainnet/nolus/assets.ts index f14501056..51d149cef 100644 --- a/packages/chain-registry/src/mainnet/nolus/assets.ts +++ b/packages/chain-registry/src/mainnet/nolus/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } - ] + ], + socials: { + webiste: 'https://nolus.io/', + twitter: 'https://twitter.com/NolusProtocol' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/omniflixhub/assets.ts b/packages/chain-registry/src/mainnet/omniflixhub/assets.ts index 3ff90f29d..41bff9955 100644 --- a/packages/chain-registry/src/mainnet/omniflixhub/assets.ts +++ b/packages/chain-registry/src/mainnet/omniflixhub/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } - ] + ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + } }, { denom_units: [ diff --git a/packages/chain-registry/src/mainnet/osmosis/assets.ts b/packages/chain-registry/src/mainnet/osmosis/assets.ts index d1c8c126c..e410e0770 100644 --- a/packages/chain-registry/src/mainnet/osmosis/assets.ts +++ b/packages/chain-registry/src/mainnet/osmosis/assets.ts @@ -31,7 +31,11 @@ const info: AssetList = { } ], coingecko_id: 'osmosis', - keywords: ['dex', 'staking'] + keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + } }, { denom_units: [ @@ -60,7 +64,11 @@ const info: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'] + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + } }, { description: "Circle's stablecoin on Axelar", @@ -14105,6 +14113,33 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + exponent: 0 + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/persistence/assets.ts b/packages/chain-registry/src/mainnet/persistence/assets.ts index 0d8e42377..8c3738950 100644 --- a/packages/chain-registry/src/mainnet/persistence/assets.ts +++ b/packages/chain-registry/src/mainnet/persistence/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } - ] + ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + } }, { description: 'PSTAKE Liquid-Staked ATOM', diff --git a/packages/chain-registry/src/mainnet/pylons/assets.ts b/packages/chain-registry/src/mainnet/pylons/assets.ts index abaf655e2..f6207c0c6 100644 --- a/packages/chain-registry/src/mainnet/pylons/assets.ts +++ b/packages/chain-registry/src/mainnet/pylons/assets.ts @@ -26,7 +26,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' } - ] + ], + socials: { + webiste: 'https://pylons.tech', + twitter: 'https://twitter.com/pylonstech' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/quasar/assets.ts b/packages/chain-registry/src/mainnet/quasar/assets.ts index e9ab2e2de..e754fd66c 100644 --- a/packages/chain-registry/src/mainnet/quasar/assets.ts +++ b/packages/chain-registry/src/mainnet/quasar/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' } - ] + ], + socials: { + webiste: 'https://www.quasar.fi/', + twitter: 'https://twitter.com/QuasarFi' + } }, { description: 'OSMO from Osmosis', diff --git a/packages/chain-registry/src/mainnet/quicksilver/assets.ts b/packages/chain-registry/src/mainnet/quicksilver/assets.ts index 762e1dc75..b73b185f3 100644 --- a/packages/chain-registry/src/mainnet/quicksilver/assets.ts +++ b/packages/chain-registry/src/mainnet/quicksilver/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } - ] + ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + } }, { description: 'Quicksilver Liquid Staked STARS', diff --git a/packages/chain-registry/src/mainnet/regen/assets.ts b/packages/chain-registry/src/mainnet/regen/assets.ts index 50a819ea5..4109a52ac 100644 --- a/packages/chain-registry/src/mainnet/regen/assets.ts +++ b/packages/chain-registry/src/mainnet/regen/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } - ] + ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/secretnetwork/assets.ts b/packages/chain-registry/src/mainnet/secretnetwork/assets.ts index 940041ebe..911631459 100644 --- a/packages/chain-registry/src/mainnet/secretnetwork/assets.ts +++ b/packages/chain-registry/src/mainnet/secretnetwork/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } - ] + ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + } }, { description: 'The native token cw20 for SIENNA on Secret Network', diff --git a/packages/chain-registry/src/mainnet/sei/assets.ts b/packages/chain-registry/src/mainnet/sei/assets.ts index 074c11aa7..c56acb391 100644 --- a/packages/chain-registry/src/mainnet/sei/assets.ts +++ b/packages/chain-registry/src/mainnet/sei/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } - ] + ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + } }, { description: diff --git a/packages/chain-registry/src/mainnet/sentinel/assets.ts b/packages/chain-registry/src/mainnet/sentinel/assets.ts index 494215b4d..0cf2055c7 100644 --- a/packages/chain-registry/src/mainnet/sentinel/assets.ts +++ b/packages/chain-registry/src/mainnet/sentinel/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } - ] + ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/sommelier/assets.ts b/packages/chain-registry/src/mainnet/sommelier/assets.ts index 680e6d42e..aaf5e50b5 100644 --- a/packages/chain-registry/src/mainnet/sommelier/assets.ts +++ b/packages/chain-registry/src/mainnet/sommelier/assets.ts @@ -36,7 +36,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } - ] + ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/stargaze/assets.ts b/packages/chain-registry/src/mainnet/stargaze/assets.ts index 5a1dfba2d..ad588bb84 100644 --- a/packages/chain-registry/src/mainnet/stargaze/assets.ts +++ b/packages/chain-registry/src/mainnet/stargaze/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } - ] + ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + } }, { description: 'The native token of ohhNFT.', diff --git a/packages/chain-registry/src/mainnet/starname/assets.ts b/packages/chain-registry/src/mainnet/starname/assets.ts index 3fd9eccdb..9fecfc5bb 100644 --- a/packages/chain-registry/src/mainnet/starname/assets.ts +++ b/packages/chain-registry/src/mainnet/starname/assets.ts @@ -30,7 +30,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } - ] + ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + } } ] }; diff --git a/packages/chain-registry/src/mainnet/stride/assets.ts b/packages/chain-registry/src/mainnet/stride/assets.ts index f76d1e3d5..965757dfc 100644 --- a/packages/chain-registry/src/mainnet/stride/assets.ts +++ b/packages/chain-registry/src/mainnet/stride/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } - ] + ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + } }, { denom_units: [ diff --git a/packages/chain-registry/src/mainnet/terra2/assets.ts b/packages/chain-registry/src/mainnet/terra2/assets.ts index 3952789d2..25a9ab7e9 100644 --- a/packages/chain-registry/src/mainnet/terra2/assets.ts +++ b/packages/chain-registry/src/mainnet/terra2/assets.ts @@ -29,7 +29,11 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } - ] + ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + } }, { description: @@ -60,7 +64,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } - ] + ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + } }, { description: diff --git a/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts b/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts index 438a05057..53eff709a 100644 --- a/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts +++ b/packages/chain-registry/src/noncosmos/avalanchetestnet/assets.ts @@ -110,6 +110,49 @@ const info: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' } ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + type_asset: 'erc20', + address: '0x5425890298aed601595a70ab815c96711a31bc65', + denom_units: [ + { + denom: '0x5425890298aed601595a70ab815c96711a31bc65', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: '0x5425890298aed601595a70ab815c96711a31bc65', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'test-mintage', + counterparty: { + chain_name: 'avalanche', + base_denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E' + }, + provider: 'Circle' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'avalanche', + base_denom: '0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] } ] }; diff --git a/packages/chain-registry/src/noncosmos/ethereum/assets.ts b/packages/chain-registry/src/noncosmos/ethereum/assets.ts index a0246e31f..6ef39be64 100644 --- a/packages/chain-registry/src/noncosmos/ethereum/assets.ts +++ b/packages/chain-registry/src/noncosmos/ethereum/assets.ts @@ -509,7 +509,7 @@ const info: AssetList = { }, { description: - "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + 'sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one becomes eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.', type_asset: 'erc20', address: '0xac3e018457b222d93114458476f3e3416abbe38f', denom_units: [ diff --git a/packages/chain-registry/src/noncosmos/solana/assets.ts b/packages/chain-registry/src/noncosmos/solana/assets.ts index b8b872b24..9023e7f3a 100644 --- a/packages/chain-registry/src/noncosmos/solana/assets.ts +++ b/packages/chain-registry/src/noncosmos/solana/assets.ts @@ -1,6 +1,6 @@ import { AssetList } from '@chain-registry/types'; const info: AssetList = { - $schema: '../assetlist.schema.json', + $schema: '../../assetlist.schema.json', chain_name: 'solana', assets: [ { @@ -193,7 +193,11 @@ const info: AssetList = { { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bskt.png' } - ] + ], + socials: { + webiste: 'https://www.bskt.fi/', + twitter: 'https://twitter.com/bsktfi' + } } ] }; diff --git a/packages/chain-registry/src/testnet/assets.ts b/packages/chain-registry/src/testnet/assets.ts index 059eb41e4..c116234d7 100644 --- a/packages/chain-registry/src/testnet/assets.ts +++ b/packages/chain-registry/src/testnet/assets.ts @@ -88,6 +88,7 @@ import * as _ulastestnet from './ulastestnet'; import * as _uniontestnet from './uniontestnet'; import * as _upticktestnet from './upticktestnet'; import * as _vincechaintestnet from './vincechaintestnet'; +import * as _wardenprotocoltestnet from './wardenprotocoltestnet'; import * as _wavehashtestnet from './wavehashtestnet'; import * as _xiontestnet from './xiontestnet'; import * as _zetachaintestnet from './zetachaintestnet'; @@ -181,6 +182,7 @@ const assets: AssetList[] = [ _uniontestnet.assets, _upticktestnet.assets, _vincechaintestnet.assets, + _wardenprotocoltestnet.assets, _wavehashtestnet.assets, _xiontestnet.assets, _zetachaintestnet.assets diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts index 91747566e..0f93d42b3 100644 --- a/packages/chain-registry/src/testnet/axelartestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc.ts @@ -62,33 +62,32 @@ const info: IBCInfo[] = [ ] }, { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'axelartestnet', - client_id: '07-tendermint-823', - connection_id: 'connection-633' + client_id: '07-tendermint-855', + connection_id: 'connection-659' }, chain_2: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-4', - connection_id: 'connection-5' + client_id: '07-tendermint-10', + connection_id: 'connection-10' }, channels: [ { chain_1: { - channel_id: 'channel-418', + channel_id: 'channel-444', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-1', + channel_id: 'channel-4', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] diff --git a/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts index d9e80160c..f8a3060cc 100644 --- a/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/axelartestnet/ibc_chain1.ts @@ -32,33 +32,32 @@ const info: IBCInfo[] = [ ] }, { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'axelartestnet', - client_id: '07-tendermint-823', - connection_id: 'connection-633' + client_id: '07-tendermint-855', + connection_id: 'connection-659' }, chain_2: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-4', - connection_id: 'connection-5' + client_id: '07-tendermint-10', + connection_id: 'connection-10' }, channels: [ { chain_1: { - channel_id: 'channel-418', + channel_id: 'channel-444', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-1', + channel_id: 'channel-4', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] diff --git a/packages/chain-registry/src/testnet/chains.ts b/packages/chain-registry/src/testnet/chains.ts index e207516f5..6f9d12a6d 100644 --- a/packages/chain-registry/src/testnet/chains.ts +++ b/packages/chain-registry/src/testnet/chains.ts @@ -88,6 +88,7 @@ import * as _ulastestnet from './ulastestnet'; import * as _uniontestnet from './uniontestnet'; import * as _upticktestnet from './upticktestnet'; import * as _vincechaintestnet from './vincechaintestnet'; +import * as _wardenprotocoltestnet from './wardenprotocoltestnet'; import * as _wavehashtestnet from './wavehashtestnet'; import * as _xiontestnet from './xiontestnet'; import * as _zetachaintestnet from './zetachaintestnet'; @@ -181,6 +182,7 @@ const chains: Chain[] = [ _uniontestnet.chain, _upticktestnet.chain, _vincechaintestnet.chain, + _wardenprotocoltestnet.chain, _wavehashtestnet.chain, _xiontestnet.chain, _zetachaintestnet.chain diff --git a/packages/chain-registry/src/testnet/index.ts b/packages/chain-registry/src/testnet/index.ts index 36a224995..54792510b 100644 --- a/packages/chain-registry/src/testnet/index.ts +++ b/packages/chain-registry/src/testnet/index.ts @@ -86,6 +86,7 @@ export * as ulastestnet from './ulastestnet'; export * as uniontestnet from './uniontestnet'; export * as upticktestnet from './upticktestnet'; export * as vincechaintestnet from './vincechaintestnet'; +export * as wardenprotocoltestnet from './wardenprotocoltestnet'; export * as wavehashtestnet from './wavehashtestnet'; export * as xiontestnet from './xiontestnet'; export * as zetachaintestnet from './zetachaintestnet'; diff --git a/packages/chain-registry/src/testnet/lavatestnet2/ibc.ts b/packages/chain-registry/src/testnet/lavatestnet2/ibc.ts index a81a31423..5be1ff41b 100644 --- a/packages/chain-registry/src/testnet/lavatestnet2/ibc.ts +++ b/packages/chain-registry/src/testnet/lavatestnet2/ibc.ts @@ -1,65 +1,63 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'axelartestnet', - client_id: '07-tendermint-823', - connection_id: 'connection-633' + client_id: '07-tendermint-855', + connection_id: 'connection-659' }, chain_2: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-4', - connection_id: 'connection-5' + client_id: '07-tendermint-10', + connection_id: 'connection-10' }, channels: [ { chain_1: { - channel_id: 'channel-418', + channel_id: 'channel-444', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-1', + channel_id: 'channel-4', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] }, { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + client_id: '07-tendermint-11', + connection_id: 'connection-11' }, chain_2: { chain_name: 'osmosistestnet', - client_id: '07-tendermint-1890', - connection_id: 'connection-1852' + client_id: '07-tendermint-2554', + connection_id: 'connection-2401' }, channels: [ { chain_1: { - channel_id: 'channel-0', + channel_id: 'channel-5', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] diff --git a/packages/chain-registry/src/testnet/lavatestnet2/ibc_chain1.ts b/packages/chain-registry/src/testnet/lavatestnet2/ibc_chain1.ts index ee1767f35..98b80a220 100644 --- a/packages/chain-registry/src/testnet/lavatestnet2/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/lavatestnet2/ibc_chain1.ts @@ -1,33 +1,32 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + client_id: '07-tendermint-11', + connection_id: 'connection-11' }, chain_2: { chain_name: 'osmosistestnet', - client_id: '07-tendermint-1890', - connection_id: 'connection-1852' + client_id: '07-tendermint-2554', + connection_id: 'connection-2401' }, channels: [ { chain_1: { - channel_id: 'channel-0', + channel_id: 'channel-5', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] diff --git a/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts index 4383cfa2f..8bed5c217 100644 --- a/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/osmosistestnet/ibc.ts @@ -444,33 +444,32 @@ const info: IBCInfo[] = [ ] }, { - $schema: '../ibc_data.schema.json', + $schema: '../../ibc_data.schema.json', chain_1: { chain_name: 'lavatestnet2', - client_id: '07-tendermint-2', - connection_id: 'connection-3' + client_id: '07-tendermint-11', + connection_id: 'connection-11' }, chain_2: { chain_name: 'osmosistestnet', - client_id: '07-tendermint-1890', - connection_id: 'connection-1852' + client_id: '07-tendermint-2554', + connection_id: 'connection-2401' }, channels: [ { chain_1: { - channel_id: 'channel-0', + channel_id: 'channel-5', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5286', + channel_id: 'channel-6092', port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', tags: { status: 'live', - preferred: true, - dex: 'osmosis' + preferred: true } } ] diff --git a/packages/chain-registry/src/testnet/wardenprotocoltestnet/assets.ts b/packages/chain-registry/src/testnet/wardenprotocoltestnet/assets.ts new file mode 100644 index 000000000..4e3a1df06 --- /dev/null +++ b/packages/chain-registry/src/testnet/wardenprotocoltestnet/assets.ts @@ -0,0 +1,35 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'wardenprotocoltestnet', + assets: [ + { + description: 'The native token of Warden Protocol Testnet', + denom_units: [ + { + denom: 'uward', + exponent: 0 + }, + { + denom: 'ward', + exponent: 6 + } + ], + base: 'uward', + name: 'Ward', + display: 'ward', + symbol: 'WARD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/wardenprotocoltestnet/chain.ts b/packages/chain-registry/src/testnet/wardenprotocoltestnet/chain.ts new file mode 100644 index 000000000..140efd3f6 --- /dev/null +++ b/packages/chain-registry/src/testnet/wardenprotocoltestnet/chain.ts @@ -0,0 +1,70 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'wardenprotocoltestnet', + status: 'live', + network_type: 'testnet', + pretty_name: 'Warden Protocol Alfama Testnet', + chain_id: 'alfama', + bech32_prefix: 'warden', + daemon_name: 'wardend', + node_home: '$HOME/.warden', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'uward', + fixed_min_gas_price: 0.005, + low_gas_price: 0.01, + average_gas_price: 0.025, + high_gas_price: 0.03 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'uward' + } + ] + }, + codebase: { + cosmos_sdk_version: '0.50', + cosmwasm_enabled: false + }, + apis: { + rpc: [ + { + address: 'https://rpc.alfama.wardenprotocol.org/', + provider: 'Warden Protocol' + } + ], + rest: [ + { + address: 'https://rest.alfama.wardenprotocol.org/', + provider: 'Warden Protocol' + } + ], + grpc: [] + }, + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png' + }, + explorers: [ + { + kind: 'ping.pub', + url: 'https://warden-explorer.paranorm.pro/warden', + tx_page: 'https://warden-explorer.paranorm.pro/warden/tx/${txHash}', + account_page: + 'https://warden-explorer.paranorm.pro/warden/account/${accountAddress}' + } + ], + keywords: ['testnet'], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png' + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/wardenprotocoltestnet/index.ts b/packages/chain-registry/src/testnet/wardenprotocoltestnet/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/wardenprotocoltestnet/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/juno/src/asset_list.ts b/packages/juno/src/asset_list.ts index c1367612d..9d2dc0788 100644 --- a/packages/juno/src/asset_list.ts +++ b/packages/juno/src/asset_list.ts @@ -32,6 +32,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -123,6 +127,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -166,6 +174,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -1664,6 +1676,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -2744,6 +2760,10 @@ const asset_list: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -2918,6 +2938,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -3489,6 +3513,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -4908,6 +4936,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -5697,6 +5729,10 @@ const asset_list: AssetList = { ], coingecko_id: 'osmosis', keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, traces: [ { type: 'ibc', @@ -5740,7 +5776,11 @@ const asset_list: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'], + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, traces: [ { type: 'ibc', @@ -19309,6 +19349,49 @@ const asset_list: AssetList = { } ] }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19339,6 +19422,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -19902,6 +19989,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -20160,6 +20251,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -20247,6 +20342,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -20516,6 +20615,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -22168,6 +22271,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', diff --git a/packages/juno/src/assets.ts b/packages/juno/src/assets.ts index d51a45a40..e3793461e 100644 --- a/packages/juno/src/assets.ts +++ b/packages/juno/src/assets.ts @@ -29,7 +29,11 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } - ] + ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + } }, { denom_units: [ diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index 12bbf8100..676584d1a 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -204,6 +204,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' } ], + socials: { + webiste: 'https://agoric.com/', + twitter: 'https://twitter.com/agoric' + }, traces: [ { type: 'ibc', @@ -340,6 +344,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' } ], + socials: { + webiste: 'https://akash.network/', + twitter: 'https://twitter.com/akashnet_' + }, traces: [ { type: 'ibc', @@ -435,6 +443,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' } ], + socials: { + webiste: 'https://archway.io/', + twitter: 'https://twitter.com/archwayHQ' + }, traces: [ { type: 'ibc', @@ -619,6 +631,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' } ], + socials: { + webiste: 'https://www.assetmantle.one/', + twitter: 'https://twitter.com/AssetMantle' + }, traces: [ { type: 'ibc', @@ -705,6 +721,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' } ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, traces: [ { type: 'ibc', @@ -2158,6 +2178,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' } ], + socials: { + webiste: 'https://www.bandprotocol.com/', + twitter: 'https://twitter.com/BandProtocol' + }, traces: [ { type: 'ibc', @@ -2289,6 +2313,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' } ], + socials: { + webiste: 'https://bitsong.io/', + twitter: 'https://twitter.com/BitSongOfficial' + }, traces: [ { type: 'ibc', @@ -3857,6 +3885,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png' } ], + socials: { + webiste: 'https://celestia.org/', + twitter: 'https://twitter.com/CelestiaOrg' + }, traces: [ { type: 'ibc', @@ -3941,6 +3973,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chain4energy/images/c4e.png' } ], + socials: { + webiste: 'https://c4e.io/', + twitter: 'https://twitter.com/Chain4Energy' + }, traces: [ { type: 'ibc', @@ -4471,6 +4507,10 @@ const asset_list: AssetList = { ], logo_URIs: { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + socials: { + webiste: 'https://www.composable.finance/', + twitter: 'https://twitter.com/ComposableFin' } }, { @@ -4689,6 +4729,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' } ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, traces: [ { type: 'ibc', @@ -4914,6 +4958,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png' } ], + socials: { + webiste: 'https://cronos.org/', + twitter: 'https://twitter.com/cronos_chain' + }, traces: [ { type: 'ibc', @@ -5177,6 +5225,10 @@ const asset_list: AssetList = { } } ], + socials: { + webiste: 'https://dydx.trade/', + twitter: 'https://twitter.com/dYdX' + }, traces: [ { type: 'ibc', @@ -5271,6 +5323,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' } ], + socials: { + webiste: 'https://portal.dymension.xyz', + twitter: 'https://twitter.com/dymension' + }, traces: [ { type: 'ibc', @@ -5851,6 +5907,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' } ], + socials: { + webiste: 'https://evmos.org/', + twitter: 'https://twitter.com/EvmosOrg' + }, traces: [ { type: 'ibc', @@ -7162,6 +7222,10 @@ const asset_list: AssetList = { } ], coingecko_id: 'gitopia', + socials: { + webiste: 'https://gitopia.com/', + twitter: 'https://twitter.com/gitopiaDAO' + }, traces: [ { type: 'ibc', @@ -7205,6 +7269,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' } ], + socials: { + webiste: 'https://www.gravitybridge.net/', + twitter: 'https://twitter.com/gravity_bridge' + }, traces: [ { type: 'ibc', @@ -7688,6 +7756,10 @@ const asset_list: AssetList = { } } ], + socials: { + webiste: 'https://humans.ai/', + twitter: 'https://twitter.com/humansdotai' + }, traces: [ { type: 'ibc', @@ -7819,6 +7891,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' } ], + socials: { + webiste: 'https://injective.com/', + twitter: 'https://twitter.com/Injective_' + }, traces: [ { type: 'ibc', @@ -8142,6 +8218,10 @@ const asset_list: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + socials: { + webiste: 'https://gelotto.io/', + twitter: 'https://twitter.com/Gelotto2' } }, { @@ -8432,6 +8512,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' } ], + socials: { + webiste: 'https://junonetwork.io/', + twitter: 'https://twitter.com/JunoNetwork' + }, traces: [ { type: 'ibc', @@ -8649,6 +8733,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' } ], + socials: { + webiste: 'https://www.kava.io/', + twitter: 'https://twitter.com/KAVA_CHAIN' + }, traces: [ { type: 'ibc', @@ -8952,6 +9040,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' } ], + socials: { + webiste: 'https://kujira.network/', + twitter: 'https://twitter.com/TeamKujira' + }, traces: [ { type: 'ibc', @@ -10371,6 +10463,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' } ], + socials: { + webiste: 'https://www.kyve.network/', + twitter: 'https://twitter.com/KYVENetwork' + }, traces: [ { type: 'ibc', @@ -10586,6 +10682,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' } ], + socials: { + webiste: 'https://www.marsprotocol.io/', + twitter: 'https://twitter.com/mars_protocol' + }, traces: [ { type: 'ibc', @@ -11245,6 +11345,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' } ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, traces: [ { type: 'ibc', @@ -12649,6 +12753,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' } ], + socials: { + webiste: 'https://nolus.io/', + twitter: 'https://twitter.com/NolusProtocol' + }, traces: [ { type: 'ibc', @@ -13975,6 +14083,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' } ], + socials: { + webiste: 'https://omniflix.network/', + twitter: 'https://twitter.com/OmniFlixNetwork' + }, traces: [ { type: 'ibc', @@ -14438,6 +14550,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' } ], + socials: { + webiste: 'https://persistence.one/', + twitter: 'https://twitter.com/PersistenceOne' + }, traces: [ { type: 'ibc', @@ -15225,6 +15341,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pylons/images/pylons.png' } ], + socials: { + webiste: 'https://pylons.tech', + twitter: 'https://twitter.com/pylonstech' + }, traces: [ { type: 'ibc', @@ -15268,6 +15388,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' } ], + socials: { + webiste: 'https://www.quasar.fi/', + twitter: 'https://twitter.com/QuasarFi' + }, traces: [ { type: 'ibc', @@ -15465,6 +15589,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' } ], + socials: { + webiste: 'https://quicksilver.zone/', + twitter: 'https://twitter.com/quicksilverzone' + }, traces: [ { type: 'ibc', @@ -15891,6 +16019,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' } ], + socials: { + webiste: 'https://www.regen.network/', + twitter: 'https://twitter.com/regen_network' + }, traces: [ { type: 'ibc', @@ -16143,6 +16275,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' } ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, traces: [ { type: 'ibc', @@ -16186,6 +16322,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' } ], + socials: { + webiste: 'https://www.sei.io/', + twitter: 'https://twitter.com/SeiNetwork' + }, traces: [ { type: 'ibc', @@ -16447,6 +16587,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' } ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, traces: [ { type: 'ibc', @@ -16670,6 +16814,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' } ], + socials: { + webiste: 'https://www.sommelier.finance/', + twitter: 'https://twitter.com/sommfinance' + }, traces: [ { type: 'ibc', @@ -17010,6 +17158,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' } ], + socials: { + webiste: 'https://www.stargaze.zone/', + twitter: 'https://twitter.com/StargazeZone' + }, traces: [ { type: 'ibc', @@ -17280,6 +17432,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' } ], + socials: { + webiste: 'https://app.starname.me/', + twitter: 'https://twitter.com/starname_me' + }, traces: [ { type: 'ibc', @@ -17323,6 +17479,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' } ], + socials: { + webiste: 'https://stride.zone/', + twitter: 'https://twitter.com/stride_zone' + }, traces: [ { type: 'ibc', @@ -19267,6 +19427,10 @@ const asset_list: AssetList = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' } ], + socials: { + webiste: 'https://www.terra.money/', + twitter: 'https://twitter.com/terra_money' + }, traces: [ { type: 'ibc', @@ -23556,6 +23720,10 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png' } ], + socials: { + webiste: 'https://astroport.finance/', + twitter: 'https://twitter.com/astroport_fi' + }, traces: [ { type: 'ibc-cw20', diff --git a/packages/osmosis/src/assets.ts b/packages/osmosis/src/assets.ts index 4988139cd..dbdf51415 100644 --- a/packages/osmosis/src/assets.ts +++ b/packages/osmosis/src/assets.ts @@ -31,7 +31,11 @@ const assets: AssetList = { } ], coingecko_id: 'osmosis', - keywords: ['dex', 'staking'] + keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + } }, { denom_units: [ @@ -60,7 +64,11 @@ const assets: AssetList = { } ], coingecko_id: 'ion', - keywords: ['memecoin'] + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + } }, { description: "Circle's stablecoin on Axelar", @@ -14105,6 +14113,33 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' } ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + exponent: 0 + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ] } ] }; From 00c42f52f128440ec80907e85b148f97cdc54d3c Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Sun, 10 Mar 2024 12:58:35 +0800 Subject: [PATCH 31/54] chore(release): publish - @chain-registry/assets@1.30.1 - chain-registry@1.29.1 - @chain-registry/cosmostation@1.32.1 - @chain-registry/juno@1.30.1 - @chain-registry/keplr@1.34.1 - @chain-registry/osmosis@1.30.1 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 2350544ed..20eeb6a1d 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.0...@chain-registry/assets@1.30.1) (2024-03-10) + +**Note:** Version bump only for package @chain-registry/assets + + + + + # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.8...@chain-registry/assets@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 76b857f81..af2e939e3 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.30.0", + "version": "1.30.1", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.0", + "chain-registry": "^1.29.1", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 0820ba74a..d5c81917b 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.0...chain-registry@1.29.1) (2024-03-10) + +**Note:** Version bump only for package chain-registry + + + + + # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.7...chain-registry@1.29.0) (2024-03-08) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 3d84a0d32..072f27ed5 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.29.0", + "version": "1.29.1", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index 0251b5b9f..cdd96f649 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.32.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.0...@chain-registry/cosmostation@1.32.1) (2024-03-10) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + # [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.7...@chain-registry/cosmostation@1.32.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 53529a4cf..726273503 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.32.0", + "version": "1.32.1", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.0", + "chain-registry": "^1.29.1", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index 9d1f50470..c40e569f6 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.0...@chain-registry/juno@1.30.1) (2024-03-10) + +**Note:** Version bump only for package @chain-registry/juno + + + + + # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.8...@chain-registry/juno@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 99b3c00ff..d8c3a767d 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.30.0", + "version": "1.30.1", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.0", + "chain-registry": "^1.29.1", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 589c1c6ce..b3a4b871c 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.34.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.0...@chain-registry/keplr@1.34.1) (2024-03-10) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + # [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.7...@chain-registry/keplr@1.34.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index 74c70f258..745c5fc5f 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.34.0", + "version": "1.34.1", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.0", + "chain-registry": "^1.29.1", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 37e492f29..a8f222160 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.0...@chain-registry/osmosis@1.30.1) (2024-03-10) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.8...@chain-registry/osmosis@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 3f6127f70..47986e076 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.30.0", + "version": "1.30.1", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.0", + "chain-registry": "^1.29.1", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From a377f836eb5e57b0a58d1fb93d359f1befff8d93 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 20:47:40 +0800 Subject: [PATCH 32/54] feat: update ChainRegistryClient class --- packages/client/src/chain-info.ts | 52 ---- .../src/{chain-util.ts => chain-utils.ts} | 42 ++-- packages/client/src/client.ts | 228 ++++++++++++++++++ packages/client/src/fetcher.ts | 197 --------------- packages/client/src/index.ts | 6 +- packages/client/src/registry.ts | 84 ------- 6 files changed, 249 insertions(+), 360 deletions(-) delete mode 100644 packages/client/src/chain-info.ts rename packages/client/src/{chain-util.ts => chain-utils.ts} (69%) create mode 100644 packages/client/src/client.ts delete mode 100644 packages/client/src/fetcher.ts delete mode 100644 packages/client/src/registry.ts diff --git a/packages/client/src/chain-info.ts b/packages/client/src/chain-info.ts deleted file mode 100644 index 644604735..000000000 --- a/packages/client/src/chain-info.ts +++ /dev/null @@ -1,52 +0,0 @@ -import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; -import { getAssetLists } from '@chain-registry/utils'; - -import { ChainRegistryFetcher } from './fetcher'; - -export interface ChainInfoOptions { - chainName: string; - fetcher: ChainRegistryFetcher; -} - -export class ChainInfo { - chainName: string; - fetcher: ChainRegistryFetcher; - - protected _chain: Chain; - protected _assetList: AssetList; - protected _assetLists: AssetList[]; - protected _ibcData: IBCInfo[] = []; - - constructor(options: ChainInfoOptions) { - this.chainName = options.chainName; - this.fetcher = options.fetcher; - - this.refresh(); - } - - refresh() { - this._assetList = this.fetcher.getChainAssetList(this.chainName); - this._ibcData = this.fetcher.getChainIbcData(this.chainName); - this._chain = this.fetcher.getChain(this.chainName); - - const supportedChains = this._ibcData.reduce((m, v) => { - if (!m.includes(v.chain_1.chain_name)) m.push(v.chain_1.chain_name); - if (!m.includes(v.chain_2.chain_name)) m.push(v.chain_2.chain_name); - return m; - }, []); - - this._assetLists = this.fetcher.assetLists.filter((list) => - supportedChains.includes(list.chain_name) - ); - } - - get chain() { - return this._chain; - } - get nativeAssetList() { - return this._assetList; - } - get assetLists() { - return getAssetLists(this.chainName, this._ibcData, this._assetLists); - } -} diff --git a/packages/client/src/chain-util.ts b/packages/client/src/chain-utils.ts similarity index 69% rename from packages/client/src/chain-util.ts rename to packages/client/src/chain-utils.ts index c07c7c394..400698b54 100644 --- a/packages/client/src/chain-util.ts +++ b/packages/client/src/chain-utils.ts @@ -19,57 +19,53 @@ import { noDecimals } from '@chain-registry/utils'; -import { ChainInfo } from './chain-info'; - -export interface ChainRegistryChainUtilOptions { +export interface ChainUtilsOptions { chainName: string; - chainInfo: ChainInfo; + assetList?: AssetList; + ibcAssetList?: AssetList; } -export class ChainRegistryChainUtil { - chainName: string; - chainInfo: ChainInfo; - +export class ChainUtils { + private _chainName: string; private _assets: AssetList[] = []; - constructor(options: ChainRegistryChainUtilOptions) { - this.chainName = options.chainName; - this.chainInfo = options.chainInfo; + constructor(options: ChainUtilsOptions) { + this._chainName = options.chainName; this._assets = [ { assets: [ - ...this.chainInfo.nativeAssetList.assets, - ...this.chainInfo.assetLists.flatMap(({ assets }) => assets) + ...(options.assetList?.assets || []), + ...(options.ibcAssetList?.assets || []) ], - chain_name: this.chainName + chain_name: options.chainName } ]; } getAssetByDenom(denom: CoinDenom): Asset { - return getAssetByDenom(this._assets, denom, this.chainName); + return getAssetByDenom(this._assets, denom, this._chainName); } getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom { - return getDenomByCoinGeckoId(this._assets, coinGeckoId, this.chainName); + return getDenomByCoinGeckoId(this._assets, coinGeckoId, this._chainName); } getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom { return getCoinGeckoIdByDenom(this._assets, coinGeckoId, { - chainName: this.chainName + chainName: this._chainName }); } getSymbolByChainDenom(denom: CoinDenom): string { - return getSymbolByChainDenom(this._assets, denom, this.chainName); + return getSymbolByChainDenom(this._assets, denom, this._chainName); } getChainDenomBySymbol(token: string): CoinDenom { - return getChainDenomBySymbol(this._assets, token, this.chainName); + return getChainDenomBySymbol(this._assets, token, this._chainName); } getExponentByDenom(denom: CoinDenom): Exponent { - return getExponentByDenom(this._assets, denom, this.chainName); + return getExponentByDenom(this._assets, denom, this._chainName); } convertCoinGeckoPricesToDenomPriceMap( @@ -92,7 +88,7 @@ export class ChainRegistryChainUtil { prices, symbol, amount, - this.chainName + this._chainName ); } @@ -106,7 +102,7 @@ export class ChainRegistryChainUtil { prices, symbol, value, - this.chainName + this._chainName ); } @@ -118,7 +114,7 @@ export class ChainRegistryChainUtil { this._assets, symbol, amount, - this.chainName + this._chainName ); } } diff --git a/packages/client/src/client.ts b/packages/client/src/client.ts new file mode 100644 index 000000000..bdea8877f --- /dev/null +++ b/packages/client/src/client.ts @@ -0,0 +1,228 @@ +import fetch from 'cross-fetch'; +import { basename } from 'bfs-path'; +import { getAssetLists } from '@chain-registry/utils'; +import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; + +import { ChainUtils } from './chain-utils'; + +const DEFAULT_BASE_URL = + 'https://raw.githubusercontent.com/cosmos/chain-registry/master'; + +export interface FetchOptions { + urls?: string[]; + chainNames?: string[]; +} + +export interface ChainRegistryClientOptions extends FetchOptions { + baseUrl?: string; +} + +export class ChainRegistryClient { + private _allUrls: string[] = []; + private _baseUrl = DEFAULT_BASE_URL; + private _chainNames: string[] = []; + private _notFoundUrls: string[] = []; + + private _chains: Chain[] = []; + private _assetLists: AssetList[] = []; + private _ibcInfo: IBCInfo[] = []; + + constructor(options: ChainRegistryClientOptions = {}) { + const { urls, chainNames, baseUrl } = options; + + this._baseUrl = baseUrl ?? this._baseUrl; + this._allUrls = this.generateUrls({ urls, chainNames }); + } + + get urls(): string[] { + return this._allUrls; + } + + get chains(): Chain[] { + return this._chains; + } + + get assetLists(): AssetList[] { + return this._assetLists; + } + + get ibcInfo(): IBCInfo[] { + return this._ibcInfo; + } + + public getChain(chainName: string): Chain | undefined { + return this._chains.find(({ chain_name }) => chain_name === chainName); + } + + public getChainAssetList(chainName: string): AssetList | undefined { + return this._assetLists.find(({ chain_name }) => chain_name === chainName); + } + + public getChainIbcInfo(chainName: string): IBCInfo[] { + return this._ibcInfo.filter( + (info) => + info.chain_1.chain_name === chainName || + info.chain_2.chain_name === chainName + ); + } + + public getChainIbcAssetList(chainName: string): AssetList { + return getAssetLists(chainName, this._ibcInfo, this._assetLists)[0]; + } + + public getChainFullData(chainName: string) { + return { + chain: this.getChain(chainName), + assetList: this.getChainAssetList(chainName), + ibcInfo: this.getChainIbcInfo(chainName), + ibcAssetList: this.getChainIbcAssetList(chainName) + }; + } + + public getChainUtils(chainName: string) { + return new ChainUtils({ + chainName, + assetList: this.getChainAssetList(chainName), + ibcAssetList: this.getChainIbcAssetList(chainName) + }); + } + + public async fetch(options: FetchOptions = {}) { + let urls: string[] = []; + + if (Object.keys(options).length === 0) { + urls = this._allUrls; + } else { + const newUrls = this.generateUrls(options); + urls = newUrls; + this._allUrls = [...new Set([...this._allUrls, ...newUrls])]; + } + + const responses = await Promise.all(urls.map((url) => this.fetchUrl(url))); + + responses.filter(Boolean).forEach((data) => this.save(data)); + } + + private formatChainUrl(chainName: string) { + return `${this._baseUrl}/${chainName}/chain.json`; + } + + private formatAssetListUrl(chainName: string) { + return `${this._baseUrl}/${chainName}/assetlist.json`; + } + + private formatIbcUrl(chain1: string, chain2: string) { + return `${this._baseUrl}/_IBC/${chain1}-${chain2}.json`; + } + + private generateNamePairs(chainNames: string[]) { + const pairs: string[][] = []; + for (let i = 0; i < chainNames.length; i++) { + for (let j = i + 1; j < chainNames.length; j++) { + pairs.push([chainNames[i], chainNames[j]].sort()); + } + } + return pairs; + } + + private generateUrls({ urls = [], chainNames = [] }: FetchOptions) { + const chainUrls = chainNames.map((chain) => { + return this.formatChainUrl(chain); + }); + + const assetListUrls = chainNames.map((chain) => { + return this.formatAssetListUrl(chain); + }); + + this._chainNames = [...new Set([...this._chainNames, ...chainNames])]; + const allPairs = this.generateNamePairs(this._chainNames); + const newPairs = allPairs.filter((pair) => { + return !this._ibcInfo.some((info) => { + return ( + info.chain_1.chain_name === pair[0] && + info.chain_2.chain_name === pair[1] + ); + }); + }); + + const ibcUrls = newPairs.map((pair) => { + return this.formatIbcUrl(pair[0], pair[1]); + }); + + const allUrls = [ + ...new Set([...chainUrls, ...assetListUrls, ...ibcUrls, ...urls]) + ]; + + return allUrls.filter((url) => !this._notFoundUrls.includes(url)); + } + + private async fetchUrl(url: string) { + return fetch(url).then((res) => { + if (res.status === 404) { + console.error(`Failed to fetch ${url} with status 404`); + this._notFoundUrls.push(url); + return null; + } + if (res.status >= 400) { + throw new Error(`Failed to fetch ${url} with status ${res.status}`); + } + return res.json(); + }); + } + + private upsert(array: any[], element: any, filterFn: (ele: any) => boolean) { + const res = array.find(filterFn); + + if (!res) { + return [...array, element]; + } + + return array.map((item) => { + if (filterFn(item)) { + return element; + } + return item; + }); + } + + private save(data: Chain | AssetList | IBCInfo) { + if (!data.$schema) { + throw new Error('Invalid data: Missing $schema property'); + } + + const type = basename(data.$schema, '.schema.json'); + + switch (type) { + case 'chain': + this._chains = this.upsert(this._chains, data, (chain: Chain) => { + return ( + chain.chain_name === (data as Chain).chain_name && + chain.network_type === (data as Chain).network_type + ); + }); + break; + + case 'assetlist': + this._assetLists = this.upsert( + this._assetLists, + data, + (assetList: AssetList) => { + return assetList.chain_name === (data as AssetList).chain_name; + } + ); + break; + + case 'ibc_data': + this._ibcInfo = this.upsert(this._ibcInfo, data, (info: IBCInfo) => { + return ( + info.chain_1.chain_name === (data as IBCInfo).chain_1.chain_name && + info.chain_2.chain_name === (data as IBCInfo).chain_2.chain_name + ); + }); + break; + + default: + throw new Error(`Unsupported json schema: ${data.$schema}`); + } + } +} diff --git a/packages/client/src/fetcher.ts b/packages/client/src/fetcher.ts deleted file mode 100644 index 5ee6ff720..000000000 --- a/packages/client/src/fetcher.ts +++ /dev/null @@ -1,197 +0,0 @@ -import { - AssetList, - Chain, - ChainRegistry, - IBCInfo -} from '@chain-registry/types'; -import { getAssetLists } from '@chain-registry/utils'; -import { basename } from 'bfs-path'; -import fetch from 'cross-fetch'; - -import { ChainInfo } from './chain-info'; - -const fetchUrl = (url: string) => { - return fetch(url).then((res) => { - if (res.status >= 400) { - throw new Error('Bad response'); - } - return res.json(); - }); -}; - -export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; -} - -// QUESTION: should ChainRegistryFetcher just be ChainRegistry? -export class ChainRegistryFetcher implements ChainRegistry { - urls: string[] = []; - - protected _assetLists: AssetList[] = []; - protected _chains: Chain[] = []; - protected _ibcData: IBCInfo[] = []; - - private chainInfoList: ChainInfo[] = []; - - constructor(options: ChainRegistryFetcherOptions = {}) { - // - if (options.chains) { - this._chains = options.chains; - } - if (options.assetLists) { - this._assetLists = options.assetLists; - } - if (options.ibcData) { - this._ibcData = options.ibcData; - } - if (options.urls) { - this.urls = options.urls; - } - } - - get chains() { - return this._chains; - } - get assetLists(): AssetList[] { - return this._assetLists; - } - get ibcData(): IBCInfo[] { - return this._ibcData; - } - - getChain(chainName: string) { - return this._chains.find((chain) => chain.chain_name === chainName); - } - - getChainAssetList(chainName: string): AssetList { - return this._assetLists.find((list) => list.chain_name === chainName); - } - - getGeneratedAssetLists(chainName: string): AssetList[] { - return getAssetLists(chainName, this._ibcData, this._assetLists); - } - - getChainIbcData(chainName: string) { - return this._ibcData.filter( - (info) => - info.chain_1.chain_name === chainName || - info.chain_2.chain_name === chainName - ); - } - - getChainInfo(chainName: string) { - let chainInfo = this.chainInfoList.find((it) => it.chainName === chainName); - if (!chainInfo) { - chainInfo = new ChainInfo({ - chainName: chainName, - fetcher: this - }); - this.chainInfoList.push(chainInfo); - } - return chainInfo; - } - - upsertChain(data: Chain) { - const found = this._chains.find((chain) => { - return ( - chain.chain_name === data.chain_name && - chain.network_type === data.network_type - ); - }); - - if (!found) { - this._chains.push(data); - return; - } - - this._chains = this._chains.map((chain) => { - if ( - chain.chain_name === data.chain_name && - chain.network_type === data.network_type - ) { - return data; - } else { - return chain; - } - }); - } - - updateAssetList(data: AssetList) { - const found = this._assetLists.find((list) => { - return list.chain_name === data.chain_name; - }); - - if (!found) { - this._assetLists.push(data); - return; - } - - this._assetLists = this._assetLists.map((list) => { - if (list.chain_name === data.chain_name) { - return data; - } else { - return list; - } - }); - } - - upsertIbcData(data: IBCInfo) { - const found = this._ibcData.find((info) => { - return ( - info.chain_1.chain_name === data.chain_1.chain_name && - info.chain_2.chain_name === data.chain_2.chain_name - ); - }); - - if (!found) { - this._ibcData.push(data); - return; - } - - this._ibcData = this._ibcData.map((info) => { - if ( - info.chain_1.chain_name === data.chain_1.chain_name && - info.chain_2.chain_name === data.chain_2.chain_name - ) { - return data; - } else { - return info; - } - }); - } - - update(data: Chain | AssetList | IBCInfo) { - if (!data.$schema) throw new Error('not a registered JSON schema type'); - const type = basename(data.$schema, '.schema.json'); - - switch (type) { - case 'chain': - this.upsertChain(data as Chain); - break; - case 'assetlist': - this.updateAssetList(data as AssetList); - break; - case 'ibc_data': - this.upsertIbcData(data as IBCInfo); - break; - default: - throw new Error('unknown schema type'); - } - - this.chainInfoList.forEach((chainInfo) => { - chainInfo.refresh(); - }); - } - - async fetch(url): Promise { - const data = await fetchUrl(url); - this.update(data); - } - - async fetchUrls() { - return Promise.all(this.urls.map((url) => this.fetch(url))); - } -} diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index 000f0b524..e7205b93f 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -1,4 +1,2 @@ -export * from './chain-info'; -export * from './chain-util'; -export * from './fetcher'; -export * from './registry'; +export * from './client'; +export * from './chain-utils'; diff --git a/packages/client/src/registry.ts b/packages/client/src/registry.ts deleted file mode 100644 index f1205f57d..000000000 --- a/packages/client/src/registry.ts +++ /dev/null @@ -1,84 +0,0 @@ -import { ChainRegistryChainUtil } from './chain-util'; -import { ChainRegistryFetcher, ChainRegistryFetcherOptions } from './fetcher'; - -export interface ChainRegistryClientOptions - extends ChainRegistryFetcherOptions { - chainNames: string[]; - assetListNames?: string[]; - ibcNamePairs?: string[][]; - baseUrl?: string; -} - -export class ChainRegistryClient extends ChainRegistryFetcher { - protected _options: ChainRegistryClientOptions = { - chainNames: [], - baseUrl: 'https://raw.githubusercontent.com/cosmos/chain-registry/master' - }; - - constructor(options: ChainRegistryClientOptions) { - const { - chainNames, - assetListNames, - ibcNamePairs, - baseUrl, - ...restOptions - } = options; - - super(restOptions); - this._options = { - ...this._options, - chainNames: chainNames || this._options.chainNames, - assetListNames: assetListNames || this._options.assetListNames, - ibcNamePairs: ibcNamePairs || this._options.ibcNamePairs, - baseUrl: baseUrl || this._options.baseUrl - }; - - this.generateUrls(); - } - - generateUrls() { - const { chainNames, assetListNames, ibcNamePairs, baseUrl } = this._options; - - const chainUrls = chainNames.map((chain) => { - return `${baseUrl}/${chain}/chain.json`; - }); - - const assetlistUrls = (assetListNames || chainNames).map((chain) => { - return `${baseUrl}/${chain}/assetlist.json`; - }); - - let namePairs = ibcNamePairs; - if (!namePairs) { - namePairs = []; - for (let i = 0; i < chainNames.length; i++) { - for (let j = i + 1; j < chainNames.length; j++) { - namePairs.push([chainNames[i], chainNames[j]]); - } - } - } - const ibcUrls = namePairs.map((namePair) => { - const fileName = - namePair[0].localeCompare(namePair[1]) <= 0 - ? `${namePair[0]}-${namePair[1]}.json` - : `${namePair[1]}-${namePair[0]}.json`; - return `${baseUrl}/_IBC/${fileName}`; - }); - - this.urls = [ - ...new Set([ - ...chainUrls, - ...assetlistUrls, - ...ibcUrls, - ...(this.urls || []) - ]) - ]; - } - - getChainUtil(chainName: string) { - const chainInfo = this.getChainInfo(chainName); - return new ChainRegistryChainUtil({ - chainName: chainName, - chainInfo: chainInfo - }); - } -} From 0c829f52322d30345508245cfab202bce6eeaaa9 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 20:48:44 +0800 Subject: [PATCH 33/54] feat: update client tests --- packages/client/__tests__/client-api.test.ts | 31 +++++++ .../client/__tests__/client-fetch.test.ts | 46 ++++++++++ .../client/__tests__/client-fetching.test.ts | 47 ---------- .../__tests__/client-generating.test.ts | 32 ------- packages/client/__tests__/client-mock.test.ts | 76 ++++------------ packages/client/__tests__/client.api.test.ts | 86 ------------------- packages/client/__tests__/client.test.ts | 40 +++++++++ packages/client/__tests__/fetcher.test.ts | 57 ------------ packages/client/__tests__/utils.test.ts | 73 ++++++++++++++++ 9 files changed, 207 insertions(+), 281 deletions(-) create mode 100644 packages/client/__tests__/client-api.test.ts create mode 100644 packages/client/__tests__/client-fetch.test.ts delete mode 100644 packages/client/__tests__/client-fetching.test.ts delete mode 100644 packages/client/__tests__/client-generating.test.ts delete mode 100644 packages/client/__tests__/client.api.test.ts create mode 100644 packages/client/__tests__/client.test.ts delete mode 100644 packages/client/__tests__/fetcher.test.ts create mode 100644 packages/client/__tests__/utils.test.ts diff --git a/packages/client/__tests__/client-api.test.ts b/packages/client/__tests__/client-api.test.ts new file mode 100644 index 000000000..c29d9e14f --- /dev/null +++ b/packages/client/__tests__/client-api.test.ts @@ -0,0 +1,31 @@ +import request from 'supertest'; + +import { ChainRegistryClient } from '../src/client'; + +const timeout = 5000; +const host = 'https://raw.githubusercontent.com'; + +describe('Test chain registry urls', () => { + it( + 'test urls generated by client', + () => { + const client = new ChainRegistryClient({ + chainNames: ['osmosis', 'juno'] + }); + expect(client.urls.length).toEqual(5); + + return Promise.all( + client.urls.map((url) => + request(host) + .get(url.slice(host.length)) + .timeout(timeout) + .expect(200) + .then((response) => { + expect(JSON.parse(response?.text).$schema).toBeDefined(); + }) + ) + ); + }, + timeout + ); +}); diff --git a/packages/client/__tests__/client-fetch.test.ts b/packages/client/__tests__/client-fetch.test.ts new file mode 100644 index 000000000..ed2834b90 --- /dev/null +++ b/packages/client/__tests__/client-fetch.test.ts @@ -0,0 +1,46 @@ +import { ChainRegistryClient } from '../src'; + +const timeout = 5000; +const urls = [ + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/chain.json', + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/assetlist.json', + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/assetlist.json', + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/assetlist.json', + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_IBC/juno-osmosis.json', + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_IBC/osmosis-secretnetwork.json' +]; + +describe('Test client fetch', () => { + let client: ChainRegistryClient; + + beforeAll((done) => { + client = new ChainRegistryClient(); + client.fetch({ urls }).then(() => done()); + }, timeout); + + it( + 'Test chain registry', + () => { + expect(client.chains.length).toBe(1); + expect(client.assetLists.length).toBe(3); + expect(client.ibcInfo.length).toBe(2); + }, + timeout + ); + + it( + 'Test chain info', + () => { + const chainData = client.getChainFullData('osmosis'); + const ibcAssetList = client.getChainIbcAssetList('osmosis'); + expect(chainData.ibcAssetList).toEqual(ibcAssetList); + + const osmosis = client.getChain('osmosis'); + expect(chainData.chain).toEqual(osmosis); + + const osmosisAssets = client.getChainAssetList('osmosis'); + expect(chainData.assetList).toEqual(osmosisAssets); + }, + timeout + ); +}); diff --git a/packages/client/__tests__/client-fetching.test.ts b/packages/client/__tests__/client-fetching.test.ts deleted file mode 100644 index 4366949dd..000000000 --- a/packages/client/__tests__/client-fetching.test.ts +++ /dev/null @@ -1,47 +0,0 @@ -import { - ChainRegistryClient, - ChainRegistryClientOptions -} from '../src/registry'; - -const timeout = 30000; // miliseconds - -describe('Test client', () => { - let client; - beforeAll((done) => { - const options: ChainRegistryClientOptions = { - chainNames: ['osmosis'] - }; - - client = new ChainRegistryClient(options); - client.fetchUrls().then(() => done()); - }, timeout); - - it( - 'Test fetching chain Info', - () => { - const chainInfo = client.getChainInfo('osmosis'); - expect(chainInfo.chainName).toEqual('osmosis'); - }, - timeout - ); - - it( - 'Test chain util', - () => { - const chainUtil = client.getChainUtil('osmosis'); - const asset = chainUtil.getAssetByDenom('uosmo'); - expect(asset.name).toEqual('Osmosis'); - }, - timeout - ); - - it( - 'Test fetching asset list', - () => { - const chainInfo = client.getChainInfo('osmosis'); - const generated = client.getGeneratedAssetLists('osmosis'); - expect(chainInfo.assetLists).toEqual(generated); - }, - timeout - ); -}); diff --git a/packages/client/__tests__/client-generating.test.ts b/packages/client/__tests__/client-generating.test.ts deleted file mode 100644 index c92762c1e..000000000 --- a/packages/client/__tests__/client-generating.test.ts +++ /dev/null @@ -1,32 +0,0 @@ -import request from 'supertest'; - -import { ChainRegistryClient } from '../src/registry'; - -const timeout = 30000; // miliseconds - -describe('Test client', () => { - it( - 'test urls generated by client', - async () => { - const client = new ChainRegistryClient({ - chainNames: ['osmosis', 'juno'] - }); - expect(client.urls.length).toEqual(5); - - const host = 'https://raw.githubusercontent.com'; - const responses = await Promise.all( - client.urls.map((url) => - request(host) - .get(url.substring(host.length)) - .timeout(timeout) - .expect(200) - ) - ); - - responses?.forEach((res) => { - expect(JSON.parse(res?.text).$schema).toBeDefined(); - }); - }, - timeout - ); -}); diff --git a/packages/client/__tests__/client-mock.test.ts b/packages/client/__tests__/client-mock.test.ts index 3d8615d56..a446acfcd 100644 --- a/packages/client/__tests__/client-mock.test.ts +++ b/packages/client/__tests__/client-mock.test.ts @@ -1,80 +1,38 @@ import nock from 'nock'; -import { ChainRegistryClient } from '../src/registry'; - -const osmosisChainData = { - $schema: '../chain.schema.json', - chain_name: 'osmosis', - status: 'live', - network_type: 'mainnet', - website: 'https://osmosis.zone/', - update_link: - 'https://raw.githubusercontent.com/osmosis-labs/osmosis/main/chain.schema.json', - pretty_name: 'Osmosis', - chain_id: 'osmosis-1', - bech32_prefix: 'osmo', - daemon_name: 'osmosisd', - node_home: '$HOME/.osmosisd', - key_algos: ['secp256k1'], - slip44: 118 -}; - -const osmosisAssetlistData = { - $schema: '../assetlist.schema.json', - chain_name: 'osmosis', - assets: [ - { - description: 'The native token of Osmosis', - denom_units: [ - { - denom: 'uosmo', - exponent: 0 - }, - { - denom: 'osmo', - exponent: 6 - } - ], - base: 'uosmo', - name: 'Osmosis', - display: 'osmo', - symbol: 'OSMO', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' - }, - coingecko_id: 'osmosis', - keywords: ['dex', 'staking'] - } - ] -}; +import assets from '../../../__fixtures__/assets.json'; +import chains from '../../../__fixtures__/chains.json'; +import { ChainRegistryClient } from '../src/client'; const baseUrl = 'https://raw.githubusercontent.com'; -function nockByChainName(chainName: string, chainData, assetlistData) { +function nockByChainName(chainName: string) { const chainDataPath = `/cosmos/chain-registry/master/${chainName}/chain.json`; const assetlistDataPath = `/cosmos/chain-registry/master/${chainName}/assetlist.json`; + + const chainData = chains.find((chain) => chain.chain_name === chainName); + const assetlistData = assets.find((asset) => asset.chain_name === chainName); + nock(baseUrl).get(chainDataPath).reply(200, chainData); nock(baseUrl).get(assetlistDataPath).reply(200, assetlistData); } describe('Test client', () => { - let client; + let client: ChainRegistryClient; + beforeAll(async () => { - nockByChainName('osmosis', osmosisChainData, osmosisAssetlistData); - client = new ChainRegistryClient({ - chainNames: ['osmosis'] - }); - await client.fetchUrls(); + nockByChainName('osmosis'); + client = new ChainRegistryClient({ chainNames: ['osmosis'] }); + await client.fetch(); }); it('Test mock fetching chain data', () => { - const chainInfo = client.getChainInfo('osmosis'); - expect(chainInfo.chainName).toEqual('osmosis'); + const chainData = client.getChain('osmosis'); + expect(chainData?.chain_name).toEqual('osmosis'); }); it('Test mock fetching asset list', () => { - const chainInfo = client.getChainInfo('osmosis'); - expect(chainInfo.nativeAssetList.assets.length).toEqual(1); + const assetList = client.getChainAssetList('osmosis'); + expect(assetList?.assets.length).toEqual(3); }); }); diff --git a/packages/client/__tests__/client.api.test.ts b/packages/client/__tests__/client.api.test.ts deleted file mode 100644 index 98442516f..000000000 --- a/packages/client/__tests__/client.api.test.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { assets, chains } from 'chain-registry'; - -import { - ChainRegistryChainUtil, - ChainRegistryChainUtilOptions, - ChainRegistryClient, - ChainRegistryClientOptions -} from '../src'; - -describe('tests for asset-list-util', () => { - const assetLists = assets.filter( - ({ chain_name }) => chain_name === 'osmosis' - ); - const chainInfos = chains.filter( - ({ chain_name }) => chain_name === 'osmosis' - ); - - const regOptions: ChainRegistryClientOptions = { - chainNames: ['osmosis'], - chains: chainInfos, - assetLists - }; - - const regClient = new ChainRegistryClient(regOptions); - const chainInfo = regClient.getChainInfo('osmosis'); - const options: ChainRegistryChainUtilOptions = { - chainInfo, - chainName: 'osmosis' - }; - const client = new ChainRegistryChainUtil(options); - - it('getAssetByDenom', () => { - const asset = client.getAssetByDenom('uosmo'); - expect(asset.base).toEqual('uosmo'); - }); - - it('getDenomByCoinGeckoId', () => { - const denom1 = client.getDenomByCoinGeckoId('osmosis'); - expect(denom1).toEqual('uosmo'); - const denom2 = client.getDenomByCoinGeckoId('ion'); - expect(denom2).toEqual('uion'); - }); - - it('getSymbolByChainDenom', () => { - const denom1 = client.getSymbolByChainDenom('uosmo'); - expect(denom1).toEqual('OSMO'); - const denom2 = client.getSymbolByChainDenom('uion'); - expect(denom2).toEqual('ION'); - }); - - it('getChainDenomBySymbol', () => { - const denom1 = client.getChainDenomBySymbol('OSMO'); - expect(denom1).toEqual('uosmo'); - const denom2 = client.getChainDenomBySymbol('ION'); - expect(denom2).toEqual('uion'); - }); - - it('getExponentByDenom', () => { - const exponent = client.getExponentByDenom('uosmo'); - expect(exponent).toEqual(6); - }); - - it('convertBaseUnitsToDollarValue', () => { - const value = client.convertBaseUnitsToDollarValue({ uosmo: 1 }, 'OSMO', 5); - expect(value).toEqual('0.000005'); - }); - - it('convertDollarValueToDenomUnits', () => { - const value = client.convertDollarValueToDenomUnits( - { uosmo: 1 }, - 'OSMO', - 0.00001 - ); - expect(value).toEqual('10'); - }); - - it('convertBaseUnitsToDisplayUnits', () => { - const value = client.convertBaseUnitsToDisplayUnits('OSMO', 99); - expect(value).toEqual('0.000099'); - }); - - it('uosmo coingecko id', () => { - const id = client.getCoinGeckoIdByDenom('uosmo'); - expect(id).toEqual('osmosis'); - }); -}); diff --git a/packages/client/__tests__/client.test.ts b/packages/client/__tests__/client.test.ts new file mode 100644 index 000000000..e0ef607d3 --- /dev/null +++ b/packages/client/__tests__/client.test.ts @@ -0,0 +1,40 @@ +import { ChainRegistryClient } from '../src/client'; + +const timeout = 5000; + +describe('Test client', () => { + let client: ChainRegistryClient; + + beforeAll((done) => { + client = new ChainRegistryClient({ chainNames: ['osmosis'] }); + client.fetch().then(() => done()); + }, timeout); + + it('Test fetching chain', () => { + const chain = client.getChain('osmosis'); + expect(chain?.chain_name).toEqual('osmosis'); + }); + + it('Test fetching chain ibc info', async () => { + expect(client.ibcInfo.length).toEqual(0); + + await client.fetch({ chainNames: ['juno'] }); + + expect(client.urls.length).toEqual(5); + expect(client.chains.length).toEqual(2); + expect(client.ibcInfo.length).toEqual(1); + expect(client.ibcInfo[0].chain_1.chain_name).toEqual('juno'); + }); + + it('Test fetching asset list', () => { + const chainData = client.getChainFullData('osmosis'); + const assetList = client.getChainAssetList('osmosis'); + expect(chainData.assetList).toEqual(assetList); + }); + + it('Test chain utils', () => { + const chainUtils = client.getChainUtils('osmosis'); + const asset = chainUtils.getAssetByDenom('uosmo'); + expect(asset.name).toEqual('Osmosis'); + }); +}); diff --git a/packages/client/__tests__/fetcher.test.ts b/packages/client/__tests__/fetcher.test.ts deleted file mode 100644 index fef491938..000000000 --- a/packages/client/__tests__/fetcher.test.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { - ChainRegistryFetcher, - ChainRegistryFetcherOptions -} from '../src/fetcher'; - -const timeout = 30000; // miliseconds - -describe('Test fetcher', () => { - let fetcher; - beforeAll((done) => { - const options: ChainRegistryFetcherOptions = { - urls: [ - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/chain.json', - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/assetlist.json', - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/assetlist.json', - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/assetlist.json', - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_IBC/juno-osmosis.json', - 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_IBC/osmosis-secretnetwork.json' - ] - }; - - fetcher = new ChainRegistryFetcher(options); - fetcher.fetchUrls().then(() => done()); - }, timeout); - - it( - 'Test chain registry', - (done) => { - expect(fetcher.chains.length).toBe(1); - expect(fetcher.assetLists.length).toBe(3); - done(); - }, - timeout - ); - - it( - 'Test chain info', - (done) => { - const chainInfo = fetcher.getChainInfo('osmosis'); - const generated = fetcher.getGeneratedAssetLists('osmosis'); - expect(chainInfo.assetLists).toEqual(generated); - - const osmosis = fetcher.getChain('osmosis'); - expect(chainInfo.chain).toEqual(osmosis); - - const osmosisAssets = fetcher.getChainAssetList('osmosis'); - expect(chainInfo.nativeAssetList).toEqual(osmosisAssets); - - const num = osmosisAssets.assets.length; - const numGenerated = generated[0].assets.length; - expect(numGenerated > num).toBe(true); - - done(); - }, - timeout - ); -}); diff --git a/packages/client/__tests__/utils.test.ts b/packages/client/__tests__/utils.test.ts new file mode 100644 index 000000000..ce86f0ac0 --- /dev/null +++ b/packages/client/__tests__/utils.test.ts @@ -0,0 +1,73 @@ +import { ChainRegistryClient, ChainUtils } from '../src'; + +describe('tests for asset-list-util', () => { + let utils: ChainUtils; + + beforeAll(async () => { + const client = new ChainRegistryClient({ chainNames: ['osmosis'] }); + await client.fetch(); + + const { assetList, ibcAssetList } = client.getChainFullData('osmosis'); + + utils = new ChainUtils({ + chainName: 'osmosis', + assetList, + ibcAssetList + }); + }); + + it('getAssetByDenom', () => { + const asset = utils.getAssetByDenom('uosmo'); + expect(asset.base).toEqual('uosmo'); + }); + + it('getDenomByCoinGeckoId', () => { + const denom1 = utils.getDenomByCoinGeckoId('osmosis'); + expect(denom1).toEqual('uosmo'); + const denom2 = utils.getDenomByCoinGeckoId('ion'); + expect(denom2).toEqual('uion'); + }); + + it('getSymbolByChainDenom', () => { + const denom1 = utils.getSymbolByChainDenom('uosmo'); + expect(denom1).toEqual('OSMO'); + const denom2 = utils.getSymbolByChainDenom('uion'); + expect(denom2).toEqual('ION'); + }); + + it('getChainDenomBySymbol', () => { + const denom1 = utils.getChainDenomBySymbol('OSMO'); + expect(denom1).toEqual('uosmo'); + const denom2 = utils.getChainDenomBySymbol('ION'); + expect(denom2).toEqual('uion'); + }); + + it('getExponentByDenom', () => { + const exponent = utils.getExponentByDenom('uosmo'); + expect(exponent).toEqual(6); + }); + + it('convertBaseUnitsToDollarValue', () => { + const value = utils.convertBaseUnitsToDollarValue({ uosmo: 1 }, 'OSMO', 5); + expect(value).toEqual('0.000005'); + }); + + it('convertDollarValueToDenomUnits', () => { + const value = utils.convertDollarValueToDenomUnits( + { uosmo: 1 }, + 'OSMO', + 0.00001 + ); + expect(value).toEqual('10'); + }); + + it('convertBaseUnitsToDisplayUnits', () => { + const value = utils.convertBaseUnitsToDisplayUnits('OSMO', 99); + expect(value).toEqual('0.000099'); + }); + + it('uosmo coingecko id', () => { + const id = utils.getCoinGeckoIdByDenom('uosmo'); + expect(id).toEqual('osmosis'); + }); +}); From 78070ca382706ca59caf00dafc7a9c7856c8f447 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 20:52:14 +0800 Subject: [PATCH 34/54] feat: update types --- packages/client/types/chain-info.d.ts | 19 -------- .../{chain-util.d.ts => chain-utils.d.ts} | 15 +++---- packages/client/types/client.d.ts | 43 +++++++++++++++++++ packages/client/types/fetcher.d.ts | 30 ------------- packages/client/types/index.d.ts | 6 +-- packages/client/types/registry.d.ts | 14 ------ 6 files changed, 52 insertions(+), 75 deletions(-) delete mode 100644 packages/client/types/chain-info.d.ts rename packages/client/types/{chain-util.d.ts => chain-utils.d.ts} (73%) create mode 100644 packages/client/types/client.d.ts delete mode 100644 packages/client/types/fetcher.d.ts delete mode 100644 packages/client/types/registry.d.ts diff --git a/packages/client/types/chain-info.d.ts b/packages/client/types/chain-info.d.ts deleted file mode 100644 index 6e6bde1ef..000000000 --- a/packages/client/types/chain-info.d.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; -import { ChainRegistryFetcher } from './fetcher'; -export interface ChainInfoOptions { - chainName: string; - fetcher: ChainRegistryFetcher; -} -export declare class ChainInfo { - chainName: string; - fetcher: ChainRegistryFetcher; - protected _chain: Chain; - protected _assetList: AssetList; - protected _assetLists: AssetList[]; - protected _ibcData: IBCInfo[]; - constructor(options: ChainInfoOptions); - refresh(): void; - get chain(): Chain; - get nativeAssetList(): AssetList; - get assetLists(): any[]; -} diff --git a/packages/client/types/chain-util.d.ts b/packages/client/types/chain-utils.d.ts similarity index 73% rename from packages/client/types/chain-util.d.ts rename to packages/client/types/chain-utils.d.ts index ac54efa93..5c713fe8b 100644 --- a/packages/client/types/chain-util.d.ts +++ b/packages/client/types/chain-utils.d.ts @@ -1,15 +1,14 @@ -import { Asset } from '@chain-registry/types'; +import { Asset, AssetList } from '@chain-registry/types'; import type { CoinDenom, CoinGeckoUSD, Exponent, PriceHash } from '@chain-registry/utils'; -import { ChainInfo } from './chain-info'; -export interface ChainRegistryChainUtilOptions { +export interface ChainUtilsOptions { chainName: string; - chainInfo: ChainInfo; + assetList?: AssetList; + ibcAssetList?: AssetList; } -export declare class ChainRegistryChainUtil { - chainName: string; - chainInfo: ChainInfo; +export declare class ChainUtils { + private _chainName; private _assets; - constructor(options: ChainRegistryChainUtilOptions); + constructor(options: ChainUtilsOptions); getAssetByDenom(denom: CoinDenom): Asset; getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom; getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom; diff --git a/packages/client/types/client.d.ts b/packages/client/types/client.d.ts new file mode 100644 index 000000000..cf441a21b --- /dev/null +++ b/packages/client/types/client.d.ts @@ -0,0 +1,43 @@ +import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; +import { ChainUtils } from './chain-utils'; +export interface FetchOptions { + urls?: string[]; + chainNames?: string[]; +} +export interface ChainRegistryClientOptions extends FetchOptions { + baseUrl?: string; +} +export declare class ChainRegistryClient { + private _allUrls; + private _baseUrl; + private _chainNames; + private _notFoundUrls; + private _chains; + private _assetLists; + private _ibcInfo; + constructor(options?: ChainRegistryClientOptions); + get urls(): string[]; + get chains(): Chain[]; + get assetLists(): AssetList[]; + get ibcInfo(): IBCInfo[]; + getChain(chainName: string): Chain | undefined; + getChainAssetList(chainName: string): AssetList | undefined; + getChainIbcInfo(chainName: string): IBCInfo[]; + getChainIbcAssetList(chainName: string): AssetList; + getChainFullData(chainName: string): { + chain: Chain; + assetList: AssetList; + ibcInfo: IBCInfo[]; + ibcAssetList: AssetList; + }; + getChainUtils(chainName: string): ChainUtils; + fetch(options?: FetchOptions): Promise; + private formatChainUrl; + private formatAssetListUrl; + private formatIbcUrl; + private generateNamePairs; + private generateUrls; + private fetchUrl; + private upsert; + private save; +} diff --git a/packages/client/types/fetcher.d.ts b/packages/client/types/fetcher.d.ts deleted file mode 100644 index 33f19be57..000000000 --- a/packages/client/types/fetcher.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { AssetList, Chain, ChainRegistry, IBCInfo } from '@chain-registry/types'; -import { ChainInfo } from './chain-info'; -export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; -} -export declare class ChainRegistryFetcher implements ChainRegistry { - urls: string[]; - protected _assetLists: AssetList[]; - protected _chains: Chain[]; - protected _ibcData: IBCInfo[]; - private chainInfoList; - constructor(options?: ChainRegistryFetcherOptions); - get chains(): Chain[]; - get assetLists(): AssetList[]; - get ibcData(): IBCInfo[]; - getChain(chainName: string): Chain; - getChainAssetList(chainName: string): AssetList; - getGeneratedAssetLists(chainName: string): AssetList[]; - getChainIbcData(chainName: string): IBCInfo[]; - getChainInfo(chainName: string): ChainInfo; - upsertChain(data: Chain): void; - updateAssetList(data: AssetList): void; - upsertIbcData(data: IBCInfo): void; - update(data: Chain | AssetList | IBCInfo): void; - fetch(url: any): Promise; - fetchUrls(): Promise; -} diff --git a/packages/client/types/index.d.ts b/packages/client/types/index.d.ts index 000f0b524..e7205b93f 100644 --- a/packages/client/types/index.d.ts +++ b/packages/client/types/index.d.ts @@ -1,4 +1,2 @@ -export * from './chain-info'; -export * from './chain-util'; -export * from './fetcher'; -export * from './registry'; +export * from './client'; +export * from './chain-utils'; diff --git a/packages/client/types/registry.d.ts b/packages/client/types/registry.d.ts deleted file mode 100644 index c0fa8de3f..000000000 --- a/packages/client/types/registry.d.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { ChainRegistryChainUtil } from './chain-util'; -import { ChainRegistryFetcher, ChainRegistryFetcherOptions } from './fetcher'; -export interface ChainRegistryClientOptions extends ChainRegistryFetcherOptions { - chainNames: string[]; - assetListNames?: string[]; - ibcNamePairs?: string[][]; - baseUrl?: string; -} -export declare class ChainRegistryClient extends ChainRegistryFetcher { - protected _options: ChainRegistryClientOptions; - constructor(options: ChainRegistryClientOptions); - generateUrls(): void; - getChainUtil(chainName: string): ChainRegistryChainUtil; -} From a78eea5a7e93fac7edc03622418c786783dd704f Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 22:03:17 +0800 Subject: [PATCH 35/54] feat: add packages/client to test suite for github workflow --- .github/workflows/run-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9ff2aec77..13864be90 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -28,3 +28,5 @@ jobs: run: cd ./packages/keplr && yarn test - name: utils run: cd ./packages/utils && yarn test + - name: client + run: cd ./packages/client && yarn test From 4b8127380cc23e550b6ae7bc4b2961f9d7c9db8f Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 22:54:19 +0800 Subject: [PATCH 36/54] fix: increase fetch timeout --- packages/client/__tests__/client-api.test.ts | 2 +- packages/client/__tests__/client-fetch.test.ts | 2 +- packages/client/__tests__/client.test.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/client/__tests__/client-api.test.ts b/packages/client/__tests__/client-api.test.ts index c29d9e14f..21ca926db 100644 --- a/packages/client/__tests__/client-api.test.ts +++ b/packages/client/__tests__/client-api.test.ts @@ -2,7 +2,7 @@ import request from 'supertest'; import { ChainRegistryClient } from '../src/client'; -const timeout = 5000; +const timeout = 30000; const host = 'https://raw.githubusercontent.com'; describe('Test chain registry urls', () => { diff --git a/packages/client/__tests__/client-fetch.test.ts b/packages/client/__tests__/client-fetch.test.ts index ed2834b90..5f64f5cff 100644 --- a/packages/client/__tests__/client-fetch.test.ts +++ b/packages/client/__tests__/client-fetch.test.ts @@ -1,6 +1,6 @@ import { ChainRegistryClient } from '../src'; -const timeout = 5000; +const timeout = 30000; const urls = [ 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/chain.json', 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/assetlist.json', diff --git a/packages/client/__tests__/client.test.ts b/packages/client/__tests__/client.test.ts index e0ef607d3..6f548d4de 100644 --- a/packages/client/__tests__/client.test.ts +++ b/packages/client/__tests__/client.test.ts @@ -1,6 +1,6 @@ import { ChainRegistryClient } from '../src/client'; -const timeout = 5000; +const timeout = 30000; describe('Test client', () => { let client: ChainRegistryClient; From 6d38a342add4d101ca8f770c42c0f5de36eedc99 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 23:08:47 +0800 Subject: [PATCH 37/54] fix: tests --- packages/client/__tests__/client.test.ts | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/packages/client/__tests__/client.test.ts b/packages/client/__tests__/client.test.ts index 6f548d4de..1b047260c 100644 --- a/packages/client/__tests__/client.test.ts +++ b/packages/client/__tests__/client.test.ts @@ -5,9 +5,9 @@ const timeout = 30000; describe('Test client', () => { let client: ChainRegistryClient; - beforeAll((done) => { + beforeAll(async () => { client = new ChainRegistryClient({ chainNames: ['osmosis'] }); - client.fetch().then(() => done()); + await client.fetch(); }, timeout); it('Test fetching chain', () => { @@ -15,16 +15,20 @@ describe('Test client', () => { expect(chain?.chain_name).toEqual('osmosis'); }); - it('Test fetching chain ibc info', async () => { - expect(client.ibcInfo.length).toEqual(0); + it( + 'Test fetching chain ibc info', + async () => { + expect(client.ibcInfo.length).toEqual(0); - await client.fetch({ chainNames: ['juno'] }); + await client.fetch({ chainNames: ['juno'] }); - expect(client.urls.length).toEqual(5); - expect(client.chains.length).toEqual(2); - expect(client.ibcInfo.length).toEqual(1); - expect(client.ibcInfo[0].chain_1.chain_name).toEqual('juno'); - }); + expect(client.urls.length).toEqual(5); + expect(client.chains.length).toEqual(2); + expect(client.ibcInfo.length).toEqual(1); + expect(client.ibcInfo[0].chain_1.chain_name).toEqual('juno'); + }, + timeout + ); it('Test fetching asset list', () => { const chainData = client.getChainFullData('osmosis'); From cecb3489733e8d46d6ac604c6296694f48634fdf Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 11 Mar 2024 23:29:13 +0800 Subject: [PATCH 38/54] fix: clear nock after tests --- packages/client/__tests__/client-mock.test.ts | 16 ++++++++++------ packages/client/__tests__/utils.test.ts | 4 +++- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packages/client/__tests__/client-mock.test.ts b/packages/client/__tests__/client-mock.test.ts index a446acfcd..e699a3c42 100644 --- a/packages/client/__tests__/client-mock.test.ts +++ b/packages/client/__tests__/client-mock.test.ts @@ -21,18 +21,22 @@ describe('Test client', () => { let client: ChainRegistryClient; beforeAll(async () => { - nockByChainName('osmosis'); - client = new ChainRegistryClient({ chainNames: ['osmosis'] }); + nockByChainName('stargaze'); + client = new ChainRegistryClient({ chainNames: ['stargaze'] }); await client.fetch(); }); + afterAll(() => { + nock.restore(); + }); + it('Test mock fetching chain data', () => { - const chainData = client.getChain('osmosis'); - expect(chainData?.chain_name).toEqual('osmosis'); + const chainData = client.getChain('stargaze'); + expect(chainData?.chain_name).toEqual('stargaze'); }); it('Test mock fetching asset list', () => { - const assetList = client.getChainAssetList('osmosis'); - expect(assetList?.assets.length).toEqual(3); + const assetList = client.getChainAssetList('stargaze'); + expect(assetList?.assets.length).toEqual(1); }); }); diff --git a/packages/client/__tests__/utils.test.ts b/packages/client/__tests__/utils.test.ts index ce86f0ac0..13c15a97d 100644 --- a/packages/client/__tests__/utils.test.ts +++ b/packages/client/__tests__/utils.test.ts @@ -1,5 +1,7 @@ import { ChainRegistryClient, ChainUtils } from '../src'; +const timeout = 30000; + describe('tests for asset-list-util', () => { let utils: ChainUtils; @@ -14,7 +16,7 @@ describe('tests for asset-list-util', () => { assetList, ibcAssetList }); - }); + }, timeout); it('getAssetByDenom', () => { const asset = utils.getAssetByDenom('uosmo'); From 6706189d5cb8a75ab7abf0c9cd0dde5636d7da99 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Thu, 14 Mar 2024 02:54:02 +0000 Subject: [PATCH 39/54] =?UTF-8?q?build=20=F0=9F=9B=A0=20build-20240314-014?= =?UTF-8?q?012?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/src/mainnet/acrechain.ts | 42 + packages/assets/src/mainnet/agoric.ts | 42 + packages/assets/src/mainnet/akash.ts | 48 + packages/assets/src/mainnet/assetmantle.ts | 48 + packages/assets/src/mainnet/assets.ts | 4 + packages/assets/src/mainnet/axelar.ts | 177 + packages/assets/src/mainnet/bitcanna.ts | 48 + packages/assets/src/mainnet/bitsong.ts | 48 + packages/assets/src/mainnet/carbon.ts | 42 + packages/assets/src/mainnet/celestia.ts | 42 + packages/assets/src/mainnet/cheqd.ts | 47 + packages/assets/src/mainnet/chihuahua.ts | 48 + packages/assets/src/mainnet/cifer.ts | 13842 ++++++++++++++ packages/assets/src/mainnet/comdex.ts | 90 + packages/assets/src/mainnet/composable.ts | 90 + packages/assets/src/mainnet/coreum.ts | 44 + packages/assets/src/mainnet/cosmoshub.ts | 177 + packages/assets/src/mainnet/crescent.ts | 90 + packages/assets/src/mainnet/decentr.ts | 47 + packages/assets/src/mainnet/dig.ts | 48 + packages/assets/src/mainnet/doravota.ts | 44 + packages/assets/src/mainnet/dydx.ts | 42 + packages/assets/src/mainnet/dymension.ts | 42 + packages/assets/src/mainnet/emoney.ts | 48 + packages/assets/src/mainnet/evmos.ts | 42 + packages/assets/src/mainnet/furya.ts | 48 + packages/assets/src/mainnet/index.ts | 2 + packages/assets/src/mainnet/injective.ts | 42 + packages/assets/src/mainnet/juno.ts | 42 + packages/assets/src/mainnet/kava.ts | 44 + packages/assets/src/mainnet/kujira.ts | 90 + packages/assets/src/mainnet/mars.ts | 48 + packages/assets/src/mainnet/migaloo.ts | 92 + packages/assets/src/mainnet/neutron.ts | 550 +- packages/assets/src/mainnet/nibiru.ts | 15333 ++++++++++++++++ packages/assets/src/mainnet/noble.ts | 135 + packages/assets/src/mainnet/nois.ts | 92 + packages/assets/src/mainnet/okexchain.ts | 48 + packages/assets/src/mainnet/osmosis.ts | 231 +- packages/assets/src/mainnet/persistence.ts | 90 + packages/assets/src/mainnet/planq.ts | 44 + packages/assets/src/mainnet/quicksilver.ts | 48 + packages/assets/src/mainnet/secretnetwork.ts | 1631 +- packages/assets/src/mainnet/sei.ts | 42 + packages/assets/src/mainnet/sentinel.ts | 43 + packages/assets/src/mainnet/sifchain.ts | 48 + packages/assets/src/mainnet/sommelier.ts | 42 + packages/assets/src/mainnet/stargaze.ts | 90 + packages/assets/src/mainnet/stride.ts | 92 + packages/assets/src/mainnet/terra.ts | 48 + packages/assets/src/mainnet/terra2.ts | 90 + packages/assets/src/mainnet/umee.ts | 42 + packages/assets/src/testnet/noistestnet.ts | 53 + packages/assets/src/testnet/osmosistestnet.ts | 53 + .../assets/src/testnet/osmosistestnet4.ts | 53 + packages/chain-registry/chain-registry | 2 +- .../chain-registry/src/mainnet/akash/chain.ts | 4 +- packages/chain-registry/src/mainnet/assets.ts | 2 + .../chain-registry/src/mainnet/axelar/ibc.ts | 30 + .../src/mainnet/axelar/ibc_chain1.ts | 30 + .../src/mainnet/chain4energy/chain.ts | 4 + packages/chain-registry/src/mainnet/chains.ts | 2 + .../chain-registry/src/mainnet/cheqd/ibc.ts | 32 + .../src/mainnet/cheqd/ibc_chain1.ts | 32 + .../src/mainnet/chihuahua/chain.ts | 17 + .../chain-registry/src/mainnet/cifer/ibc.ts | 66 + .../src/mainnet/cifer/ibc_chain1.ts | 66 + .../chain-registry/src/mainnet/cifer/index.ts | 4 + .../chain-registry/src/mainnet/comdex/ibc.ts | 4 +- .../src/mainnet/comdex/ibc_chain1.ts | 4 +- .../src/mainnet/cosmoshub/ibc.ts | 31 + .../chain-registry/src/mainnet/decentr/ibc.ts | 28 + .../src/mainnet/decentr/ibc_chain1.ts | 28 + .../src/mainnet/dymension/chain.ts | 12 + .../src/mainnet/empowerchain/chain.ts | 5 +- .../src/mainnet/humans/assets.ts | 11 +- .../src/mainnet/humans/chain.ts | 8 +- packages/chain-registry/src/mainnet/ibc.ts | 4 + packages/chain-registry/src/mainnet/index.ts | 1 + .../chain-registry/src/mainnet/juno/assets.ts | 31 + .../chain-registry/src/mainnet/kujira/ibc.ts | 4 +- .../chain-registry/src/mainnet/lava/assets.ts | 48 + .../chain-registry/src/mainnet/lava/chain.ts | 95 + .../chain-registry/src/mainnet/lava/index.ts | 5 + .../src/mainnet/lumnetwork/chain.ts | 4 +- .../chain-registry/src/mainnet/neutron/ibc.ts | 14 +- .../src/mainnet/neutron/ibc_chain1.ts | 14 +- .../src/mainnet/nibiru/assets.ts | 2 +- .../chain-registry/src/mainnet/nibiru/ibc.ts | 94 + .../src/mainnet/nibiru/ibc_chain1.ts | 64 + .../src/mainnet/nibiru/index.ts | 4 + .../chain-registry/src/mainnet/noble/ibc.ts | 30 + .../chain-registry/src/mainnet/odin/ibc.ts | 2 +- .../src/mainnet/odin/ibc_chain1.ts | 2 +- .../src/mainnet/omniflixhub/chain.ts | 2 +- .../src/mainnet/osmosis/chain.ts | 8 + .../chain-registry/src/mainnet/osmosis/ibc.ts | 81 +- .../src/mainnet/osmosis/ibc_chain1.ts | 18 + .../src/mainnet/secretnetwork/ibc.ts | 46 +- .../chain-registry/src/mainnet/sei/assets.ts | 27 + .../src/mainnet/sentinel/chain.ts | 8 + .../src/mainnet/sentinel/ibc.ts | 28 + .../src/mainnet/stride/assets.ts | 37 + .../src/mainnet/stride/chain.ts | 13 +- .../chain-registry/src/mainnet/terra2/ibc.ts | 18 + packages/chain-registry/src/testnet/assets.ts | 2 + .../src/testnet/babylontestnet/chain.ts | 17 +- .../src/testnet/babylontestnet1/assets.ts | 33 + .../src/testnet/babylontestnet1/chain.ts | 65 + .../src/testnet/babylontestnet1/index.ts | 5 + packages/chain-registry/src/testnet/chains.ts | 2 + packages/chain-registry/src/testnet/index.ts | 1 + .../src/testnet/junotestnet/assets.ts | 47 + packages/juno/src/asset_list.ts | 42 + packages/juno/src/assets.ts | 31 + packages/juno/src/testnet_assets.ts | 47 + packages/osmosis/src/asset_list.ts | 231 +- packages/osmosis/src/chain.ts | 8 + 118 files changed, 35595 insertions(+), 650 deletions(-) create mode 100644 packages/assets/src/mainnet/cifer.ts create mode 100644 packages/assets/src/mainnet/nibiru.ts create mode 100644 packages/chain-registry/src/mainnet/cifer/ibc.ts create mode 100644 packages/chain-registry/src/mainnet/cifer/ibc_chain1.ts create mode 100644 packages/chain-registry/src/mainnet/lava/assets.ts create mode 100644 packages/chain-registry/src/mainnet/lava/chain.ts create mode 100644 packages/chain-registry/src/mainnet/lava/index.ts create mode 100644 packages/chain-registry/src/mainnet/nibiru/ibc.ts create mode 100644 packages/chain-registry/src/mainnet/nibiru/ibc_chain1.ts create mode 100644 packages/chain-registry/src/testnet/babylontestnet1/assets.ts create mode 100644 packages/chain-registry/src/testnet/babylontestnet1/chain.ts create mode 100644 packages/chain-registry/src/testnet/babylontestnet1/index.ts diff --git a/packages/assets/src/mainnet/acrechain.ts b/packages/assets/src/mainnet/acrechain.ts index 2fadd5480..7794ebcf3 100644 --- a/packages/assets/src/mainnet/acrechain.ts +++ b/packages/assets/src/mainnet/acrechain.ts @@ -18073,6 +18073,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/0A0EBCB578FCD339717D0E70C3A8FD20C641FBF191CF14FFA4BF92F8E8DE17F5', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/0A0EBCB578FCD339717D0E70C3A8FD20C641FBF191CF14FFA4BF92F8E8DE17F5', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-57', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-13' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/agoric.ts b/packages/assets/src/mainnet/agoric.ts index 844da09f1..db55822e8 100644 --- a/packages/assets/src/mainnet/agoric.ts +++ b/packages/assets/src/mainnet/agoric.ts @@ -19269,6 +19269,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/8C8DDC632CF94CC739C5428B81DA84AABD6A6CFDA6E16658A5E73F4EC017F718', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/8C8DDC632CF94CC739C5428B81DA84AABD6A6CFDA6E16658A5E73F4EC017F718', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-148', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-59' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/akash.ts b/packages/assets/src/mainnet/akash.ts index 47f77baef..3160a9332 100644 --- a/packages/assets/src/mainnet/akash.ts +++ b/packages/assets/src/mainnet/akash.ts @@ -737,6 +737,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/3C96A1D3B5FAEB38F07D8FEE2D249A7F059EC7DDF88F0E1880DA5216602D2EC6', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/3C96A1D3B5FAEB38F07D8FEE2D249A7F059EC7DDF88F0E1880DA5216602D2EC6', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-29', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-35' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', diff --git a/packages/assets/src/mainnet/assetmantle.ts b/packages/assets/src/mainnet/assetmantle.ts index 437156d42..cf44277d7 100644 --- a/packages/assets/src/mainnet/assetmantle.ts +++ b/packages/assets/src/mainnet/assetmantle.ts @@ -223,6 +223,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-83', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', diff --git a/packages/assets/src/mainnet/assets.ts b/packages/assets/src/mainnet/assets.ts index c6c97f66e..25ee51b77 100644 --- a/packages/assets/src/mainnet/assets.ts +++ b/packages/assets/src/mainnet/assets.ts @@ -24,6 +24,7 @@ import _cerberus from './cerberus'; import _chain4energy from './chain4energy'; import _cheqd from './cheqd'; import _chihuahua from './chihuahua'; +import _cifer from './cifer'; import _comdex from './comdex'; import _composable from './composable'; import _coreum from './coreum'; @@ -74,6 +75,7 @@ import _meme from './meme'; import _microtick from './microtick'; import _migaloo from './migaloo'; import _neutron from './neutron'; +import _nibiru from './nibiru'; import _noble from './noble'; import _nois from './nois'; import _nolus from './nolus'; @@ -149,6 +151,7 @@ const assets: AssetList[] = [ _chain4energy, _cheqd, _chihuahua, + _cifer, _comdex, _composable, _coreum, @@ -199,6 +202,7 @@ const assets: AssetList[] = [ _microtick, _migaloo, _neutron, + _nibiru, _noble, _nois, _nolus, diff --git a/packages/assets/src/mainnet/axelar.ts b/packages/assets/src/mainnet/axelar.ts index b8feca89a..ed86144a5 100644 --- a/packages/assets/src/mainnet/axelar.ts +++ b/packages/assets/src/mainnet/axelar.ts @@ -2855,6 +2855,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/AFBEE6FC205C3532CECBC8692BBD4339DF141C008DD98564819872C315BDDE29', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/AFBEE6FC205C3532CECBC8692BBD4339DF141C008DD98564819872C315BDDE29', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-71', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -6001,6 +6049,49 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Nibiru network', + denom_units: [ + { + denom: + 'ibc/52C9B73B0D9665A4FA1E973B001A83FCFF3B6062E44B564230D20536F1103112', + exponent: 0, + aliases: ['unibi'] + }, + { + denom: 'nibi', + exponent: 6 + } + ], + base: 'ibc/52C9B73B0D9665A4FA1E973B001A83FCFF3B6062E44B564230D20536F1103112', + name: 'Nibiru', + display: 'nibi', + symbol: 'NIBI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + }, + coingecko_id: 'nibiru', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: 'unibi', + chain_name: 'nibiru' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, { description: 'Staking and governance token for ODIN Protocol', denom_units: [ @@ -20439,6 +20530,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/097C7F089CC601CDDB8AF64B2F5C81171619B28967F44D7E5B70F50D5CC8903E', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/097C7F089CC601CDDB8AF64B2F5C81171619B28967F44D7E5B70F50D5CC8903E', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-103' + } + } + ] + }, { description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', @@ -20916,6 +21051,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/BC7C43B72F3BFE01C3258AD6A3096ED1403366F1BEA54EA313E90EB3DE862A71', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/BC7C43B72F3BFE01C3258AD6A3096ED1403366F1BEA54EA313E90EB3DE862A71', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-69', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-64' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/bitcanna.ts b/packages/assets/src/mainnet/bitcanna.ts index 1a5706c6d..c0419f1d3 100644 --- a/packages/assets/src/mainnet/bitcanna.ts +++ b/packages/assets/src/mainnet/bitcanna.ts @@ -1155,6 +1155,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/008FD7A6D0586413A2AD4120B1D4ABA3B25EF7C69A641B732C89D2740A800872', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/008FD7A6D0586413A2AD4120B1D4ABA3B25EF7C69A641B732C89D2740A800872', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-50', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/bitsong.ts b/packages/assets/src/mainnet/bitsong.ts index 907e8e644..817aa47c1 100644 --- a/packages/assets/src/mainnet/bitsong.ts +++ b/packages/assets/src/mainnet/bitsong.ts @@ -1865,6 +1865,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/C90D6643E7A81663DDD073AADAE8EC3B40FA33F9B3C2B34928C01AABE9259BA6', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/C90D6643E7A81663DDD073AADAE8EC3B40FA33F9B3C2B34928C01AABE9259BA6', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/carbon.ts b/packages/assets/src/mainnet/carbon.ts index 7762f507d..1b874a157 100644 --- a/packages/assets/src/mainnet/carbon.ts +++ b/packages/assets/src/mainnet/carbon.ts @@ -16276,6 +16276,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-8' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/celestia.ts b/packages/assets/src/mainnet/celestia.ts index e968d2909..1d6ea3ead 100644 --- a/packages/assets/src/mainnet/celestia.ts +++ b/packages/assets/src/mainnet/celestia.ts @@ -17991,6 +17991,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/F1C82AD1D86EA917ED8299EEE4242EBD8CCABD31425F7600FAB30748CFAB2ED5', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/F1C82AD1D86EA917ED8299EEE4242EBD8CCABD31425F7600FAB30748CFAB2ED5', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-162', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/cheqd.ts b/packages/assets/src/mainnet/cheqd.ts index 87ebc4d30..dce57b0e6 100644 --- a/packages/assets/src/mainnet/cheqd.ts +++ b/packages/assets/src/mainnet/cheqd.ts @@ -14129,6 +14129,53 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/C0DD602D2B4CA12D9BB1FEEEF23D0042473264FFB8A7D88CEDE4FAACC628FADF', + exponent: 0, + aliases: ['uscrt'] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + base: 'ibc/C0DD602D2B4CA12D9BB1FEEEF23D0042473264FFB8A7D88CEDE4FAACC628FADF', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + coingecko_id: 'secret', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-141', + base_denom: 'uscrt', + chain_name: 'secretnetwork' + }, + chain: { + channel_id: 'channel-36' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/chihuahua.ts b/packages/assets/src/mainnet/chihuahua.ts index e6215f86b..60a03c98d 100644 --- a/packages/assets/src/mainnet/chihuahua.ts +++ b/packages/assets/src/mainnet/chihuahua.ts @@ -223,6 +223,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/0B6B29327FDB6A05CBB3107421FBBEA874967BA68590065E971DFF986F682317', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/0B6B29327FDB6A05CBB3107421FBBEA874967BA68590065E971DFF986F682317', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-28', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-11' + } + } + ] + }, { description: 'The native token of Migaloo Chain', denom_units: [ diff --git a/packages/assets/src/mainnet/cifer.ts b/packages/assets/src/mainnet/cifer.ts new file mode 100644 index 000000000..c54056484 --- /dev/null +++ b/packages/assets/src/mainnet/cifer.ts @@ -0,0 +1,13842 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'cifer', + assets: [ + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6 + } + ], + base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + name: 'Cosmos Hub Atom', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + coingecko_id: 'cosmos', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + socials: { + webiste: 'https://cosmos.network', + twitter: 'https://twitter.com/cosmoshub' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'uatom', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'Tether USDt on the Cosmos Hub', + denom_units: [ + { + denom: + 'ibc/BB816E4CD95F1E1A446D7282C9F3D05F99D2E6B5EBA12E3AF6A8F8281DB84AEB', + exponent: 0, + aliases: [ + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BB816E4CD95F1E1A446D7282C9F3D05F99D2E6B5EBA12E3AF6A8F8281DB84AEB', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'FX on Cosmos Hub', + denom_units: [ + { + denom: + 'ibc/EBBE6553941A1F0111A9163F885F7665417467FB630D68F5D4F15425C1E64FDE', + exponent: 0, + aliases: [ + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/EBBE6553941A1F0111A9163F885F7665417467FB630D68F5D4F15425C1E64FDE', + name: 'Function X', + display: 'FX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729', + chain_name: 'cosmoshub' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'fxcore', + base_denom: 'FX' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/2CB7467E9AF4AEC7EC0706269E23E11B1D50EA23C64B2EC2C3937F5EF6185CCC', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2CB7467E9AF4AEC7EC0706269E23E11B1D50EA23C64B2EC2C3937F5EF6185CCC', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/5E1B666582442618E07B3678DB72825E9BEB85F93A4E69CFD6968614E36EB09D', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5E1B666582442618E07B3678DB72825E9BEB85F93A4E69CFD6968614E36EB09D', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/AD6BB6FE1EBE50CE2274D05FD0E4ACDB9B822EDF50EA4574EAB1F13823FBD7F7', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AD6BB6FE1EBE50CE2274D05FD0E4ACDB9B822EDF50EA4574EAB1F13823FBD7F7', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/FC53995E0C27D5C89150ED03BDB5792BF065DEE2A431AA25D16B27036A1ECD5A', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FC53995E0C27D5C89150ED03BDB5792BF065DEE2A431AA25D16B27036A1ECD5A', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/631B0CB59966C11892C90E71DCC88192F708FC7A153BA68AA283F3BD0E5D5F8E', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/631B0CB59966C11892C90E71DCC88192F708FC7A153BA68AA283F3BD0E5D5F8E', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/012D558C43153942D6D0926F3BFA083D9717A1D74DCCDFFFA1E1B41ED8873B73', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/012D558C43153942D6D0926F3BFA083D9717A1D74DCCDFFFA1E1B41ED8873B73', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/4128D5DDF2EF8776B5C704C3153E1CBEC5DABC04DB0CC6221EDCC342EB04779C', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/4128D5DDF2EF8776B5C704C3153E1CBEC5DABC04DB0CC6221EDCC342EB04779C', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/52E919F9B5BAA17A48892BFE2B1E28D1962556E587371966A0D36E97B410C443', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/52E919F9B5BAA17A48892BFE2B1E28D1962556E587371966A0D36E97B410C443', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/2B94FEE34352B0065FB1F2AADD5BA27BC4C3F03E09EB292EB4B83357D6C3BB15', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2B94FEE34352B0065FB1F2AADD5BA27BC4C3F03E09EB292EB4B83357D6C3BB15', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/312F13C9A9ECCE611FE8112B5ABCF0A14DE2C3937E38DEBF6B73F2534A83464E', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/312F13C9A9ECCE611FE8112B5ABCF0A14DE2C3937E38DEBF6B73F2534A83464E', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/297C9DA1EB9A64082E6D79F02055BB98ECB1554FD993315447C209F74D1D2040', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/297C9DA1EB9A64082E6D79F02055BB98ECB1554FD993315447C209F74D1D2040', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/C8E5515A75654FECCC11BF8D412DD5D0FD4625112E9CECBB918C17D3420D1EC4', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C8E5515A75654FECCC11BF8D412DD5D0FD4625112E9CECBB918C17D3420D1EC4', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/543B2D94FE9A137AB49F2E5E72B73278CEB0D58790A2B904DF94A9322BCFD95F', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/543B2D94FE9A137AB49F2E5E72B73278CEB0D58790A2B904DF94A9322BCFD95F', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/D418F8D0A37E1432257C236E794CAB2F2F20D4CF55C31A5E265C38A12FA5DDDB', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D418F8D0A37E1432257C236E794CAB2F2F20D4CF55C31A5E265C38A12FA5DDDB', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/E22CD281FE68D946539C2CB144FF6EFD4ECE273E7D65FABB8DF971DDBDE8840C', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E22CD281FE68D946539C2CB144FF6EFD4ECE273E7D65FABB8DF971DDBDE8840C', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/E605FC2E6FA2ADBCD1F18A6F38A8A7B78D95E153FB264903547F7D864BAA63A3', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E605FC2E6FA2ADBCD1F18A6F38A8A7B78D95E153FB264903547F7D864BAA63A3', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/2EE34CCEA1790C5561291891B23A7434E8CFD15D1ECC031E2AA5C76C999BBE36', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2EE34CCEA1790C5561291891B23A7434E8CFD15D1ECC031E2AA5C76C999BBE36', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/F64A33B775D526E2E174F9199A2588C95524BC045AF5844C6D65D573DB181151', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F64A33B775D526E2E174F9199A2588C95524BC045AF5844C6D65D573DB181151', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/D293BD3B54F89DCD2DCFE7E8EE00CA3BF7FBA9495A792CB05881CAEFB8A65030', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D293BD3B54F89DCD2DCFE7E8EE00CA3BF7FBA9495A792CB05881CAEFB8A65030', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/1D182135D443B4660357A43C8EFEF3DC0C6FEC9F3336724E1081526156D0F3BC', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/1D182135D443B4660357A43C8EFEF3DC0C6FEC9F3336724E1081526156D0F3BC', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/F50F1BAEB89A5FFF662C91EC99AC69331EDAFB1901D52405D93870EB73BFB7CC', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F50F1BAEB89A5FFF662C91EC99AC69331EDAFB1901D52405D93870EB73BFB7CC', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/DE7D558D3A072554A9DFFBFFED1EA3E475CDBAF1E177FA4656F4753A84A6AEBC', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DE7D558D3A072554A9DFFBFFED1EA3E475CDBAF1E177FA4656F4753A84A6AEBC', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/1176840405B310B46F80F9550D1E9040E9D3D5EF825461E8AC4076D051EA20ED', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1176840405B310B46F80F9550D1E9040E9D3D5EF825461E8AC4076D051EA20ED', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/9167D1164E9ADD09EE5B6EB5DB645C950EE6A7DB049C7764D14E3C8D16C8F9B0', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9167D1164E9ADD09EE5B6EB5DB645C950EE6A7DB049C7764D14E3C8D16C8F9B0', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/6A4E8E4315ABA3D70C0B97DBC6B2BE09445FEA1E07CF5E1353EE9258AC9159DF', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A4E8E4315ABA3D70C0B97DBC6B2BE09445FEA1E07CF5E1353EE9258AC9159DF', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/99F7D89E2D319C6DD9B2CFD6D28443F08F2C8D43CD78A7EABD0478441560AE46', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/99F7D89E2D319C6DD9B2CFD6D28443F08F2C8D43CD78A7EABD0478441560AE46', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/36F531CC3E89DF43E5C8B0F54C7DB451D683B93A3A619535DE04B1B1FF280027', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/36F531CC3E89DF43E5C8B0F54C7DB451D683B93A3A619535DE04B1B1FF280027', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/BCD730EF99878074FC4B17953CFDAF00C4A90EE131C4880AA4D13AA103CC17B6', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/BCD730EF99878074FC4B17953CFDAF00C4A90EE131C4880AA4D13AA103CC17B6', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/7DE942C445BB39CDE5AD47C76BB713DA3EC3CE7D81E6A858774E87BC6AA618DD', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7DE942C445BB39CDE5AD47C76BB713DA3EC3CE7D81E6A858774E87BC6AA618DD', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/3E79211D9C8D5F0FB0A5FE0346739D5601A9BA688852676F19017EFD335A87A7', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3E79211D9C8D5F0FB0A5FE0346739D5601A9BA688852676F19017EFD335A87A7', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/9008A06C6C1309016F1102D1A1C3EBD3B30694F9907F78086C43F23831CCB4F3', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9008A06C6C1309016F1102D1A1C3EBD3B30694F9907F78086C43F23831CCB4F3', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/FA161FDACFFB8A4EB75393B68CE4D81E781A9E530C437A4CF581A2D954E6432D', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA161FDACFFB8A4EB75393B68CE4D81E781A9E530C437A4CF581A2D954E6432D', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/C80930149284D56D214B35E7A088944892A4F8A3E65297AD571AC5A0967D3614', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C80930149284D56D214B35E7A088944892A4F8A3E65297AD571AC5A0967D3614', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/1A1DBCBEDD241F61712C3591E5694AF974926F8B5493BB3201457B9233409A66', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1A1DBCBEDD241F61712C3591E5694AF974926F8B5493BB3201457B9233409A66', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/B7D8CF7BE4D82A74DFAC09498CF5A94984F83D3CABEE09C17642EA6F0B560E5F', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B7D8CF7BE4D82A74DFAC09498CF5A94984F83D3CABEE09C17642EA6F0B560E5F', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/D342CE2894D7B3C1082FAF18E3A670F141F1ADC989D230D5B3C8D1BBC4AE9EF2', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D342CE2894D7B3C1082FAF18E3A670F141F1ADC989D230D5B3C8D1BBC4AE9EF2', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/8CDDBE338A09671760815DFB91F43E4E910E1E285FAD1B2A8DB62D2B0F62639A', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8CDDBE338A09671760815DFB91F43E4E910E1E285FAD1B2A8DB62D2B0F62639A', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/6B0F37D98E7A52CDDAAD5E1EF08E50A233CF1B3D130A40FF57BAFF3273FB84DF', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6B0F37D98E7A52CDDAAD5E1EF08E50A233CF1B3D130A40FF57BAFF3273FB84DF', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/92D578E46C8D7D851230AD79A67FD0F861ACE4764ACCA84DE7F4A4011108B852', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/92D578E46C8D7D851230AD79A67FD0F861ACE4764ACCA84DE7F4A4011108B852', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/2C6306C07778C5DA42F05B1FAC5400EEE101579DF977BA2CE5A15A8F12142B96', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/2C6306C07778C5DA42F05B1FAC5400EEE101579DF977BA2CE5A15A8F12142B96', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/71CEEB5CC09F75A3ACDC417108C14514351B6B2A540ACE9B37A80BF930845134', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/71CEEB5CC09F75A3ACDC417108C14514351B6B2A540ACE9B37A80BF930845134', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/3160BE7F2CD211E6E605D425E94336894C622C454BF3433274337EF71D85D98B', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3160BE7F2CD211E6E605D425E94336894C622C454BF3433274337EF71D85D98B', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/792B4D7FAC332A1C35144D32754995B5C4A7D17786BD97C053E1E376FD808773', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/792B4D7FAC332A1C35144D32754995B5C4A7D17786BD97C053E1E376FD808773', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/ED0B535DB2F78A41628C6CE475305D7FD8AB04B6EA9ECEC3461416635133A364', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ED0B535DB2F78A41628C6CE475305D7FD8AB04B6EA9ECEC3461416635133A364', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/4DE84C92C714009D07AFEA7350AB3EC383536BB0FAAD7AF9C0F1A0BEA169304E', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4DE84C92C714009D07AFEA7350AB3EC383536BB0FAAD7AF9C0F1A0BEA169304E', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/7B413D046BD2FC5C16012A33F584B9B478DF88AAE854CA75236D8846AF881C1F', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/7B413D046BD2FC5C16012A33F584B9B478DF88AAE854CA75236D8846AF881C1F', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/9874E37C19E895EA202446AB8C8CB31325A36D86170840C4FF7677F4B9FD825C', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9874E37C19E895EA202446AB8C8CB31325A36D86170840C4FF7677F4B9FD825C', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/6A7C79E7EF6A157202227051FBE6F75C80B00D9802CE3F09FC7F7B239330823D', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6A7C79E7EF6A157202227051FBE6F75C80B00D9802CE3F09FC7F7B239330823D', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/C411013EEC3433ADA8667B3AEE2791248A1A3052733636EC4871D253F33F7B84', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C411013EEC3433ADA8667B3AEE2791248A1A3052733636EC4871D253F33F7B84', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/B95974EEB526AFAFF04AC0EB1F91157EC11C3BDDFDA88BBBC2DB70EB85B1B441', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B95974EEB526AFAFF04AC0EB1F91157EC11C3BDDFDA88BBBC2DB70EB85B1B441', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/CE4D915EC883802333CE8A326AF9D64E82F72C333B188629B4534F301C4380FA', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE4D915EC883802333CE8A326AF9D64E82F72C333B188629B4534F301C4380FA', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/2DA72612DD43B6EF1256A59A571DE14DF9555C105806101B7698A79C0A9E1469', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/2DA72612DD43B6EF1256A59A571DE14DF9555C105806101B7698A79C0A9E1469', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/93588284C3DE99D3274FBFAA0CA286A367E27724CEFB4D2D3DA18CBEFD36870F', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/93588284C3DE99D3274FBFAA0CA286A367E27724CEFB4D2D3DA18CBEFD36870F', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/0429A217F7AFD21E67CABA80049DD56BB0380B77E9C58C831366D6626D42F399', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0429A217F7AFD21E67CABA80049DD56BB0380B77E9C58C831366D6626D42F399', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/BF25D70C6347C21597B23469BD91DD5E9493E973E7FC853A6DA57A6D6CFAEBDF', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF25D70C6347C21597B23469BD91DD5E9493E973E7FC853A6DA57A6D6CFAEBDF', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/4814BE3910462E6786EDC01602C516C8E98383AE2F4EF5904032B052F1D44BA3', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4814BE3910462E6786EDC01602C516C8E98383AE2F4EF5904032B052F1D44BA3', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/BC69F5E36389A01C069251D708BEFDC427649ECC855B2488363E85D4D05AFB34', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BC69F5E36389A01C069251D708BEFDC427649ECC855B2488363E85D4D05AFB34', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/2B55B39DC09F200CE894D8ED47A75025B80810211A6B2AAAEEA1789AFA17D8A0', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2B55B39DC09F200CE894D8ED47A75025B80810211A6B2AAAEEA1789AFA17D8A0', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/6AFD52809824034A00BE8DB40A6F5AD3DB6A5BAAB638A854CEC943FF8DAEFEC0', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/6AFD52809824034A00BE8DB40A6F5AD3DB6A5BAAB638A854CEC943FF8DAEFEC0', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/651256AB7202C0749C93F754B9FA78A8F0DD9E372A41BFE98AC0010C1DDF24FC', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/651256AB7202C0749C93F754B9FA78A8F0DD9E372A41BFE98AC0010C1DDF24FC', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/D47E5B5BECCD4476EBF56F189C8752F32FEEDE221EB93D1192A96931333E3633', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/D47E5B5BECCD4476EBF56F189C8752F32FEEDE221EB93D1192A96931333E3633', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/BB6EC5296E65C931E6A81AF3B894FB5613A7B3D9DD90884A8F675E6B7C5926A0', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BB6EC5296E65C931E6A81AF3B894FB5613A7B3D9DD90884A8F675E6B7C5926A0', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/707FB5D514DFBB0BFCAF3EA1ECE070569106521140FCF372EC10E700FE9FC34E', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/707FB5D514DFBB0BFCAF3EA1ECE070569106521140FCF372EC10E700FE9FC34E', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/A1A99F1B8EA91677FE4080D01F0710E892F9C0759BCC6630D2F046DCD76AB364', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A1A99F1B8EA91677FE4080D01F0710E892F9C0759BCC6630D2F046DCD76AB364', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/EC81B1665A1CD41462699263688B6D6C08282BFF8296FC036A5A60D656679383', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EC81B1665A1CD41462699263688B6D6C08282BFF8296FC036A5A60D656679383', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/2C8A3370371F5CF1F6C5F8C813E41A6ECFDE1208AFEBAB3E9271175D99470DCD', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2C8A3370371F5CF1F6C5F8C813E41A6ECFDE1208AFEBAB3E9271175D99470DCD', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/6DBF8A1D7218C88150EE7B66F9C5FD7263E77FA1CCED0664C93C7B7CE716C8B6', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6DBF8A1D7218C88150EE7B66F9C5FD7263E77FA1CCED0664C93C7B7CE716C8B6', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/7BCA9043748C23E03C19D60367659D50582E711F0FDEFE5E3CE4A7C4EC7BA634', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7BCA9043748C23E03C19D60367659D50582E711F0FDEFE5E3CE4A7C4EC7BA634', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/D045F48450C57C67C88BD24BEED657B41A1B62260F8A743E5EF847804DA2C626', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D045F48450C57C67C88BD24BEED657B41A1B62260F8A743E5EF847804DA2C626', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/964A3181755675A70C513814652CA230FF6710D489131600AB8D76C5238DF590', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/964A3181755675A70C513814652CA230FF6710D489131600AB8D76C5238DF590', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/78CA5588B4EBA26FA724D91968BB09500473FA920C31E06D4779BA6D1F8509F4', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/78CA5588B4EBA26FA724D91968BB09500473FA920C31E06D4779BA6D1F8509F4', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/0B7E0C27F625CE4F35769F769436BF4504D42FCF37435ABB3E85B8AD011AE049', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0B7E0C27F625CE4F35769F769436BF4504D42FCF37435ABB3E85B8AD011AE049', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/7AD4853C2E3835ABB11FADCAEB3D0E14D8A95F3E36A945EF3C75F19BAED1736B', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7AD4853C2E3835ABB11FADCAEB3D0E14D8A95F3E36A945EF3C75F19BAED1736B', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/4A997E39B8513DE2D4EEA875EE667A604B21B5010EA7BA5A9635AA96DF57EE7E', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4A997E39B8513DE2D4EEA875EE667A604B21B5010EA7BA5A9635AA96DF57EE7E', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/E3A8A9DB85F92BDDDB5FB0A4BB3318E00342F2D0DEBF5D78A8CEADE3170E0003', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E3A8A9DB85F92BDDDB5FB0A4BB3318E00342F2D0DEBF5D78A8CEADE3170E0003', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/876EB9D6FDB0A70E443654F7D2B23DFBB65553BC52B7B5261DBF06D45A09B171', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/876EB9D6FDB0A70E443654F7D2B23DFBB65553BC52B7B5261DBF06D45A09B171', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/338D2DB6F58921A72BD9F7B834AA9E05A3FC40D4FCCBEF3DB90EBACB230CCE96', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/338D2DB6F58921A72BD9F7B834AA9E05A3FC40D4FCCBEF3DB90EBACB230CCE96', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/F8B149C9178E466D0C1CF4AC32095AFA3CEA6E08C2CD5A6EF260038640F9F1E3', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F8B149C9178E466D0C1CF4AC32095AFA3CEA6E08C2CD5A6EF260038640F9F1E3', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/96F304DB6E50259FF1DA6B48C152AEDEC330EA14EF3D54DC335DEEB946A23DE5', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/96F304DB6E50259FF1DA6B48C152AEDEC330EA14EF3D54DC335DEEB946A23DE5', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/DA8FA29AADFF7FBB343222FC46B948570C3E1988C9263F479402DCE02E93A943', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DA8FA29AADFF7FBB343222FC46B948570C3E1988C9263F479402DCE02E93A943', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/74D90CE41A8B0A9AF1D9E81AF055E26CAB38DBCF76A9E57792E056088A13A663', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/74D90CE41A8B0A9AF1D9E81AF055E26CAB38DBCF76A9E57792E056088A13A663', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/8B3794B64868AEDE8DA9D980B088781C79FD89112865D005E766FE77F63DBE42', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8B3794B64868AEDE8DA9D980B088781C79FD89112865D005E766FE77F63DBE42', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/B43E055EFD682A07B8F443AC75678CC8D4B0AB6CF4F1F16CAEE860388E7FFE72', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B43E055EFD682A07B8F443AC75678CC8D4B0AB6CF4F1F16CAEE860388E7FFE72', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/7FA0C4A7E9E775DBFBBDC739EDA85A05A6142735F98C6B61779A408EAD887470', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7FA0C4A7E9E775DBFBBDC739EDA85A05A6142735F98C6B61779A408EAD887470', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/F24F398502E51346EB75FC9BC4C0975E1F18F0CF065983C70954A805AF5E4E65', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F24F398502E51346EB75FC9BC4C0975E1F18F0CF065983C70954A805AF5E4E65', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/9671F635C00F1EF935DBA87F1C7DA67FACB934E8E58ADF40A7702BE1693CEC96', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9671F635C00F1EF935DBA87F1C7DA67FACB934E8E58ADF40A7702BE1693CEC96', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/084AE46A6020798887118837D93C5B786B5590D16A24653E505CFE42E75A72B3', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/084AE46A6020798887118837D93C5B786B5590D16A24653E505CFE42E75A72B3', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/B8081613F611A50DF2007A8D35131F735D62B08806D06C714340B3D13CA63180', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B8081613F611A50DF2007A8D35131F735D62B08806D06C714340B3D13CA63180', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/BAB3B24F4E860E1DD8130333B49AE14C52E5F615E4E9D91EE746D1F38D386ACC', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BAB3B24F4E860E1DD8130333B49AE14C52E5F615E4E9D91EE746D1F38D386ACC', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/7A49CE9D4CC9298DD183F53CA6E9F41E7F20E44773006ABA995448EA4DE9AEF6', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7A49CE9D4CC9298DD183F53CA6E9F41E7F20E44773006ABA995448EA4DE9AEF6', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/4CB6526F0BD50F992C6AD1D3453A0DA073FBC76E71E32B070BDCFCA0CA48A3F0', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4CB6526F0BD50F992C6AD1D3453A0DA073FBC76E71E32B070BDCFCA0CA48A3F0', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/ADC31C3F69914603A120466D02432ED2821E7F3F8B8692DB201EF78BCA0D89DC', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ADC31C3F69914603A120466D02432ED2821E7F3F8B8692DB201EF78BCA0D89DC', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/92FA44E38E4EEA88A776F15E12F2F59FF4F7717C46767EC51E3987C5852FE417', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92FA44E38E4EEA88A776F15E12F2F59FF4F7717C46767EC51E3987C5852FE417', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/427E68C90FFD68C9F3B77055E267FF9F3950AA81CE33208BA64DB5B50148730B', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/427E68C90FFD68C9F3B77055E267FF9F3950AA81CE33208BA64DB5B50148730B', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/91B849CA39D9494F252ED9241E31F41CAA666A743034C612B26E938BFD85C343', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/91B849CA39D9494F252ED9241E31F41CAA666A743034C612B26E938BFD85C343', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/FB78490E46626AFBD25E1AB64F561404F1FC73743A132E56AC71216067BC6EC8', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB78490E46626AFBD25E1AB64F561404F1FC73743A132E56AC71216067BC6EC8', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/D83ADEB6C3489A7324B6101F94807372F6265EC5C6824216983D8CBBB323ED99', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D83ADEB6C3489A7324B6101F94807372F6265EC5C6824216983D8CBBB323ED99', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/4688EAC9AA3CD61D871C88C21BA80BB27E85032F9966446FCECCCC46779C9932', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4688EAC9AA3CD61D871C88C21BA80BB27E85032F9966446FCECCCC46779C9932', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/33A1871003A2DFAD3F92BC422AE086C52871413F004208FFC848CE5F89247117', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/33A1871003A2DFAD3F92BC422AE086C52871413F004208FFC848CE5F89247117', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/16CF38F8C53F179370C68CE27F6D5F561E9D1571781E05A24C67EF39766710E1', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/16CF38F8C53F179370C68CE27F6D5F561E9D1571781E05A24C67EF39766710E1', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/D13FD19B13B9CA7D5DC3229DE73F52877EADEA1A94603037F7889732E4DF0405', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D13FD19B13B9CA7D5DC3229DE73F52877EADEA1A94603037F7889732E4DF0405', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/EDE3B24885877D7BAF988C329248C94031F3415F049B480A6CCEEF3CDFBA2800', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/EDE3B24885877D7BAF988C329248C94031F3415F049B480A6CCEEF3CDFBA2800', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/9651138BC1280F61D93225EFC864376220FAF1F1545CED6F2CB576D9C8158638', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9651138BC1280F61D93225EFC864376220FAF1F1545CED6F2CB576D9C8158638', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/ABA5A8F111DB1D4E2FBACD2299B8DA63982602C964B78EFEC5860787DCB81507', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/ABA5A8F111DB1D4E2FBACD2299B8DA63982602C964B78EFEC5860787DCB81507', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/28F026607184B151F1F7D7F5D8AE644528550EB05203A28B6233DFA923669876', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/28F026607184B151F1F7D7F5D8AE644528550EB05203A28B6233DFA923669876', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/F1131F2B2142BFDA739982DB60ECF87A9148794A4D7F83254025CB2268151E77', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F1131F2B2142BFDA739982DB60ECF87A9148794A4D7F83254025CB2268151E77', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/2F83F6265AD379DAED175C0915BA78B3DB31E08276B57579770CF20518F1BCA8', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2F83F6265AD379DAED175C0915BA78B3DB31E08276B57579770CF20518F1BCA8', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/AD706C6583FADB03FAD66DA7D5A0DE79A166D1F7B88C9E8C24C23EF9EE400794', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/AD706C6583FADB03FAD66DA7D5A0DE79A166D1F7B88C9E8C24C23EF9EE400794', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/0B89E06E3837BDB7C444E930A5439026F198C07B2385D842266B1A7788B07C7B', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0B89E06E3837BDB7C444E930A5439026F198C07B2385D842266B1A7788B07C7B', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/714C0F970BFF25EE2C5E4DF71D345A4C0C8277DE56551539B3FEAADDE8D87C1A', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/714C0F970BFF25EE2C5E4DF71D345A4C0C8277DE56551539B3FEAADDE8D87C1A', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/147924BA590A62E546294E0FEF44BDFB2C0B3FD9B2E56E257F269543400B4E8D', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/147924BA590A62E546294E0FEF44BDFB2C0B3FD9B2E56E257F269543400B4E8D', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/F20C98087A8C385AF799325F728FF476CD14172BF1A947007A450EE3C879EEA3', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F20C98087A8C385AF799325F728FF476CD14172BF1A947007A450EE3C879EEA3', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/B6A3E484D8D24E398E02B579BE805348F0A1442A052DD42DA81B197243E1E93F', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B6A3E484D8D24E398E02B579BE805348F0A1442A052DD42DA81B197243E1E93F', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/EC106EC2773C0CD6AA6088B6B93B28F1F0E23ED06D111DDFA8195EA5DCD0A065', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EC106EC2773C0CD6AA6088B6B93B28F1F0E23ED06D111DDFA8195EA5DCD0A065', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/67B3359A7D754A617FE8A9C727A098ECA9B51C193FD52B908386EF8A4B01C4AC', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/67B3359A7D754A617FE8A9C727A098ECA9B51C193FD52B908386EF8A4B01C4AC', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/24E65750409812BEF0FA5A7C3C52887033C6D33CF53CBAFA55DA824913428884', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/24E65750409812BEF0FA5A7C3C52887033C6D33CF53CBAFA55DA824913428884', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/24E0508083502D0F7272D4E9814FCC80CEE540F84B96FCE0ED01EA40DB6D5B0B', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/24E0508083502D0F7272D4E9814FCC80CEE540F84B96FCE0ED01EA40DB6D5B0B', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/B3675797F19F2D08F11D1798B2BA748F9C394C04D05ED429967536DA01526AB2', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B3675797F19F2D08F11D1798B2BA748F9C394C04D05ED429967536DA01526AB2', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/71855D735E860697FC39A14BF24D8E2A336FEF24842DE27341230C1542D56387', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/71855D735E860697FC39A14BF24D8E2A336FEF24842DE27341230C1542D56387', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/42B3B278C89739653FD66A255AF4D2AADDE38B09A25C5B85911B8ABE9D962362', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/42B3B278C89739653FD66A255AF4D2AADDE38B09A25C5B85911B8ABE9D962362', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/30F39EA2B994E078363C21A7360C6A5C986CEEF1E5FE8CD61A2AC9D778746EB8', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/30F39EA2B994E078363C21A7360C6A5C986CEEF1E5FE8CD61A2AC9D778746EB8', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/87F861CEB4D92D78F8923E8A56132C83D1B33BA74C8853436A693F264983E5B4', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/87F861CEB4D92D78F8923E8A56132C83D1B33BA74C8853436A693F264983E5B4', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/5BC28BFED2C371EB29B19F0CD033337DF70E1ED9161B7718641169394017C378', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5BC28BFED2C371EB29B19F0CD033337DF70E1ED9161B7718641169394017C378', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/A72454B86CA8B41CBC25CDF7A30237812D0230573AFA7792B028B0DE3E964EDE', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A72454B86CA8B41CBC25CDF7A30237812D0230573AFA7792B028B0DE3E964EDE', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/A11552A67296E769028F0D04C32EBF5C140399835D4D4B6B6DBDA85245B41EBC', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A11552A67296E769028F0D04C32EBF5C140399835D4D4B6B6DBDA85245B41EBC', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/BCD14CF459D7F71AA618BBF8E2F31A82F572C134FED226CD662B2B5181377BC0', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/BCD14CF459D7F71AA618BBF8E2F31A82F572C134FED226CD662B2B5181377BC0', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/603AD72FD9BF12E1277ECF24DEA09B1052EA5D7013FC34B79F0A4D708735C64C', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/603AD72FD9BF12E1277ECF24DEA09B1052EA5D7013FC34B79F0A4D708735C64C', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/170FF3B0DFE79AD56F9B496E09C6A474DEC7856BDDD212898B516DEC5F0D0007', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/170FF3B0DFE79AD56F9B496E09C6A474DEC7856BDDD212898B516DEC5F0D0007', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/AEDE64A7D01F8EF8D61FEDB03FF2865584A8027EE3DD2C75103926B8267D3FCA', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AEDE64A7D01F8EF8D61FEDB03FF2865584A8027EE3DD2C75103926B8267D3FCA', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/783F5F8F6B41874487C3B09A2306FD5E59B9B740F930A39DD55B08CF7CB8CBF0', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/783F5F8F6B41874487C3B09A2306FD5E59B9B740F930A39DD55B08CF7CB8CBF0', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/385A29AEAF69FE286A153AF88667959529156F7340935A4C35294148E8ED8BEC', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/385A29AEAF69FE286A153AF88667959529156F7340935A4C35294148E8ED8BEC', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B4B209594018FEF867E3A614F65B7F8126CA8F9E92DF070DB36FD250C1361CFA', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B4B209594018FEF867E3A614F65B7F8126CA8F9E92DF070DB36FD250C1361CFA', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/E5D2B6D2AD60E9AE82DE37871B32A425D38607EEBB64B6B1F8DB79D8AC48497C', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E5D2B6D2AD60E9AE82DE37871B32A425D38607EEBB64B6B1F8DB79D8AC48497C', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/45EDC7B76C71D3759DB3B8A48F790EEB939320D9E365075973CDC3F7462ACDFF', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45EDC7B76C71D3759DB3B8A48F790EEB939320D9E365075973CDC3F7462ACDFF', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/D350146763B00377065DA246612B0E009F07E75DC135D3669BA3BD962F252460', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D350146763B00377065DA246612B0E009F07E75DC135D3669BA3BD962F252460', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/317FCA2D7554F55BBCD0019AB36F7FEA18B6D161F462AF5E565068C719A29F20', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/317FCA2D7554F55BBCD0019AB36F7FEA18B6D161F462AF5E565068C719A29F20', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/9BD2EA80C1608CEAE8EED38EE7F4E08D0CBE04C0BBF5368B06A71311E5EE3303', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BD2EA80C1608CEAE8EED38EE7F4E08D0CBE04C0BBF5368B06A71311E5EE3303', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/3138A462429016FD5DD2E9381C59C5F431DD0102636A6929AD74A2824D6E75AC', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/3138A462429016FD5DD2E9381C59C5F431DD0102636A6929AD74A2824D6E75AC', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/D6836A815D852C713267E04A4CF65B7DDC4082D969B913F70C1457FBF81ED241', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D6836A815D852C713267E04A4CF65B7DDC4082D969B913F70C1457FBF81ED241', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/C1646B6770C649204E9B280C63E929D95833E2B0313F82361A2C32CE60EDBA07', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/C1646B6770C649204E9B280C63E929D95833E2B0313F82361A2C32CE60EDBA07', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/758B579004645CD0C05213B8755E78B0304CFF8D48898B7C87126330DCFCCBB6', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/758B579004645CD0C05213B8755E78B0304CFF8D48898B7C87126330DCFCCBB6', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/B1710B9F4F41C1F1CE09543CB267C8723BA56D19CAB0AB0A8085D16BED9FBB7B', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B1710B9F4F41C1F1CE09543CB267C8723BA56D19CAB0AB0A8085D16BED9FBB7B', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/1CABC2B1C91836C5F007B84C6EC70023405C02C4F0AA961AEC889727EE0C4354', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1CABC2B1C91836C5F007B84C6EC70023405C02C4F0AA961AEC889727EE0C4354', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/4981DCB461FDE1999A1C157D04DB09A186304B6D93129AD631A120EEFA2C489A', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4981DCB461FDE1999A1C157D04DB09A186304B6D93129AD631A120EEFA2C489A', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/6366532F3D04835809A1B611261939F25D30E89C7F5D33861E851545427802DA', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6366532F3D04835809A1B611261939F25D30E89C7F5D33861E851545427802DA', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/50CCEA850FF84EAEA3FB3D9106ED67B4B20F58AF8DF6A6BBC4DC342ACA0AF588', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/50CCEA850FF84EAEA3FB3D9106ED67B4B20F58AF8DF6A6BBC4DC342ACA0AF588', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/9C3B3F6483776FBA26F18EEE6847D5687AD170BEEC0548542F0E312FAE35B0F7', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9C3B3F6483776FBA26F18EEE6847D5687AD170BEEC0548542F0E312FAE35B0F7', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/220C0E64C8A28A180DF0004E45916A261F0375DCD04CE62547CD1A268996A305', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/220C0E64C8A28A180DF0004E45916A261F0375DCD04CE62547CD1A268996A305', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/F8382AA86546B8209DBDDB254E9F204F45CCC97372D5FB82314ED045A5CDB9B1', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F8382AA86546B8209DBDDB254E9F204F45CCC97372D5FB82314ED045A5CDB9B1', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/B68829915E7E4A2F8657C015537B3195B15F7199D6444A1CF3BD22E16A864166', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B68829915E7E4A2F8657C015537B3195B15F7199D6444A1CF3BD22E16A864166', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/21730A4A560AF2B5C0BD3FEBF82C9DEFD6DFE50A0EBAD7172E750EDCEE0174ED', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/21730A4A560AF2B5C0BD3FEBF82C9DEFD6DFE50A0EBAD7172E750EDCEE0174ED', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/82D9D67AD8B21862DF0EE72218B029E4FB93026EB528724BDCCACC2CE44E9712', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/82D9D67AD8B21862DF0EE72218B029E4FB93026EB528724BDCCACC2CE44E9712', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/A5822D30F1C4F78CDD1C42EB819477155C9F4737D542F10600673C08B03D4BD0', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A5822D30F1C4F78CDD1C42EB819477155C9F4737D542F10600673C08B03D4BD0', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/6157FBF71441EF6217ED02D0487BC240DA30ECF9B19362BC7F227D98AFF16DED', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6157FBF71441EF6217ED02D0487BC240DA30ECF9B19362BC7F227D98AFF16DED', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/0E4E74FAEC49B571A8D249C5BF9B70BB12862C06B6F0094BC734B3A8E2A55FB1', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E4E74FAEC49B571A8D249C5BF9B70BB12862C06B6F0094BC734B3A8E2A55FB1', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/9ED9F6E456B078FDE0E4A4695052968BF1A774C5D1D37FC5C00886E435270AD8', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9ED9F6E456B078FDE0E4A4695052968BF1A774C5D1D37FC5C00886E435270AD8', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/8E6A8D16955CB537E98C2D6EE1885AB00AE2D4279A169F945EBD0593DB633D4C', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8E6A8D16955CB537E98C2D6EE1885AB00AE2D4279A169F945EBD0593DB633D4C', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/587FF396AF07560DDE5D57FB589BC248AEDCA361ADF2A01C252317CB07591912', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/587FF396AF07560DDE5D57FB589BC248AEDCA361ADF2A01C252317CB07591912', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/251B1F7E6625E8EAABA5E34C1C05242EE800CEB78AAFD1F39CC4AF00B07B1F59', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/251B1F7E6625E8EAABA5E34C1C05242EE800CEB78AAFD1F39CC4AF00B07B1F59', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/045BC322F3A7F453E10747B6EE6EF55403D62C9E60FAE8FF06B16B9B4DB84F22', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/045BC322F3A7F453E10747B6EE6EF55403D62C9E60FAE8FF06B16B9B4DB84F22', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/479D812EC62518DE5E3A70669EE65C3323F26CD1D37D458133A904E23D6799A2', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/479D812EC62518DE5E3A70669EE65C3323F26CD1D37D458133A904E23D6799A2', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/9AAF68194CB973F020C9532EDC5054F53D414BB75517EBC35CF940806D9B87C9', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9AAF68194CB973F020C9532EDC5054F53D414BB75517EBC35CF940806D9B87C9', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/7CF99187D9BBAE58EFCFA53610DF0692B54DCA17729EEEA14703BE47887131D5', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/7CF99187D9BBAE58EFCFA53610DF0692B54DCA17729EEEA14703BE47887131D5', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/BF2CDA6310DE8ECC2A2A24204CCA2006F87D4514095BDA3ABFC9F4CC1BD123DF', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF2CDA6310DE8ECC2A2A24204CCA2006F87D4514095BDA3ABFC9F4CC1BD123DF', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/144DCC7AC46BED47BB85ACA24F9574B2ED8381255ACC82B7763E58D12399DB8D', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/144DCC7AC46BED47BB85ACA24F9574B2ED8381255ACC82B7763E58D12399DB8D', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/6BCA4B94ADBA067F03A0E247FDA807B9F844377C4E949FFE6896D48BFCFA6956', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/6BCA4B94ADBA067F03A0E247FDA807B9F844377C4E949FFE6896D48BFCFA6956', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/46EC70B4A280010A377C0A43E0B23077C38E029EF8FF06A0BE5304FFBEF89A01', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/46EC70B4A280010A377C0A43E0B23077C38E029EF8FF06A0BE5304FFBEF89A01', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/AEE05B46A93C558A8234306B23019F4BEAD6360518417E6329264BA3D8656D81', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AEE05B46A93C558A8234306B23019F4BEAD6360518417E6329264BA3D8656D81', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/D04BEB1E3E0B70FD8699ACA336F41A11F413B1BF7CFE2F3D19FD0B5682A7B043', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D04BEB1E3E0B70FD8699ACA336F41A11F413B1BF7CFE2F3D19FD0B5682A7B043', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/0613D71275C11E6671CEDDF660B63EBEF73FC51F09DAEE84A153597BD993A947', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0613D71275C11E6671CEDDF660B63EBEF73FC51F09DAEE84A153597BD993A947', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/01BD65F089F7706769395DEB6C86EB32752BEE66C926D772E93F5E7C79688BA6', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/01BD65F089F7706769395DEB6C86EB32752BEE66C926D772E93F5E7C79688BA6', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/CE36678C64EFCE5920D37C4CBE3D30D1EDC52E180BB509E37315602FDBA77BDB', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CE36678C64EFCE5920D37C4CBE3D30D1EDC52E180BB509E37315602FDBA77BDB', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/A8E36DC320EE5B9B2633E853057F436CC11189D3667AE6B84B4C854951352FBA', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A8E36DC320EE5B9B2633E853057F436CC11189D3667AE6B84B4C854951352FBA', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/C5923DCDD92C2D738A8548B0878FD5060A15B189AA4C0C8C3DAF55B0B5D52208', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C5923DCDD92C2D738A8548B0878FD5060A15B189AA4C0C8C3DAF55B0B5D52208', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/2E39FF9B7A8495794A830420E71BF79D2F635C65AFE389A8E96F9B11D479BCF1', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2E39FF9B7A8495794A830420E71BF79D2F635C65AFE389A8E96F9B11D479BCF1', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/96889B20952DB974D80CB1DF021BD943064013519DD15545B55CEEEAC5EA2BF6', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96889B20952DB974D80CB1DF021BD943064013519DD15545B55CEEEAC5EA2BF6', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/2278FCFE83B9477FC1E44C906764BE0F6844B24F8FE503C083B0CDE8D69D7FEC', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2278FCFE83B9477FC1E44C906764BE0F6844B24F8FE503C083B0CDE8D69D7FEC', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/D4A5AE8E8DD0D49F559F9D85EDF17643E3444BD424FFE7158A8187A5BAFDD463', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/989DF9B673551127FB0176F748F43E6CF67BAF429535DBC8CA1644B5FAF80453', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/989DF9B673551127FB0176F748F43E6CF67BAF429535DBC8CA1644B5FAF80453', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/66877CDE787A7DF5EC1B6A14DDB32EB728CB5DAC77ACF7CE64B985CFCD9CA922', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/66877CDE787A7DF5EC1B6A14DDB32EB728CB5DAC77ACF7CE64B985CFCD9CA922', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/E5C145FDC1F7B1749892A2D6211055C5535FA11CAFD2D14328B7E0899D723D6A', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E5C145FDC1F7B1749892A2D6211055C5535FA11CAFD2D14328B7E0899D723D6A', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/2618B5E5370860FDA9E5745C0C8866DEE8077422B91EF52FC6E3926411FED81C', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2618B5E5370860FDA9E5745C0C8866DEE8077422B91EF52FC6E3926411FED81C', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/35B5517BE99B2CECDFEEA830E1EF32868A462097781D9DC6629DF158755C2C83', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/35B5517BE99B2CECDFEEA830E1EF32868A462097781D9DC6629DF158755C2C83', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/7F2DC2A595EDCAEC1C03D607C6DC3C79EDDC029A53D16C0788835C1A9AA06306', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/7F2DC2A595EDCAEC1C03D607C6DC3C79EDDC029A53D16C0788835C1A9AA06306', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/4859E46FF89C3A8D361A2F69CB04A2F5CD9D2CB01171E9D91B9E36405B89318A', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/4859E46FF89C3A8D361A2F69CB04A2F5CD9D2CB01171E9D91B9E36405B89318A', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/7280849251B84B8656D2D58DFF52406D4066E75192A8C3EDBF617ED9A64ECF9F', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/7280849251B84B8656D2D58DFF52406D4066E75192A8C3EDBF617ED9A64ECF9F', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/FF456FD21AA44251D2122BF19B20C5FE717A1EBD054A59FA1CA4B21742048CA0', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/FF456FD21AA44251D2122BF19B20C5FE717A1EBD054A59FA1CA4B21742048CA0', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/3A963B6128F23E6C155FFEE2D4772084483E384082E144A5669533F9C9D3236D', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3A963B6128F23E6C155FFEE2D4772084483E384082E144A5669533F9C9D3236D', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/34F81A1D01956BB2B2D3C586ED63B21E6139CE3182D41C7826CA019E69CA57E3', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/34F81A1D01956BB2B2D3C586ED63B21E6139CE3182D41C7826CA019E69CA57E3', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/80D1EF62ECD2AC85085B8A9834538EDD816B38245DA926012EC3E9ABCAC513E8', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/80D1EF62ECD2AC85085B8A9834538EDD816B38245DA926012EC3E9ABCAC513E8', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/FB22202BC0731E18BBD8B15802A7DA5DBBD3472EBDF2FF878CD99FAB9C1AE1F8', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FB22202BC0731E18BBD8B15802A7DA5DBBD3472EBDF2FF878CD99FAB9C1AE1F8', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/A291356F2AE84BEB344DEA335F837AAFBA43C873009D0AC9333E6E3B04AB1AA9', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A291356F2AE84BEB344DEA335F837AAFBA43C873009D0AC9333E6E3B04AB1AA9', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/AA054FD00F476B91C63F27F591B410CCC8F9DB1FC829B51353C51458E2817434', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/AA054FD00F476B91C63F27F591B410CCC8F9DB1FC829B51353C51458E2817434', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/FBBF48C3095F71AC3AEE7179DD5DC506BBCC1B6D8626F1ACF7779C6D13F15E57', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FBBF48C3095F71AC3AEE7179DD5DC506BBCC1B6D8626F1ACF7779C6D13F15E57', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/2B54CBC5D1F2DED4CED074202E3D2A092CDA9F77C6F019B0549F263035AF44AA', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/2B54CBC5D1F2DED4CED074202E3D2A092CDA9F77C6F019B0549F263035AF44AA', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/FA7A1FB4024F20C5E6EAAD0D8FFE7CC17B5AE9D7E05B810359EBAE2C1D1AD37B', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FA7A1FB4024F20C5E6EAAD0D8FFE7CC17B5AE9D7E05B810359EBAE2C1D1AD37B', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/7A3709D7BF6BEB01F1AB4E91D14C9CA54FA19C7EE34CA0CB3FD7A571A07307A1', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7A3709D7BF6BEB01F1AB4E91D14C9CA54FA19C7EE34CA0CB3FD7A571A07307A1', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/9F0B3A7B9DD7648B446F63EA04BA22D86B9D502EE32641D24827CF1622160035', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9F0B3A7B9DD7648B446F63EA04BA22D86B9D502EE32641D24827CF1622160035', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/8CA53D657D63BA837E890FC8F56C693039C0DBD411BA6910F54DBE77F63E63BB', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8CA53D657D63BA837E890FC8F56C693039C0DBD411BA6910F54DBE77F63E63BB', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/CE65E650FECD0D5CE4E6CF67A0BB75007E1C5F7E3F7D3561FB6CE6AB53671BEE', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/CE65E650FECD0D5CE4E6CF67A0BB75007E1C5F7E3F7D3561FB6CE6AB53671BEE', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/421CC0B3437C5A738FE09B6B74282CBBE790B8BE8DD353873308ECB1CBDB66FA', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/421CC0B3437C5A738FE09B6B74282CBBE790B8BE8DD353873308ECB1CBDB66FA', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/5444DD7A51F088492E4C9C67858AB02ECA739D49800108247C5FBACEE2573EF8', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/5444DD7A51F088492E4C9C67858AB02ECA739D49800108247C5FBACEE2573EF8', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/4B96A07E670A62278FD687DE1DA1E598EC3EBA3DE498930768CCA0C9F742EC61', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4B96A07E670A62278FD687DE1DA1E598EC3EBA3DE498930768CCA0C9F742EC61', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/E9EB71DC00D5B3B33DA4BFC541AB8E76E1EA89B90B39E2140F6625C4C25DC21B', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E9EB71DC00D5B3B33DA4BFC541AB8E76E1EA89B90B39E2140F6625C4C25DC21B', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/30676FA5BB1C3595A4BEAF35FF17D03F7E4CE6AA71862CF5BE17C43446A4765C', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/30676FA5BB1C3595A4BEAF35FF17D03F7E4CE6AA71862CF5BE17C43446A4765C', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/A412629140CA9ED8E9BC8B01B831FAF67A97DA155D54B48F8D89AAA5F925AC1F', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A412629140CA9ED8E9BC8B01B831FAF67A97DA155D54B48F8D89AAA5F925AC1F', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/9F4C0779B5198070691EA6E6630FFD9C714092FD7F8DEB595A9F8B4421A940AC', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9F4C0779B5198070691EA6E6630FFD9C714092FD7F8DEB595A9F8B4421A940AC', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/3B844A69AF499DB2BF2651C85C00AD7581F3BFB707F598C413E585A7B2086187', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3B844A69AF499DB2BF2651C85C00AD7581F3BFB707F598C413E585A7B2086187', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/275934A2D45D422101E08E0373AC6E0963719607FE45A76304E98C062A52CCA0', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/275934A2D45D422101E08E0373AC6E0963719607FE45A76304E98C062A52CCA0', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/A0DA39D0777B656AAE6CCD6B775D9708A253104C51633EA5E19C53598F1D096B', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A0DA39D0777B656AAE6CCD6B775D9708A253104C51633EA5E19C53598F1D096B', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/0DF5D25E9DAC6C51503D38826E36CF811D594C48C700AED5BE1FC890DE1AF5D9', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0DF5D25E9DAC6C51503D38826E36CF811D594C48C700AED5BE1FC890DE1AF5D9', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/56FB4B78D9DA3AF7CB439A342FF5F5EA8370E20E7160AC78433AF90DD84E7E35', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/56FB4B78D9DA3AF7CB439A342FF5F5EA8370E20E7160AC78433AF90DD84E7E35', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/F1B6F69DDBC5F1EF95EFECF72D16CF1FACBB55D4608F2F5AA5ED39901782209D', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F1B6F69DDBC5F1EF95EFECF72D16CF1FACBB55D4608F2F5AA5ED39901782209D', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/EFC26034450406E3FC3F8130777A4FB1E0D46A75E04EB658623581376C6AF430', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFC26034450406E3FC3F8130777A4FB1E0D46A75E04EB658623581376C6AF430', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/AAFF4B5CCC7B4F0E5F7618CE838F5E48151C5D67E8D4380D733DD77C23D1E016', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AAFF4B5CCC7B4F0E5F7618CE838F5E48151C5D67E8D4380D733DD77C23D1E016', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/0FDC7450039F4F09178C326EAD002568FAC580211DF32763EE2A00622C68C71F', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0FDC7450039F4F09178C326EAD002568FAC580211DF32763EE2A00622C68C71F', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/FD5A6797C56591BB28100F8A36FBC809B4452DDD60AFA0E9166EAB5EB8D3AEC9', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FD5A6797C56591BB28100F8A36FBC809B4452DDD60AFA0E9166EAB5EB8D3AEC9', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/64C2F728722DA2B30083372FD2DDDC86B976F963F5BC18122B86E571E91D6BA3', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/64C2F728722DA2B30083372FD2DDDC86B976F963F5BC18122B86E571E91D6BA3', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/FEBD6D8837F4D0817BF05966B92220FEE367DB949DAB037A89242BDE088087F2', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FEBD6D8837F4D0817BF05966B92220FEE367DB949DAB037A89242BDE088087F2', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/05F447D15EE51344959C2EFBCE22B14DA3CB55FB4C56EA71F09CCC54E0BF9678', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/05F447D15EE51344959C2EFBCE22B14DA3CB55FB4C56EA71F09CCC54E0BF9678', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/B4D30D3FC770F58F0FAC4C593D18DED847844942A2B8D15E0ABDDBF110AE7A6E', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B4D30D3FC770F58F0FAC4C593D18DED847844942A2B8D15E0ABDDBF110AE7A6E', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/A5BA3F1C38ADAA11F941D66B19A7CD67B127F25DE2EA581BCD2DC4D8D50BEED9', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/A5BA3F1C38ADAA11F941D66B19A7CD67B127F25DE2EA581BCD2DC4D8D50BEED9', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/ACFE6C03CAD8AB0F9F227D4E8051D4185D36E53934574346B0C43DF7257973CA', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ACFE6C03CAD8AB0F9F227D4E8051D4185D36E53934574346B0C43DF7257973CA', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/808AC8A945D838434DFEEEC7B24DC64C0E78F0C2B8924E5ED9D109D0CE733C6F', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/808AC8A945D838434DFEEEC7B24DC64C0E78F0C2B8924E5ED9D109D0CE733C6F', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/F80414CE40A173D5D4C17968415E5E0B2562EA1167D6F82188F5E167EC7F8D51', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F80414CE40A173D5D4C17968415E5E0B2562EA1167D6F82188F5E167EC7F8D51', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/92CA10D8AD5DFA69918E5860570A33922EC9181F013328034D9423D7A3A95C89', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/92CA10D8AD5DFA69918E5860570A33922EC9181F013328034D9423D7A3A95C89', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/8361A05D7FEB200168AD58B4BE8B9A4F4EC3386FED621B94026B925EFBD2DD88', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/8361A05D7FEB200168AD58B4BE8B9A4F4EC3386FED621B94026B925EFBD2DD88', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/230D8AAC66A6BC62C627C68F3D3E037FE86E518669447A2EDF281A76AAF4F67B', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/230D8AAC66A6BC62C627C68F3D3E037FE86E518669447A2EDF281A76AAF4F67B', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/350C0539DC4D777E71CB6E0C8DCECD314F0FD2F306E6E72155D87A8F91218C63', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/350C0539DC4D777E71CB6E0C8DCECD314F0FD2F306E6E72155D87A8F91218C63', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/8767F3C802E015E0E991811566D0A5745E510A0DBDDAC080A33C58F7B60059D1', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/8767F3C802E015E0E991811566D0A5745E510A0DBDDAC080A33C58F7B60059D1', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/14EC8627D5E65B5CEB09C805FC5AAFCDB8C2F4D7B32EB74275543FC4C9300E3B', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/14EC8627D5E65B5CEB09C805FC5AAFCDB8C2F4D7B32EB74275543FC4C9300E3B', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/6C3F74A2CDD8CDB448356A9549A67D75EAB930826B65574095E7C89CD0D828F1', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/6C3F74A2CDD8CDB448356A9549A67D75EAB930826B65574095E7C89CD0D828F1', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/CFBAD6BAAAD4D1E91C1875D3A41531671750208354049CA55C46E4701C67BDF5', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CFBAD6BAAAD4D1E91C1875D3A41531671750208354049CA55C46E4701C67BDF5', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/67534FB288920B0EBBC712A55685CF6D718FF2D72262BA6452ACD819D78D4A60', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/67534FB288920B0EBBC712A55685CF6D718FF2D72262BA6452ACD819D78D4A60', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/4E19777F57A46073C673FDAB58A4C6BA85208DCBD5E2948107DE0B7248F0D3B0', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/4E19777F57A46073C673FDAB58A4C6BA85208DCBD5E2948107DE0B7248F0D3B0', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/03CB6D5502207C9087EB9EDAB988EEE02870C925908F6B6CB59087F9B6ADC532', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03CB6D5502207C9087EB9EDAB988EEE02870C925908F6B6CB59087F9B6ADC532', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/C04AAA6561062090CB8F1747EBE5F6A7A0F6E9CC5B9B39F8A18803BED9DBB64A', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C04AAA6561062090CB8F1747EBE5F6A7A0F6E9CC5B9B39F8A18803BED9DBB64A', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/57B520FC8D0E3B4B490D714CE37273BA68AECEF698D0772D71DF1168365A6F77', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57B520FC8D0E3B4B490D714CE37273BA68AECEF698D0772D71DF1168365A6F77', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/92B013CE0BE2CED39AA023444DA32C9D0FD95FE6E75FC7647A926AE9D0D33C9D', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/92B013CE0BE2CED39AA023444DA32C9D0FD95FE6E75FC7647A926AE9D0D33C9D', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/75F34830AC3D4317FF98BA1F8DDBCA31BEAF6A2054C3A3983B3180CDCD0C21D2', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/75F34830AC3D4317FF98BA1F8DDBCA31BEAF6A2054C3A3983B3180CDCD0C21D2', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/AB5CFD87197980A6D66D9F7FC5D5EC36247529E2722204AEBCD5C185738860B6', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AB5CFD87197980A6D66D9F7FC5D5EC36247529E2722204AEBCD5C185738860B6', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/35065FCFC0E3F13EE449D9C02E79ECB91CFAD36F56DF5299CBFD442578ED826E', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/35065FCFC0E3F13EE449D9C02E79ECB91CFAD36F56DF5299CBFD442578ED826E', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/0CF037066FF97B432EAECDDB191DC92EB695E30180821981BACCDFFFD57C7930', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/0CF037066FF97B432EAECDDB191DC92EB695E30180821981BACCDFFFD57C7930', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/DA0B7D938A23718A5545216D41FCC6CBCA2810DCD392FE2DCEF6BE6DB38112D5', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/DA0B7D938A23718A5545216D41FCC6CBCA2810DCD392FE2DCEF6BE6DB38112D5', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/BD357209E257B9D0717110A8BC13FBE099934B8222017DC16E38C63BF41E961C', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BD357209E257B9D0717110A8BC13FBE099934B8222017DC16E38C63BF41E961C', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/F6C65735497E98477E3BCDC89E888A7208ECDD1ED4EE447949E01672B1E3F9EE', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F6C65735497E98477E3BCDC89E888A7208ECDD1ED4EE447949E01672B1E3F9EE', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/7AF8239CC68079D79B1959CE7898BED398D203C202A775F74A60A9A4A029E8B7', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7AF8239CC68079D79B1959CE7898BED398D203C202A775F74A60A9A4A029E8B7', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/4817DC6308A5DDC89BE6A1671B9125175F8A985454AD77EADA20D39F8BB25C07', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4817DC6308A5DDC89BE6A1671B9125175F8A985454AD77EADA20D39F8BB25C07', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/9DE1CEEB32514C5A9F6C49E92C03FA3B70ADCE30D9E553A9218868743D49BDF3', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9DE1CEEB32514C5A9F6C49E92C03FA3B70ADCE30D9E553A9218868743D49BDF3', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/1489D6507CFA8420F8618A6957DEAA3F486F4307CAD591E76CA5BC5DE77B81BC', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1489D6507CFA8420F8618A6957DEAA3F486F4307CAD591E76CA5BC5DE77B81BC', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/C8E992A506329A58B73AF2EB54AB065CAB93E7FA133F46933939A4611D84FDDE', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C8E992A506329A58B73AF2EB54AB065CAB93E7FA133F46933939A4611D84FDDE', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/A5E921253495F2A8827BAF18DA3BF18F72E88D7EC9DF047D262915783EA2B272', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A5E921253495F2A8827BAF18DA3BF18F72E88D7EC9DF047D262915783EA2B272', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/E890CC919F2CF9442F0A6C5ED8D3375D8A4121D99CA0B97513089AE58BD95336', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E890CC919F2CF9442F0A6C5ED8D3375D8A4121D99CA0B97513089AE58BD95336', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CE99B4D2A172275C064595B750827855E04D5E068FB7C642C8469CA9B5DB0EE1', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/CE99B4D2A172275C064595B750827855E04D5E068FB7C642C8469CA9B5DB0EE1', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/AE15BA03C8398EF410DEED0AE8F26533B6C668C9B607B4AFE06BD7CA7C4A6252', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AE15BA03C8398EF410DEED0AE8F26533B6C668C9B607B4AFE06BD7CA7C4A6252', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/D564D2049476D81B452660B61FBBB844603B160A11104843E0C72DA462C1ECAF', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D564D2049476D81B452660B61FBBB844603B160A11104843E0C72DA462C1ECAF', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/0A15AC1985AFEA902D4EBE897DABBD28100894D2ECE76E081963145EFC1C5BFF', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/0A15AC1985AFEA902D4EBE897DABBD28100894D2ECE76E081963145EFC1C5BFF', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/29F179E964E3171DB3507A72C5EC0F0C41D52011A4558F4EF82DE08E40FA6CAE', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/29F179E964E3171DB3507A72C5EC0F0C41D52011A4558F4EF82DE08E40FA6CAE', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/AE7F9CEB8DDED2EF7BD9891B0EDD69B6B56622E5BB5A7E8475E289CECC3C8EBB', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/AE7F9CEB8DDED2EF7BD9891B0EDD69B6B56622E5BB5A7E8475E289CECC3C8EBB', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/46CF35A6C81B756755EA0FEB1B8E782693AD68CBC32BF2AB760AF148CD1FDE6E', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/46CF35A6C81B756755EA0FEB1B8E782693AD68CBC32BF2AB760AF148CD1FDE6E', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/9C7F70E92CCBA0F2DC94796B0682955E090676EA7A2F8E0A4611956B79CB4406', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9C7F70E92CCBA0F2DC94796B0682955E090676EA7A2F8E0A4611956B79CB4406', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/E28A6527195C08FF0D713EE0547DEB57F72716B41421F2D2E3859E57EA7CD806', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/E28A6527195C08FF0D713EE0547DEB57F72716B41421F2D2E3859E57EA7CD806', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/18624EAC27898C0DD81951E6638AA8F32B35C626A93142A37E2B17D3F4527B0A', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/18624EAC27898C0DD81951E6638AA8F32B35C626A93142A37E2B17D3F4527B0A', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/7577185E42939EE57EF73E2DE57A28BBE7693EDC0766C506E570C5D6B7636B33', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/7577185E42939EE57EF73E2DE57A28BBE7693EDC0766C506E570C5D6B7636B33', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/AD1095193A389090566F66B9F9E1DE8F10D81F7B787717E7EC231369046D0ABF', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AD1095193A389090566F66B9F9E1DE8F10D81F7B787717E7EC231369046D0ABF', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/9AF5D20C6D978F658BA0DC56FFCB336C697642C4E04A37CEBC1C732BFAE80BCC', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/9AF5D20C6D978F658BA0DC56FFCB336C697642C4E04A37CEBC1C732BFAE80BCC', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/B067445FBCAA97BF3486024639F73F5CF4D7C9FBD173E2E5144EB50851E11AD2', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/0B9F987599FE8F3C065CDFC66BF81166354EB78F247B72A4A4AEAFFD775726F5', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/comdex.ts b/packages/assets/src/mainnet/comdex.ts index c8d895242..c2ba4bfc4 100644 --- a/packages/assets/src/mainnet/comdex.ts +++ b/packages/assets/src/mainnet/comdex.ts @@ -309,6 +309,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/4D7171177AB1644B2F582F7E9C2CDE0AC31A00164027A91FB26ED1F0CB2C82B1', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/4D7171177AB1644B2F582F7E9C2CDE0AC31A00164027A91FB26ED1F0CB2C82B1', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-36', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-18' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -16952,6 +17000,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/DE1FA26DBAB237E51CB2CE4B3DE3B63F7C73B94F134A17EDF3C3FB1A883DE260', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/DE1FA26DBAB237E51CB2CE4B3DE3B63F7C73B94F134A17EDF3C3FB1A883DE260', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-49', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-45' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/composable.ts b/packages/assets/src/mainnet/composable.ts index 707422058..1d0836afe 100644 --- a/packages/assets/src/mainnet/composable.ts +++ b/packages/assets/src/mainnet/composable.ts @@ -2855,6 +2855,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/45ACFCD35DDF8FF0C1AFC18433726587F440985E8C986B7B4EAD2088064AE97D', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/45ACFCD35DDF8FF0C1AFC18433726587F440985E8C986B7B4EAD2088064AE97D', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-280', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-8' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -20333,6 +20381,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/94CDDEC2C6209BAF10D675B1C93CE462F6CBAA67BED411AF043FBFE9281394B1', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/94CDDEC2C6209BAF10D675B1C93CE462F6CBAA67BED411AF043FBFE9281394B1', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-134', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/coreum.ts b/packages/assets/src/mainnet/coreum.ts index 3eacb5f5b..b7868f50b 100644 --- a/packages/assets/src/mainnet/coreum.ts +++ b/packages/assets/src/mainnet/coreum.ts @@ -18233,6 +18233,50 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/4A23D62120F248EAFC835AB88EBDBA94788E4B700948086A1F5BD34E2DA81A5D', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/4A23D62120F248EAFC835AB88EBDBA94788E4B700948086A1F5BD34E2DA81A5D', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-26' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/cosmoshub.ts b/packages/assets/src/mainnet/cosmoshub.ts index 01c757d85..cdfbf9f1a 100644 --- a/packages/assets/src/mainnet/cosmoshub.ts +++ b/packages/assets/src/mainnet/cosmoshub.ts @@ -3212,6 +3212,49 @@ const assets: AssetList = { } ] }, + { + description: 'Decentralized Federated Learning', + denom_units: [ + { + denom: + 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + exponent: 0, + aliases: ['ucif'] + }, + { + denom: 'cif', + exponent: 6 + } + ], + base: 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + name: 'Cifer', + display: 'cif', + symbol: 'CIF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'ucif', + chain_name: 'cifer' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'The native staking and governance token of Composable.', denom_units: [ @@ -5135,6 +5178,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/4AE9FF7A4D5DDCA9A37A6CC10771A9A1806D639CFC741EF72A5AD1F77F77AEB2', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/4AE9FF7A4D5DDCA9A37A6CC10771A9A1806D639CFC741EF72A5AD1F77F77AEB2', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-207' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -23711,6 +23802,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/582D087820E10FF09C4F98253878701F659AB423C9E195D7FB913F923FA4398E', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/582D087820E10FF09C4F98253878701F659AB423C9E195D7FB913F923FA4398E', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-584' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ @@ -24479,6 +24614,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/3F0A41ECB6FAF27E315583DBF39B5B69A7149D23959A0E4B319F7EF5C618DCD7', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/3F0A41ECB6FAF27E315583DBF39B5B69A7149D23959A0E4B319F7EF5C618DCD7', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-391' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/crescent.ts b/packages/assets/src/mainnet/crescent.ts index 0b07123c6..c0256ad77 100644 --- a/packages/assets/src/mainnet/crescent.ts +++ b/packages/assets/src/mainnet/crescent.ts @@ -3616,6 +3616,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-81', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -20310,6 +20358,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/E76604FB850F08D46670FAAA66B02FAFE59C725CDF0CEBB4BF7EDA17B8BEAAC4', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/E76604FB850F08D46670FAAA66B02FAFE59C725CDF0CEBB4BF7EDA17B8BEAAC4', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/decentr.ts b/packages/assets/src/mainnet/decentr.ts index eeef06c61..3c9251b22 100644 --- a/packages/assets/src/mainnet/decentr.ts +++ b/packages/assets/src/mainnet/decentr.ts @@ -13846,6 +13846,53 @@ const assets: AssetList = { } ] }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/B7489F796F582168A256F44B1B2AB93DD2E868487DA91F28FD2BA967E97F5712', + exponent: 0, + aliases: ['udvpn'] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + base: 'ibc/B7489F796F582168A256F44B1B2AB93DD2E868487DA91F28FD2BA967E97F5712', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + coingecko_id: 'sentinel', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ], + socials: { + webiste: 'https://www.sentinel.co/', + twitter: 'https://twitter.com/SentinelVPN' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-55', + base_denom: 'udvpn', + chain_name: 'sentinel' + }, + chain: { + channel_id: 'channel-4' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/dig.ts b/packages/assets/src/mainnet/dig.ts index cbd0548f5..2fc4a0567 100644 --- a/packages/assets/src/mainnet/dig.ts +++ b/packages/assets/src/mainnet/dig.ts @@ -223,6 +223,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/doravota.ts b/packages/assets/src/mainnet/doravota.ts index 3e46287e8..9e7cc31d1 100644 --- a/packages/assets/src/mainnet/doravota.ts +++ b/packages/assets/src/mainnet/doravota.ts @@ -16039,6 +16039,50 @@ const assets: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/FDAA378AA2D83BEEA2002EE382E0BCFA8C4189C081772EAD5766237D6017A498', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/FDAA378AA2D83BEEA2002EE382E0BCFA8C4189C081772EAD5766237D6017A498', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-64', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-12' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dydx.ts b/packages/assets/src/mainnet/dydx.ts index 608f0c0b3..57f4e4039 100644 --- a/packages/assets/src/mainnet/dydx.ts +++ b/packages/assets/src/mainnet/dydx.ts @@ -17968,6 +17968,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/548A76B0FEE3004CCF20A23D8ACDF4395FC68E0855B2F7C0E1B47B7307C63E09', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/548A76B0FEE3004CCF20A23D8ACDF4395FC68E0855B2F7C0E1B47B7307C63E09', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-160', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/dymension.ts b/packages/assets/src/mainnet/dymension.ts index fabac79c5..3cdd1a5cf 100644 --- a/packages/assets/src/mainnet/dymension.ts +++ b/packages/assets/src/mainnet/dymension.ts @@ -19153,6 +19153,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/AB30D2F9C131AE1EFA8449C74490326BD5ACC40EF69A2D8563994AA05CE0B258', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/AB30D2F9C131AE1EFA8449C74490326BD5ACC40EF69A2D8563994AA05CE0B258', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-197', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/emoney.ts b/packages/assets/src/mainnet/emoney.ts index 010fa45b8..b4da998c2 100644 --- a/packages/assets/src/mainnet/emoney.ts +++ b/packages/assets/src/mainnet/emoney.ts @@ -408,6 +408,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/FBFC0DEB216F31C8B54E7227EFB3BD1FA6E3E41FCEBAAF644D653E42F996CDC3', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/FBFC0DEB216F31C8B54E7227EFB3BD1FA6E3E41FCEBAAF644D653E42F996CDC3', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-9', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-15' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/evmos.ts b/packages/assets/src/mainnet/evmos.ts index 2b427d6cb..0f7934d4a 100644 --- a/packages/assets/src/mainnet/evmos.ts +++ b/packages/assets/src/mainnet/evmos.ts @@ -20956,6 +20956,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/71443619B35D0AF5C74F5441A50455D3B0763BEF386139EEB19F6820B3CFD8C7', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/71443619B35D0AF5C74F5441A50455D3B0763BEF386139EEB19F6820B3CFD8C7', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-9', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-25' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/furya.ts b/packages/assets/src/mainnet/furya.ts index fb26c77ce..e18cc3698 100644 --- a/packages/assets/src/mainnet/furya.ts +++ b/packages/assets/src/mainnet/furya.ts @@ -223,6 +223,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-417', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', diff --git a/packages/assets/src/mainnet/index.ts b/packages/assets/src/mainnet/index.ts index 402bc1a30..578815754 100644 --- a/packages/assets/src/mainnet/index.ts +++ b/packages/assets/src/mainnet/index.ts @@ -22,6 +22,7 @@ export * as cerberus from './cerberus'; export * as chain4energy from './chain4energy'; export * as cheqd from './cheqd'; export * as chihuahua from './chihuahua'; +export * as cifer from './cifer'; export * as comdex from './comdex'; export * as composable from './composable'; export * as coreum from './coreum'; @@ -72,6 +73,7 @@ export * as meme from './meme'; export * as microtick from './microtick'; export * as migaloo from './migaloo'; export * as neutron from './neutron'; +export * as nibiru from './nibiru'; export * as noble from './noble'; export * as nois from './nois'; export * as nolus from './nolus'; diff --git a/packages/assets/src/mainnet/injective.ts b/packages/assets/src/mainnet/injective.ts index 467075375..39a00f3a1 100644 --- a/packages/assets/src/mainnet/injective.ts +++ b/packages/assets/src/mainnet/injective.ts @@ -21486,6 +21486,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/7F4BE10120E17C0F493124FFEDC1A3397B8BECEA83701CE8DC8D8B1E3A2A7763', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/7F4BE10120E17C0F493124FFEDC1A3397B8BECEA83701CE8DC8D8B1E3A2A7763', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-89' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/juno.ts b/packages/assets/src/mainnet/juno.ts index 1edc8897a..fd984a538 100644 --- a/packages/assets/src/mainnet/juno.ts +++ b/packages/assets/src/mainnet/juno.ts @@ -21010,6 +21010,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/6086695C6C063BB18963C44118CC6D524EC2923C323B8E2F1CBD53624E05F5D8', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/6086695C6C063BB18963C44118CC6D524EC2923C323B8E2F1CBD53624E05F5D8', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-24', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/kava.ts b/packages/assets/src/mainnet/kava.ts index 472ba1bd5..6208fcb0d 100644 --- a/packages/assets/src/mainnet/kava.ts +++ b/packages/assets/src/mainnet/kava.ts @@ -18909,6 +18909,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/7ECFD27C3EDD5504846463DCA7F1AA131B258DFD88B4B1CACD410710D28D0722', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/7ECFD27C3EDD5504846463DCA7F1AA131B258DFD88B4B1CACD410710D28D0722', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-18', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-132' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/kujira.ts b/packages/assets/src/mainnet/kujira.ts index 488c9485e..7bc8e05d0 100644 --- a/packages/assets/src/mainnet/kujira.ts +++ b/packages/assets/src/mainnet/kujira.ts @@ -5554,6 +5554,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-87', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -23716,6 +23764,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/076E27BCA3E71F4BE13791D1084D66745D38A1F2A11B2D3AA6541EFD854EB700', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/076E27BCA3E71F4BE13791D1084D66745D38A1F2A11B2D3AA6541EFD854EB700', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-32' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/mars.ts b/packages/assets/src/mainnet/mars.ts index 0e23fcc0c..71158d37a 100644 --- a/packages/assets/src/mainnet/mars.ts +++ b/packages/assets/src/mainnet/mars.ts @@ -309,6 +309,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-209', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', diff --git a/packages/assets/src/mainnet/migaloo.ts b/packages/assets/src/mainnet/migaloo.ts index 959fbe737..dc8b0eba1 100644 --- a/packages/assets/src/mainnet/migaloo.ts +++ b/packages/assets/src/mainnet/migaloo.ts @@ -2645,6 +2645,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-210', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -18470,6 +18518,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/942C773E4FB3EC42C643499216DC2FE051BE35A0CA698F88914B6D358AFC2A3B', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/942C773E4FB3EC42C643499216DC2FE051BE35A0CA698F88914B6D358AFC2A3B', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-14', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/neutron.ts b/packages/assets/src/mainnet/neutron.ts index e704ae09b..c71dac7ee 100644 --- a/packages/assets/src/mainnet/neutron.ts +++ b/packages/assets/src/mainnet/neutron.ts @@ -20242,6 +20242,53 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/15EA36C3AB87E3E5E41A61717B7A20F03CC2363840C1A837A487B8BFE176328E', + exponent: 0, + aliases: ['uscrt'] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + base: 'ibc/15EA36C3AB87E3E5E41A61717B7A20F03CC2363840C1A837A487B8BFE176328E', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + coingecko_id: 'secret', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ], + socials: { + webiste: 'https://scrt.network/', + twitter: 'https://twitter.com/SecretNetwork' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: 'uscrt', + chain_name: 'secretnetwork' + }, + chain: { + channel_id: 'channel-1551' + } + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -20507,6 +20554,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/38E2E07708E13BD81EA512BEBEF36A3CF51CD9C2B7398BC7C50935D42F298E42', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/38E2E07708E13BD81EA512BEBEF36A3CF51CD9C2B7398BC7C50935D42F298E42', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ @@ -21204,6 +21295,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-123', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-8' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { @@ -21651,423 +21784,6 @@ const assets: AssetList = { } ] }, - { - description: 'The native token cw20 for SIENNA on Secret Network', - denom_units: [ - { - denom: - 'ibc/7C7D91C403F48EB73E1AF402FCDBFB2459F3963D23CD363A10FE0BC9D08B2424', - exponent: 0, - aliases: ['cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4'] - }, - { - denom: 'sienna', - exponent: 18 - } - ], - type_asset: 'snip20', - address: 'secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', - base: 'ibc/7C7D91C403F48EB73E1AF402FCDBFB2459F3963D23CD363A10FE0BC9D08B2424', - name: 'SIENNA', - display: 'sienna', - symbol: 'SIENNA', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' - }, - coingecko_id: 'sienna', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Shade on Secret Network', - denom_units: [ - { - denom: - 'ibc/C9ED06D67BE9EEB7D6FAB02182C03BFB7C4F4E288ACF70C99DA4130AF45AC81F', - exponent: 0, - aliases: ['cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d'] - }, - { - denom: 'shd', - exponent: 8 - } - ], - type_asset: 'snip20', - address: 'secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', - base: 'ibc/C9ED06D67BE9EEB7D6FAB02182C03BFB7C4F4E288ACF70C99DA4130AF45AC81F', - name: 'Shade (old)', - display: 'shd', - symbol: 'SHD(old)', - logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' - }, - images: [ - { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Shade on Secret Network', - denom_units: [ - { - denom: - 'ibc/C9EC35CF38586D2901211B819F812AA3088C248383C09722E806854EAF3D7C0C', - exponent: 0, - aliases: ['cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm'] - }, - { - denom: 'shd', - exponent: 8 - } - ], - type_asset: 'snip25', - address: 'secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', - base: 'ibc/C9EC35CF38586D2901211B819F812AA3088C248383C09722E806854EAF3D7C0C', - name: 'Shade', - display: 'shd', - symbol: 'SHD', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' - }, - coingecko_id: 'shade-protocol', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Silk on Secret Network', - denom_units: [ - { - denom: - 'ibc/AD058E546520AB6DF039C593507C9A946CD98B0438DBAF151CF72A1EAB2A3484', - exponent: 0, - aliases: ['cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd'] - }, - { - denom: 'silk', - exponent: 6 - } - ], - type_asset: 'snip25', - address: 'secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', - base: 'ibc/AD058E546520AB6DF039C593507C9A946CD98B0438DBAF151CF72A1EAB2A3484', - name: 'Silk', - display: 'silk', - symbol: 'SILK', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' - }, - coingecko_id: 'silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: - 'The native token cw20 for SCRT Staking Derivatives on Secret Network', - denom_units: [ - { - denom: - 'ibc/C135CE91AC5FDB062265B5DAF3617777E8B5DC28B1C9F8BC2825D3EC2E387602', - exponent: 0, - aliases: ['cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4'] - }, - { - denom: 'stkd-scrt', - exponent: 6 - } - ], - type_asset: 'snip20', - address: 'secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', - base: 'ibc/C135CE91AC5FDB062265B5DAF3617777E8B5DC28B1C9F8BC2825D3EC2E387602', - name: 'SCRT Staking Derivatives', - display: 'stkd-scrt', - symbol: 'stkd-SCRT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' - }, - coingecko_id: 'stkd-scrt', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Button on Secret Network', - denom_units: [ - { - denom: - 'ibc/2577239BDFEB560F1225AC22BA4E6192477FEB8634D9FD7214F15F93ADCF41F5', - exponent: 0, - aliases: ['cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt'] - }, - { - denom: 'butt', - exponent: 6 - } - ], - type_asset: 'snip20', - address: 'secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', - base: 'ibc/2577239BDFEB560F1225AC22BA4E6192477FEB8634D9FD7214F15F93ADCF41F5', - name: 'Button', - display: 'butt', - symbol: 'BUTT', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' - }, - coingecko_id: 'buttcoin-2', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Alter on Secret Network', - denom_units: [ - { - denom: - 'ibc/08CFDC6BBD1B442D0EDD7CC57A24E07C41517A719B7B9CF6EB3FF27721C36F9B', - exponent: 0, - aliases: ['cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej'] - }, - { - denom: 'alter', - exponent: 6 - } - ], - base: 'ibc/08CFDC6BBD1B442D0EDD7CC57A24E07C41517A719B7B9CF6EB3FF27721C36F9B', - name: 'Alter', - display: 'alter', - symbol: 'ALTER', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' - }, - coingecko_id: 'alter', - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Amber on Secret Network', - denom_units: [ - { - denom: - 'ibc/FD06472CC39D0FC2FC7CE13D83E2A6271E7EB8916F54FA1F1CA15EE58D727A4B', - exponent: 0, - aliases: ['cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852'] - }, - { - denom: 'amber', - exponent: 6 - } - ], - type_asset: 'snip20', - address: 'secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', - base: 'ibc/FD06472CC39D0FC2FC7CE13D83E2A6271E7EB8916F54FA1F1CA15EE58D727A4B', - name: 'Amber', - display: 'amber', - symbol: 'AMBER', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, - { - description: 'The native token cw20 for Shill on Secret Network', - denom_units: [ - { - denom: - 'ibc/DAF33D01449DF41AC692323605627F5B41BE725D1F48AB147FEB176DDB4383C2', - exponent: 0, - aliases: ['cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse'] - }, - { - denom: 'shill', - exponent: 6 - } - ], - type_asset: 'snip25', - address: 'secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', - base: 'ibc/DAF33D01449DF41AC692323605627F5B41BE725D1F48AB147FEB176DDB4383C2', - name: 'Shill', - display: 'shill', - symbol: 'SHILL', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.svg' - } - ], - traces: [ - { - type: 'ibc-cw20', - counterparty: { - port: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4', - channel_id: 'channel-104', - base_denom: 'cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse', - chain_name: 'secretnetwork' - }, - chain: { - port: 'transfer', - channel_id: 'channel-57' - } - } - ] - }, { description: 'Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.', diff --git a/packages/assets/src/mainnet/nibiru.ts b/packages/assets/src/mainnet/nibiru.ts new file mode 100644 index 000000000..6a9c32d49 --- /dev/null +++ b/packages/assets/src/mainnet/nibiru.ts @@ -0,0 +1,15333 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'nibiru', + assets: [ + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + exponent: 0, + aliases: ['uaxl'] + }, + { + denom: 'axl', + exponent: 6 + } + ], + base: 'ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + coingecko_id: 'axelar', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ], + socials: { + webiste: 'https://axelar.network/', + twitter: 'https://twitter.com/axelarnetwork' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'uaxl', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + coingecko_id: 'axlusdc', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Frax's fractional-algorithmic stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916', + exponent: 0, + aliases: ['frax-wei'] + }, + { + denom: 'frax', + exponent: 18 + } + ], + base: 'ibc/B826FA7F1989A109B506F861764AC25C82F90F2F8B1CA297FE61FAB8E39F9916', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'frax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Dai stablecoin on Axelar', + denom_units: [ + { + denom: + 'ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2', + exponent: 0, + aliases: ['dai-wei'] + }, + { + denom: 'dai', + exponent: 18 + } + ], + base: 'ibc/7D52903C3B425450A5451BE8068F469A96BAFAA47DC0E06718210F3093E308D2', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'dai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.svg' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0', + exponent: 0, + aliases: ['uusdt'] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + base: 'ibc/A1F24CAA35E32235C8502B8A76AB9683211F66795876C9D99F0FB3F26182C6D0', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'uusdt', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + } + ] + }, + { + description: 'Wrapped Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389', + exponent: 0, + aliases: ['weth-wei'] + }, + { + denom: 'weth', + exponent: 18 + } + ], + base: 'ibc/DD0D56BDAB32493B216A4C0530A336620D86FBE1C682888C5513899838FF7389', + name: 'Wrapped Ether', + display: 'weth', + symbol: 'WETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'weth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F', + exponent: 0, + aliases: ['wbtc-satoshi'] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + base: 'ibc/850E88B206F6EEB9AC9D13A0316CE92D693CD30A9C4756D9D151959AA3643C4F', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wbtc-satoshi', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: 'Aave on Axelar', + denom_units: [ + { + denom: + 'ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527', + exponent: 0, + aliases: ['aave-wei'] + }, + { + denom: 'aave', + exponent: 18 + } + ], + base: 'ibc/8A00659EA12CF738566912B3CDDFE1EBABA2735F8273DA06864E3A8AD31F8527', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'aave-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ] + }, + { + description: 'ApeCoin on Axelar', + denom_units: [ + { + denom: + 'ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85', + exponent: 0, + aliases: ['ape-wei'] + }, + { + denom: 'ape', + exponent: 18 + } + ], + base: 'ibc/5059AE37193C2E0579F3D9F3C911295A13A93313808DCB5BA3E43D6C17AF0A85', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'ape-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ] + }, + { + description: 'Axie Infinity Shard on Axelar', + denom_units: [ + { + denom: + 'ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574', + exponent: 0, + aliases: ['axs-wei'] + }, + { + denom: 'axs', + exponent: 18 + } + ], + base: 'ibc/3A576EAFE91B3C9D8822AE896F450F4E6F11F1A33BF991D4FCE335BFC08D7574', + name: 'Axie Infinity Shard', + display: 'axs', + symbol: 'AXS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'axs-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/axs.svg' + } + ] + }, + { + description: 'Chainlink on Axelar', + denom_units: [ + { + denom: + 'ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2', + exponent: 0, + aliases: ['link-wei'] + }, + { + denom: 'link', + exponent: 18 + } + ], + base: 'ibc/E46F5D449A1543CECDB8A9B65B9F5713564C34C2AC7899508D06DB2E2DD5F9F2', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'link-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: 'Maker on Axelar', + denom_units: [ + { + denom: + 'ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C', + exponent: 0, + aliases: ['mkr-wei'] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + base: 'ibc/EC157449417448E5F1572D81BF8B0B097140FDD51116E4A98588691675F4900C', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'mkr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: 'Rai Reflex Index on Axelar', + denom_units: [ + { + denom: + 'ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228', + exponent: 0, + aliases: ['rai-wei'] + }, + { + denom: 'rai', + exponent: 18 + } + ], + base: 'ibc/85134A05F0A7B97E4156D421F5154F55C67028ABEFF03DDC1D5764F68F935228', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'rai-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ] + }, + { + description: 'Shiba Inu on Axelar', + denom_units: [ + { + denom: + 'ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E', + exponent: 0, + aliases: ['shib-wei'] + }, + { + denom: 'shib', + exponent: 18 + } + ], + base: 'ibc/9E8C062909538C2B572C29A478DC322749152D1A6553320F75C3F4B738AC338E', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'shib-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ] + }, + { + description: 'Lido Staked Ether on Axelar', + denom_units: [ + { + denom: + 'ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044', + exponent: 0, + aliases: ['steth-wei'] + }, + { + denom: 'steth', + exponent: 18 + } + ], + base: 'ibc/43C2F70FABEF6023DAA352C58277E802215EEEBEC5779403FE2EB1B03206E044', + name: 'Lido Staked Ether', + display: 'steth', + symbol: 'stETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'steth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg' + } + ] + }, + { + description: 'Uniswap on Axelar', + denom_units: [ + { + denom: + 'ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55', + exponent: 0, + aliases: ['uni-wei'] + }, + { + denom: 'uni', + exponent: 18 + } + ], + base: 'ibc/7E4E3F5580B9B59D43BBA944A070807BAB62C4123DAAE82D5C0E619981327B55', + name: 'Uniswap', + display: 'uni', + symbol: 'UNI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'uni-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg' + } + ] + }, + { + description: 'Chain on Axelar', + denom_units: [ + { + denom: + 'ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E', + exponent: 0, + aliases: ['xcn-wei'] + }, + { + denom: 'xcn', + exponent: 18 + } + ], + base: 'ibc/0F2F347B9D5D78D8717DF56FF8A281F91432B36AC5FB3A4C3CA7D62A4C92AF7E', + name: 'Chain', + display: 'xcn', + symbol: 'XCN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'xcn-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/xcn.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5', + exponent: 0, + aliases: ['dot-planck'] + }, + { + denom: 'dot', + exponent: 10 + } + ], + base: 'ibc/50551EE1B7421026F68EB2714DDF2C607ECA3D4B14A67273A71767A0F8CC29F5', + name: 'Wrapped Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'dot-planck', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'Wrapped Moonbeam on Axelar', + denom_units: [ + { + denom: + 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + exponent: 0, + aliases: ['wglmr-wei'] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + base: 'ibc/E3878CD653ECCD470639A4398EC4913C9915DD3E550697CF0424B572B2385B60', + name: 'Wrapped Moonbeam', + display: 'wglmr', + symbol: 'WGLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wglmr-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'Wrapped Matic on Axelar', + denom_units: [ + { + denom: + 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + exponent: 0, + aliases: ['wmatic-wei'] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + base: 'ibc/7BFC5893BCCC6C9A4B173BC1183D2706141CBF71679EA6BDCE15E679CEC05183', + name: 'Wrapped Matic', + display: 'wmatic', + symbol: 'WMATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wmatic-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg' + } + ] + }, + { + description: 'Wrapped BNB on Axelar', + denom_units: [ + { + denom: + 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + exponent: 0, + aliases: ['wbnb-wei'] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + base: 'ibc/52F7DAC8D338E4D7388D02EBD6E522B86EBB62A48C6732C2651423A9E79377DE', + name: 'Wrapped BNB', + display: 'wbnb', + symbol: 'WBNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wbnb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.svg' + } + ] + }, + { + description: 'Binance USD on Axelar.', + denom_units: [ + { + denom: + 'ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D', + exponent: 0, + aliases: ['busd-wei'] + }, + { + denom: 'busd', + exponent: 18 + } + ], + base: 'ibc/97B1DE3106F835AA76ED7625C6DEF5110F35E9B349D3AC4CD6F78C8A6FCE9F2D', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'busd-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png' + } + ] + }, + { + description: 'Wrapped AVAX on Axelar.', + denom_units: [ + { + denom: + 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + exponent: 0, + aliases: ['wavax-wei'] + }, + { + denom: 'avax', + exponent: 18 + } + ], + base: 'ibc/78D5DAB545549A930F5DB22CFA7C821ACE8EF55DCF787BED93A56D04CC7477F5', + name: 'Wrapped AVAX', + display: 'avax', + symbol: 'WAVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wavax-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg' + } + ] + }, + { + description: 'Wrapped FTM on Axelar.', + denom_units: [ + { + denom: + 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + exponent: 0, + aliases: ['wftm-wei'] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + base: 'ibc/301A96A9BB897EF914BA74534EE1D75417753A0E113F2F766838274057290B79', + name: 'Wrapped FTM', + display: 'ftm', + symbol: 'WFTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wftm-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png' + } + ] + }, + { + description: "Circle's stablecoin from Polygon on Axelar", + denom_units: [ + { + denom: + 'ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025', + exponent: 0, + aliases: ['polygon-uusdc'] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + base: 'ibc/D82D6BC5236279A14496692576272D92A449EA9EFFACB87071B1801CED1A1025', + name: 'USD Coin from Polygon', + display: 'polygon-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'polygon-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: "Circle's stablecoin from Avalanche on Axelar", + denom_units: [ + { + denom: + 'ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF', + exponent: 0, + aliases: ['avalanche-uusdc'] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + base: 'ibc/C8F93B4FCBC2DEF43B056F4A47156B3FE98EDAD7680D42B5F1A40ED9C371C0DF', + name: 'USD Coin from Avalanche', + display: 'avalanche-usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'avalanche-uusdc', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: 'Wrapped FIL on Axelar', + denom_units: [ + { + denom: + 'ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D', + exponent: 0, + aliases: ['wfil-wei'] + }, + { + denom: 'fil', + exponent: 18 + } + ], + base: 'ibc/64F437CA650406EC32948093BD96FDE7BE7ECB389D28D9426D04857E520A1D1D', + name: 'Wrapped FIL from Filecoin', + display: 'fil', + symbol: 'axlFIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wfil-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.svg' + } + ] + }, + { + description: 'Arbitrum on Axelar', + denom_units: [ + { + denom: + 'ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608', + exponent: 0, + aliases: ['arb-wei'] + }, + { + denom: 'arb', + exponent: 18 + } + ], + base: 'ibc/598E0EE8751CD6842128E9043DBED1BA6A03F58586E1D2E237933E17EDF27608', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'arb-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19', + exponent: 0, + aliases: ['pepe-wei'] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + base: 'ibc/BA5E586534A1E1FF6132B819ABE8D4D3C2FDCF9DFDC9D6FABE3E6CBCD7406C19', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'pepe-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x6982508145454Ce325dDbE47a25d4ec3d2311933' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA', + exponent: 0, + aliases: ['cbeth-wei'] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + base: 'ibc/F0211D8FA296BBCABD74D8EC1D6BF1614BAED76F849A1F764E85595BB060D4BA', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'cbeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xbe9895146f7af43049ca1c1ae358b0541ea49704' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172', + exponent: 0, + aliases: ['reth-wei'] + }, + { + denom: 'reth', + exponent: 18 + } + ], + base: 'ibc/31C6106A9C6BD20BB1A323A6D229AC2753CB0508E8DDFF52A5E853F5FB94D172', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'reth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xae78736cd615f374d3085123a210448e74fc6393' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + }, + { + denom_units: [ + { + denom: + 'ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3', + exponent: 0, + aliases: ['sfrxeth-wei'] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + base: 'ibc/4AEDE86813773F42D89F606736DE982FB45269C1C7A3ABDB89D76033B6BEA1A3', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'sfrxeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xac3e018457b222d93114458476f3e3416abbe38f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF', + exponent: 0, + aliases: ['wsteth-wei'] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + base: 'ibc/2BCE4106BF06DAECF08E1B8A8FC46B61A40484314CFED60E7008A28973B155CF', + name: 'Wrapped Lido Staked Ether', + display: 'wsteth', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'wsteth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/90969D2154B34BE0520E8E9E1516DC49019F30D3BA7752C692530F2D933E627C', + exponent: 0, + aliases: ['yieldeth-wei'] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + base: 'ibc/90969D2154B34BE0520E8E9E1516DC49019F30D3BA7752C692530F2D933E627C', + name: 'Real Yield Eth', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'yieldeth-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/6F22B70CA6BBCE30BF0267D97C5B9181A30FCE22DA4931A3F29233DC34D1C33C', + exponent: 0, + aliases: ['ox-wei'] + }, + { + denom: 'ox', + exponent: 18 + } + ], + base: 'ibc/6F22B70CA6BBCE30BF0267D97C5B9181A30FCE22DA4931A3F29233DC34D1C33C', + name: 'Open Exchange Token', + display: 'ox', + symbol: 'OX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'ox-wei', + chain_name: 'axelar' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x78a0A62Fba6Fb21A83FE8a3433d44C73a4017A6f' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg' + } + }, + { + description: 'The permissioned staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/825446D2FFB7DD0FE55C78C9C6D4855F253136BE596FE20E3AFCB856A86340AE', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } + ], + base: 'ibc/825446D2FFB7DD0FE55C78C9C6D4855F253136BE596FE20E3AFCB856A86340AE', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: 'ustake', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/9E307D24589486770E9F5B965AAF5D11C2D4288D424504CD2EAE21FD3A0E5EDE', + exponent: 0, + aliases: ['ufrienzies'] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + base: 'ibc/9E307D24589486770E9F5B965AAF5D11C2D4288D424504CD2EAE21FD3A0E5EDE', + display: 'frienzies', + name: 'Frienzies', + symbol: 'FRNZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: 'ufrienzies', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, + { + description: 'ATOM token on Noble', + denom_units: [ + { + denom: + 'ibc/0A81132F1C6D890A5F9DA807209584158CACAA7A8351C34183E36343121EB8BF', + exponent: 0, + aliases: [ + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' + ] + }, + { + denom: 'atom', + exponent: 6, + aliases: ['ATOM'] + } + ], + type_asset: 'ics20', + base: 'ibc/0A81132F1C6D890A5F9DA807209584158CACAA7A8351C34183E36343121EB8BF', + name: 'Atom Staking Coin', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + coingecko_id: 'usd-coin', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-67', + base_denom: 'uusdc', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, + { + description: 'The native token of Osmosis', + denom_units: [ + { + denom: + 'ibc/F0E570D8494CCAB6C4E004BDD8E8430ECE697F3DF805079269F50CBA96690E14', + exponent: 0, + aliases: ['uosmo'] + }, + { + denom: 'osmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/F0E570D8494CCAB6C4E004BDD8E8430ECE697F3DF805079269F50CBA96690E14', + name: 'Osmosis', + display: 'osmo', + symbol: 'OSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg' + } + ], + coingecko_id: 'osmosis', + keywords: ['dex', 'staking'], + socials: { + webiste: 'https://osmosis.zone', + twitter: 'https://twitter.com/osmosiszone' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: 'uosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/4FC4A398319855872FFEBB6F98611C85F864F2ADAC39232DFA1A9EC29E0F919E', + exponent: 0, + aliases: ['uion'] + }, + { + denom: 'ion', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/4FC4A398319855872FFEBB6F98611C85F864F2ADAC39232DFA1A9EC29E0F919E', + name: 'Ion DAO', + display: 'ion', + symbol: 'ION', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg' + } + ], + coingecko_id: 'ion', + keywords: ['memecoin', 'defi'], + socials: { + webiste: 'https://ion.wtf', + twitter: 'https://twitter.com/_IONDAO' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: 'uion', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: "Circle's stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/EF8F34B234AB095CAAFAA056BB056474E355A545EFD0BDDBBFD57036CB72C762', + exponent: 0, + aliases: [ + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EF8F34B234AB095CAAFAA056BB056474E355A545EFD0BDDBBFD57036CB72C762', + name: 'USD Coin (Axelar)', + display: 'usdc', + symbol: 'USDC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ] + }, + { + description: + "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + denom_units: [ + { + denom: + 'ibc/A51B03329FC699183E4C7F0EF367E7CC0859D349B681E5B1DA381C625043C464', + exponent: 0, + aliases: [ + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5' + ] + }, + { + denom: 'weth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/A51B03329FC699183E4C7F0EF367E7CC0859D349B681E5B1DA381C625043C464', + name: 'Ether', + display: 'weth', + symbol: 'ETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + } + ] + }, + { + description: 'Wrapped Bitcoin on Axelar', + denom_units: [ + { + denom: + 'ibc/6E0B3E4BC929B69F9623E68C2292D880808655199EE8D3B0B952832CB179E054', + exponent: 0, + aliases: [ + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/6E0B3E4BC929B69F9623E68C2292D880808655199EE8D3B0B952832CB179E054', + name: 'Wrapped Bitcoin (Axelar)', + display: 'wbtc', + symbol: 'WBTC.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.axl.svg' + }, + { + image_sync: { + chain_name: 'axelar', + base_denom: 'wbtc-satoshi' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png' + } + ] + }, + { + description: "Tether's USD stablecoin on Axelar", + denom_units: [ + { + denom: + 'ibc/E22041BFD1C019CF98A1488F8D957369FAEE2731ECF2635642FB86B663B26CFB', + exponent: 0, + aliases: [ + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E22041BFD1C019CF98A1488F8D957369FAEE2731ECF2635642FB86B663B26CFB', + name: 'Tether USD (Axelar)', + display: 'usdt', + symbol: 'USDT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg' + } + ] + }, + { + description: + 'Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.', + denom_units: [ + { + denom: + 'ibc/C69483B689956C656160B09B4626C70B39D730CB292AE84C26D2BAB620444521', + exponent: 0, + aliases: [ + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7' + ] + }, + { + denom: 'dai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C69483B689956C656160B09B4626C70B39D730CB292AE84C26D2BAB620444521', + name: 'Dai Stablecoin', + display: 'dai', + symbol: 'DAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + } + ] + }, + { + description: + 'Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.', + denom_units: [ + { + denom: + 'ibc/9BAE7C952EE6650E683820260A3B3F8094717A3999EA700CFCD6D79F4A97C36F', + exponent: 0, + aliases: [ + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D' + ] + }, + { + denom: 'busd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9BAE7C952EE6650E683820260A3B3F8094717A3999EA700CFCD6D79F4A97C36F', + name: 'Binance USD', + display: 'busd', + symbol: 'BUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.svg' + } + ] + }, + { + description: 'The native staking and governance token of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/24C8F684A3E48F5C1A0459979E3C4C9A818A136C562866762952BC6D53140E0B', + exponent: 0, + aliases: [ + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/24C8F684A3E48F5C1A0459979E3C4C9A818A136C562866762952BC6D53140E0B', + name: 'Cosmos Hub', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: + 'CRO is the native token of the Crypto.org Chain, referred to as Native CRO.', + denom_units: [ + { + denom: + 'ibc/AC015C5B8C933B2F8FB7DAECAE2A797AC1ED56A86BAF974F68AB2FF539C3BFA9', + exponent: 0, + aliases: [ + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1' + ] + }, + { + denom: 'cro', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/AC015C5B8C933B2F8FB7DAECAE2A797AC1ED56A86BAF974F68AB2FF539C3BFA9', + name: 'Cronos POS Chain', + display: 'cro', + symbol: 'CRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + }, + images: [ + { + image_sync: { + chain_name: 'cryptoorgchain', + base_denom: 'basecro' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg' + } + ] + }, + { + description: + 'BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.', + denom_units: [ + { + denom: + 'ibc/3F25AFCB452816CACB8D7EEE2910282458A23C86D3D16190CF72D6C9193023CE', + exponent: 0, + aliases: [ + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D' + ] + }, + { + denom: 'wbnb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/3F25AFCB452816CACB8D7EEE2910282458A23C86D3D16190CF72D6C9193023CE', + name: 'Binance Coin', + display: 'wbnb', + symbol: 'BNB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.svg' + } + ] + }, + { + description: + 'Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.', + denom_units: [ + { + denom: + 'ibc/E10323E5B030068126A3566919BBD530C03AABEB4C5A6D90D833BCC4EE3EA947', + exponent: 0, + aliases: [ + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB' + ] + }, + { + denom: 'wmatic', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E10323E5B030068126A3566919BBD530C03AABEB4C5A6D90D833BCC4EE3EA947', + name: 'Polygon', + display: 'wmatic', + symbol: 'MATIC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/matic-purple.svg' + } + ] + }, + { + description: + 'AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.', + denom_units: [ + { + denom: + 'ibc/F32448822BE081D8C04626E0E6B91A74E9E2C13B35809D30022E3DAF7C50915C', + exponent: 0, + aliases: [ + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373' + ] + }, + { + denom: 'avax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F32448822BE081D8C04626E0E6B91A74E9E2C13B35809D30022E3DAF7C50915C', + name: 'Avalanche', + display: 'avax', + symbol: 'AVAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/avax.svg' + } + ] + }, + { + description: 'The native staking token of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/3D6C9DC64D36B12D8EFDB69401D22DAD2E698E5C48C3DCAE3D271957FDD12EFF', + exponent: 0, + aliases: [ + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0' + ] + }, + { + denom: 'mluna', + exponent: 3, + aliases: ['milliluna'] + }, + { + denom: 'luna', + exponent: 6, + aliases: ['lunc'] + } + ], + type_asset: 'ics20', + base: 'ibc/3D6C9DC64D36B12D8EFDB69401D22DAD2E698E5C48C3DCAE3D271957FDD12EFF', + name: 'Luna Classic', + display: 'luna', + symbol: 'LUNC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.svg' + } + ] + }, + { + description: 'The native token of JUNO Chain', + denom_units: [ + { + denom: + 'ibc/075D61CA2C1016C6C2D82D4B6A794B1CF640E988427342963BC7F2B711DC54DF', + exponent: 0, + aliases: [ + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED' + ] + }, + { + denom: 'juno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/075D61CA2C1016C6C2D82D4B6A794B1CF640E988427342963BC7F2B711DC54DF', + name: 'Juno', + display: 'juno', + symbol: 'JUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg' + } + ] + }, + { + description: 'Wrapped Polkadot on Axelar', + denom_units: [ + { + denom: + 'ibc/F443C105CF79BEA93099F084463B7A0E9391FF047A145FF66B8C6C74E7AD154E', + exponent: 0, + aliases: [ + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/F443C105CF79BEA93099F084463B7A0E9391FF047A145FF66B8C6C74E7AD154E', + name: 'Wrapped Polkadot (Axelar)', + display: 'dot', + symbol: 'DOT.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dot.axl.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Evmos Hub', + denom_units: [ + { + denom: + 'ibc/1EA7A65A4F191376B8076C0C7341EC10A676BF959A2EF1C2482CB0E20B5C8D57', + exponent: 0, + aliases: [ + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A' + ] + }, + { + denom: 'evmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1EA7A65A4F191376B8076C0C7341EC10A676BF959A2EF1C2482CB0E20B5C8D57', + name: 'Evmos', + display: 'evmos', + symbol: 'EVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.svg' + } + ] + }, + { + description: 'The native staking and governance token of Kava', + denom_units: [ + { + denom: + 'ibc/EDE89F55D51895825CCFA6B8AD025B18F0AB2491A2884CEB088E8D886296F246', + exponent: 0, + aliases: [ + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205' + ] + }, + { + denom: 'kava', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EDE89F55D51895825CCFA6B8AD025B18F0AB2491A2884CEB088E8D886296F246', + name: 'Kava', + display: 'kava', + symbol: 'KAVA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.svg' + } + ] + }, + { + description: 'The native token of Secret Network', + denom_units: [ + { + denom: + 'ibc/2827D0C76C159B4B3B2D869E56A9B309AAA256CB2C2310862E32D78365CDEEC0', + exponent: 0, + aliases: [ + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A' + ] + }, + { + denom: 'scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2827D0C76C159B4B3B2D869E56A9B309AAA256CB2C2310862E32D78365CDEEC0', + name: 'Secret Network', + display: 'scrt', + symbol: 'SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.svg' + } + ] + }, + { + description: 'The USD stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/1D0FF850D76671CEDF99370D5AC68EDC7CB6AFE73BF43EB9619FDEA71C0FA5CF', + exponent: 0, + aliases: [ + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC' + ] + }, + { + denom: 'musd', + exponent: 3, + aliases: ['milliusd'] + }, + { + denom: 'ust', + exponent: 6, + aliases: ['ustc'] + } + ], + type_asset: 'ics20', + base: 'ibc/1D0FF850D76671CEDF99370D5AC68EDC7CB6AFE73BF43EB9619FDEA71C0FA5CF', + name: 'TerraClassicUSD', + display: 'ust', + symbol: 'USTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.svg' + } + ] + }, + { + description: 'The native token of Stargaze', + denom_units: [ + { + denom: + 'ibc/A53BB24468CC8EFB3EC61AA92F37DCC129F47C4801DA41F3146C4654198F33B4', + exponent: 0, + aliases: [ + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4' + ] + }, + { + denom: 'stars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A53BB24468CC8EFB3EC61AA92F37DCC129F47C4801DA41F3146C4654198F33B4', + name: 'Stargaze', + display: 'stars', + symbol: 'STARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: 'ustars' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg' + } + ] + }, + { + description: 'The native token of Chihuahua Chain', + denom_units: [ + { + denom: + 'ibc/805B64EF95E178D300F0A4AB8ADA68C923ECC831FA036A0902409FE5319EC359', + exponent: 0, + aliases: [ + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228' + ] + }, + { + denom: 'huahua', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/805B64EF95E178D300F0A4AB8ADA68C923ECC831FA036A0902409FE5319EC359', + name: 'Chihuahua', + display: 'huahua', + symbol: 'HUAHUA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.svg' + } + ] + }, + { + description: + 'The XPRT token is primarily a governance token for the Persistence chain.', + denom_units: [ + { + denom: + 'ibc/B2A9BE3767E592A917F8BCDEE509DB2F6E9E0959C9F414AF3423D1F1AB7D69C7', + exponent: 0, + aliases: [ + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293' + ] + }, + { + denom: 'xprt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B2A9BE3767E592A917F8BCDEE509DB2F6E9E0959C9F414AF3423D1F1AB7D69C7', + name: 'Persistence', + display: 'xprt', + symbol: 'XPRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.svg' + } + ] + }, + { + description: + 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets. Stakers of PoS tokens can stake their assets while maintaining the liquidity of these assets. Users earn staking rewards + receive 1:1 pegged staked representative tokens which can be used to generate additional yield.', + denom_units: [ + { + denom: + 'ibc/6DB83D091881D6915DC3C2FF7045D9F6F45A040AC85A942BC73CB2CA558381D7', + exponent: 0, + aliases: [ + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961' + ] + }, + { + denom: 'pstake', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6DB83D091881D6915DC3C2FF7045D9F6F45A040AC85A942BC73CB2CA558381D7', + name: 'pSTAKE Finance', + display: 'pstake', + symbol: 'PSTAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.svg' + } + ], + keywords: ['canon'] + }, + { + description: + "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/CAB6ADBF7C637493F7A5266782C0EB319AF0E2C83A123C60DC6710C4D5DE2C48', + exponent: 0, + aliases: [ + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4' + ] + }, + { + denom: 'akt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CAB6ADBF7C637493F7A5266782C0EB319AF0E2C83A123C60DC6710C4D5DE2C48', + name: 'Akash', + display: 'akt', + symbol: 'AKT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' + } + ] + }, + { + description: 'REGEN coin is the token for the Regen Network Platform', + denom_units: [ + { + denom: + 'ibc/5C08607EE8693AF0908C617729123262387C5429865ADB96360CDCBE8F1089C0', + exponent: 0, + aliases: [ + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076' + ] + }, + { + denom: 'regen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5C08607EE8693AF0908C617729123262387C5429865ADB96360CDCBE8F1089C0', + name: 'Regen', + display: 'regen', + symbol: 'REGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.svg' + } + ] + }, + { + description: 'DVPN is the native token of the Sentinel Hub.', + denom_units: [ + { + denom: + 'ibc/CAC4B09EE45FF0379F1F2406A012FE01933D7BE9A56F0A7EFF71AA4E1A7D2137', + exponent: 0, + aliases: [ + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84' + ] + }, + { + denom: 'dvpn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CAC4B09EE45FF0379F1F2406A012FE01933D7BE9A56F0A7EFF71AA4E1A7D2137', + name: 'Sentinel', + display: 'dvpn', + symbol: 'DVPN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.svg' + } + ] + }, + { + description: + 'The IRIS token is the native governance token for the IrisNet chain.', + denom_units: [ + { + denom: + 'ibc/113B6CAC6D32A4A4CBE637C66C79555EE0D9B07862569B9A0E1BA3C61DA72610', + exponent: 0, + aliases: [ + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0' + ] + }, + { + denom: 'iris', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/113B6CAC6D32A4A4CBE637C66C79555EE0D9B07862569B9A0E1BA3C61DA72610', + name: 'IRISnet', + display: 'iris', + symbol: 'IRIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/irisnet/images/iris.svg' + } + ] + }, + { + description: + 'IOV coin is the token for the Starname (IOV) Asset Name Service', + denom_units: [ + { + denom: + 'ibc/817F63E359DB1709C0F4AE567CCF5A2B50D3424DF8A1D77BEDE814398F47BC05', + exponent: 0, + aliases: [ + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC' + ] + }, + { + denom: 'iov', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/817F63E359DB1709C0F4AE567CCF5A2B50D3424DF8A1D77BEDE814398F47BC05', + name: 'Starname', + display: 'iov', + symbol: 'IOV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg' + } + ] + }, + { + description: + 'e-Money NGM staking token. In addition to earning staking rewards the token is bought back and burned based on e-Money stablecoin inflation.', + denom_units: [ + { + denom: + 'ibc/7015D7762125E7A07B498B5A73F8D0B6DB7AB0BEA759A652223EE8B16518AF29', + exponent: 0, + aliases: [ + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59' + ] + }, + { + denom: 'ngm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7015D7762125E7A07B498B5A73F8D0B6DB7AB0BEA759A652223EE8B16518AF29', + name: 'e-Money', + display: 'ngm', + symbol: 'NGM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/ngm.svg' + } + ] + }, + { + description: + 'e-Money EUR stablecoin. Audited and backed by fiat EUR deposits and government bonds.', + denom_units: [ + { + denom: + 'ibc/04E85FF3429212B27102B0EE9AAE0EB12EF7D2DFF49B7AE43267B48CA20B13A8', + exponent: 0, + aliases: [ + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F' + ] + }, + { + denom: 'eur', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/04E85FF3429212B27102B0EE9AAE0EB12EF7D2DFF49B7AE43267B48CA20B13A8', + name: 'e-Money EUR', + display: 'eur', + symbol: 'EEUR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/emoney/images/eeur.svg' + } + ] + }, + { + description: + 'LIKE is the native staking and governance token of LikeCoin chain, a Decentralized Publishing Infrastructure to empower content ownership, authenticity, and provenance.', + denom_units: [ + { + denom: + 'ibc/0001368E285FACE6B90A89EEB477D0B201DE85C3D408154118262EC571370EBE', + exponent: 0, + aliases: [ + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525' + ] + }, + { + denom: 'like', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/0001368E285FACE6B90A89EEB477D0B201DE85C3D408154118262EC571370EBE', + name: 'LikeCoin', + display: 'like', + symbol: 'LIKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg' + } + ] + }, + { + description: 'The native token of IXO Chain', + denom_units: [ + { + denom: + 'ibc/A4CE8B20547B4119D142A476234770F1E68217CA8ECD8C5D8AB4B1FDBC04D52E', + exponent: 0, + aliases: [ + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B' + ] + }, + { + denom: 'ixo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A4CE8B20547B4119D142A476234770F1E68217CA8ECD8C5D8AB4B1FDBC04D52E', + name: 'ixo', + display: 'ixo', + symbol: 'IXO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/impacthub/images/ixo.svg' + } + ] + }, + { + description: + 'The BCNA coin is the transactional token within the BitCanna network, serving the legal cannabis industry through its payment network, supply chain and trust network.', + denom_units: [ + { + denom: + 'ibc/AC3D6D250FFDDD5252BC01E71A10E4BD8224D0D8D11FC4D135DC1B7EAB017590', + exponent: 0, + aliases: [ + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5' + ] + }, + { + denom: 'bcna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AC3D6D250FFDDD5252BC01E71A10E4BD8224D0D8D11FC4D135DC1B7EAB017590', + name: 'BitCanna', + display: 'bcna', + symbol: 'BCNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg' + } + ] + }, + { + description: 'BitSong Native Token', + denom_units: [ + { + denom: + 'ibc/DFFDBF18F806F912BF333E227D4B6E39CEFF0E606411D42A7B8AF5156C38745F', + exponent: 0, + aliases: [ + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452' + ] + }, + { + denom: 'btsg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DFFDBF18F806F912BF333E227D4B6E39CEFF0E606411D42A7B8AF5156C38745F', + name: 'BitSong', + display: 'btsg', + symbol: 'BTSG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.svg' + } + ] + }, + { + description: 'The native token of Ki Chain', + denom_units: [ + { + denom: + 'ibc/51F15E964FAA2FC32A938A5870274DF0A96778A7A8F83CF9289A5D9420924869', + exponent: 0, + aliases: [ + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E' + ] + }, + { + denom: 'xki', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/51F15E964FAA2FC32A938A5870274DF0A96778A7A8F83CF9289A5D9420924869', + name: 'Ki', + display: 'xki', + symbol: 'XKI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg' + } + ] + }, + { + description: + 'Panacea is a public blockchain launched by MediBloc, which is the key infrastructure for reinventing the patient-centered healthcare data ecosystem', + denom_units: [ + { + denom: + 'ibc/C45A890F80FE4DBF1CF5A29025E4EDB69600799D06AC0712A41C74A67741C752', + exponent: 0, + aliases: [ + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB' + ] + }, + { + denom: 'med', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C45A890F80FE4DBF1CF5A29025E4EDB69600799D06AC0712A41C74A67741C752', + name: 'Medibloc', + display: 'med', + symbol: 'MED', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/panacea/images/med.svg' + } + ] + }, + { + description: 'The staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/22A236187418F35BD1C06D326434828A579BD239F661303F94A02E0B3A09DCD0', + exponent: 0, + aliases: [ + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/22A236187418F35BD1C06D326434828A579BD239F661303F94A02E0B3A09DCD0', + name: 'bostrom', + display: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + symbol: 'BOOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/boot.svg' + } + ] + }, + { + description: 'Native Token of Comdex Protocol', + denom_units: [ + { + denom: + 'ibc/20C731C7B2B7DDF6773645CF820DD66ABCA3A83AE684E63E84A6862C4D44BD62', + exponent: 0, + aliases: [ + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0' + ] + }, + { + denom: 'cmdx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/20C731C7B2B7DDF6773645CF820DD66ABCA3A83AE684E63E84A6862C4D44BD62', + name: 'Comdex', + display: 'cmdx', + symbol: 'CMDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.svg' + } + ] + }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/3AB3B7A83661041F71DA1ACF7CA2831E0C6704A06BC631C64CF85B60B6FED8BB', + exponent: 0, + aliases: [ + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA' + ] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/3AB3B7A83661041F71DA1ACF7CA2831E0C6704A06BC631C64CF85B60B6FED8BB', + name: 'Cheqd', + display: 'cheq', + symbol: 'CHEQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ] + }, + { + description: 'Native token of the Lum Network', + denom_units: [ + { + denom: + 'ibc/6961A0798FFC279B9FF0541F69FD0AF09D6C8ACD3A8107EB597231D47B0222EC', + exponent: 0, + aliases: [ + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2' + ] + }, + { + denom: 'lum', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6961A0798FFC279B9FF0541F69FD0AF09D6C8ACD3A8107EB597231D47B0222EC', + name: 'Lum Network', + display: 'lum', + symbol: 'LUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.svg' + } + ] + }, + { + description: 'The native token of Vidulum', + denom_units: [ + { + denom: + 'ibc/B1F29EDF81E82B518E6FC0AB434DE652F14B394D693F079444E9A57DAD95E297', + exponent: 0, + aliases: [ + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD' + ] + }, + { + denom: 'vdl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B1F29EDF81E82B518E6FC0AB434DE652F14B394D693F079444E9A57DAD95E297', + name: 'Vidulum', + display: 'vdl', + symbol: 'VDL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/vidulum/images/vdl.svg' + } + ] + }, + { + description: 'The native token of Desmos', + denom_units: [ + { + denom: + 'ibc/CE59287CB3F1816534709186CCD5A15FF35CA0C31FC053B98323824CEA295B8C', + exponent: 0, + aliases: [ + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C' + ] + }, + { + denom: 'dsm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CE59287CB3F1816534709186CCD5A15FF35CA0C31FC053B98323824CEA295B8C', + name: 'Desmos', + display: 'dsm', + symbol: 'DSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/desmos/images/dsm.svg' + } + ] + }, + { + description: 'Native token of Dig Chain', + denom_units: [ + { + denom: + 'ibc/3F3BE1EFB618EC16C505746272C41045FC0D0FA524B339300C73C95CB1CE96BF', + exponent: 0, + aliases: [ + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D' + ] + }, + { + denom: 'dig', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3F3BE1EFB618EC16C505746272C41045FC0D0FA524B339300C73C95CB1CE96BF', + name: 'Dig Chain', + display: 'dig', + symbol: 'DIG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dig/images/dig.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', + denom_units: [ + { + denom: + 'ibc/10342C67590FEF19BBBC545B16C0F752FD7EDAFB0F6D8B70A01958754673B259', + exponent: 0, + aliases: [ + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E' + ] + }, + { + denom: 'msomm', + exponent: 3, + aliases: ['millisomm'] + }, + { + denom: 'somm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/10342C67590FEF19BBBC545B16C0F752FD7EDAFB0F6D8B70A01958754673B259', + name: 'Sommelier', + display: 'somm', + symbol: 'SOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.svg' + } + ] + }, + { + description: 'The native token of BandChain', + denom_units: [ + { + denom: + 'ibc/E3AE4D0787E37A38888B81CCC8FE68EC2BB36C12B56BF32ADDA5CA8DEBAB28D1', + exponent: 0, + aliases: [ + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE' + ] + }, + { + denom: 'band', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E3AE4D0787E37A38888B81CCC8FE68EC2BB36C12B56BF32ADDA5CA8DEBAB28D1', + name: 'Band Protocol', + display: 'band', + symbol: 'BAND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bandchain/images/band.svg' + } + ] + }, + { + description: 'The native token of Konstellation Network', + denom_units: [ + { + denom: + 'ibc/7A3B041B98028EA936265374D306ED201C06B3FF3AD5B19D8B7E9F5373570C92', + exponent: 0, + aliases: [ + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593' + ] + }, + { + denom: 'darc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7A3B041B98028EA936265374D306ED201C06B3FF3AD5B19D8B7E9F5373570C92', + name: 'Konstellation', + display: 'darc', + symbol: 'DARC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/konstellation/images/darc.svg' + } + ] + }, + { + description: 'The native token of Umee', + denom_units: [ + { + denom: + 'ibc/863DAD7B7B2D84CF2C0F8E1F992A0D9936C27201F42685448AD70E581090E840', + exponent: 0, + aliases: [ + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C' + ] + }, + { + denom: 'umee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/863DAD7B7B2D84CF2C0F8E1F992A0D9936C27201F42685448AD70E581090E840', + name: 'Umee', + display: 'umee', + symbol: 'UMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg' + } + ] + }, + { + description: 'The native token of Gravity Bridge', + denom_units: [ + { + denom: + 'ibc/FE211265F9D41F9894A86FD4B1B492EDC3929FD67791FBCA98CC1F73EC12929C', + exponent: 0, + aliases: [ + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44' + ] + }, + { + denom: 'graviton', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FE211265F9D41F9894A86FD4B1B492EDC3929FD67791FBCA98CC1F73EC12929C', + name: 'Gravity Bridge', + display: 'graviton', + symbol: 'GRAV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.svg' + } + ] + }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/9CC3A47978226A94D664F1B7573E57B5E544DA2BCE6F5B23AD1E4F3DEC92177E', + exponent: 0, + aliases: [ + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84' + ] + }, + { + denom: 'dec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9CC3A47978226A94D664F1B7573E57B5E544DA2BCE6F5B23AD1E4F3DEC92177E', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ] + }, + { + description: 'The native token cw20 for Marble DAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/C777CA932090D906F1E74A5198262650FD9860DD53655BC884087267419F2045', + exponent: 0, + aliases: [ + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6' + ] + }, + { + denom: 'marble', + exponent: 3 + } + ], + type_asset: 'ics20', + base: 'ibc/C777CA932090D906F1E74A5198262650FD9860DD53655BC884087267419F2045', + name: 'Marble', + display: 'marble', + symbol: 'MARBLE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.svg' + } + ] + }, + { + description: 'The native governance token of Carbon', + denom_units: [ + { + denom: + 'ibc/3BF65DD69C47179A0971BDF0ADE632F5FBFBBF20A4701592EC10A1641B5ECEC5', + exponent: 0, + aliases: [ + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3' + ] + }, + { + denom: 'dswth', + exponent: 8, + aliases: ['SWTH'] + } + ], + type_asset: 'ics20', + base: 'ibc/3BF65DD69C47179A0971BDF0ADE632F5FBFBBF20A4701592EC10A1641B5ECEC5', + name: 'Carbon', + display: 'dswth', + symbol: 'SWTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.svg' + } + ] + }, + { + description: 'The native token of Cerberus Chain', + denom_units: [ + { + denom: + 'ibc/B378B10E86DEB1F1B6E7E33FB6E0C6630CB40B6BA74BDB3115E09BA60A275A9C', + exponent: 0, + aliases: [ + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7' + ] + }, + { + denom: 'crbrus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B378B10E86DEB1F1B6E7E33FB6E0C6630CB40B6BA74BDB3115E09BA60A275A9C', + name: 'Cerberus', + display: 'crbrus', + symbol: 'CRBRUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cerberus/images/crbrus.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native staking and governance token of the Fetch Hub.', + denom_units: [ + { + denom: + 'ibc/69013E712EA7D18DA78A5176C6627192CAF89E2E02A93C51DD734A75B44AF9C3', + exponent: 0, + aliases: [ + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447' + ] + }, + { + denom: 'fet', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/69013E712EA7D18DA78A5176C6627192CAF89E2E02A93C51DD734A75B44AF9C3', + name: 'Fetch.ai', + display: 'fet', + symbol: 'FET', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.svg' + } + ] + }, + { + description: 'The native token of Asset Mantle', + denom_units: [ + { + denom: + 'ibc/CD90649E62E49E80D3398B06E9DEB1C688E6FC00FEBEEDA8590B67EF50E6BE46', + exponent: 0, + aliases: [ + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC' + ] + }, + { + denom: 'mntl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CD90649E62E49E80D3398B06E9DEB1C688E6FC00FEBEEDA8590B67EF50E6BE46', + name: 'AssetMantle', + display: 'mntl', + symbol: 'MNTL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.svg' + } + ] + }, + { + description: 'The native token cw20 for Neta on Juno Chain', + denom_units: [ + { + denom: + 'ibc/34A248DB6C6AE3FC83F9026FAD47524EB0158089678B576B0919784406EF6DAA', + exponent: 0, + aliases: [ + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A' + ] + }, + { + denom: 'neta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/34A248DB6C6AE3FC83F9026FAD47524EB0158089678B576B0919784406EF6DAA', + name: 'Neta', + display: 'neta', + symbol: 'NETA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.svg' + } + ] + }, + { + description: + 'The INJ token is the native governance token for the Injective chain.', + denom_units: [ + { + denom: + 'ibc/258A7396E55030F387E3BA20E499B1E0C2ECF9BEE367499E677ABF092B7C01B1', + exponent: 0, + aliases: [ + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273' + ] + }, + { + denom: 'INJ', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/258A7396E55030F387E3BA20E499B1E0C2ECF9BEE367499E677ABF092B7C01B1', + name: 'Injective', + display: 'INJ', + symbol: 'INJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg' + } + ] + }, + { + description: 'The KRW stablecoin of Terra Classic.', + denom_units: [ + { + denom: + 'ibc/73D17A89CF85175704A21104BFBD1CDD06D8483ECF188E7E5E44C13DA6B4C3EA', + exponent: 0, + aliases: [ + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780' + ] + }, + { + denom: 'mkrw', + exponent: 3, + aliases: ['millikrw'] + }, + { + denom: 'krt', + exponent: 6, + aliases: ['krtc'] + } + ], + type_asset: 'ics20', + base: 'ibc/73D17A89CF85175704A21104BFBD1CDD06D8483ECF188E7E5E44C13DA6B4C3EA', + name: 'TerraClassicKRW', + display: 'krt', + symbol: 'KRTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.svg' + } + ] + }, + { + description: + 'TICK coin is the token for the Microtick Price Discovery & Oracle App', + denom_units: [ + { + denom: + 'ibc/2B1374D56AE3DD04FEBDCD03EA959933226783826EC39634EE7C04A7BBA2CC4C', + exponent: 0, + aliases: [ + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8' + ] + }, + { + denom: 'tick', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2B1374D56AE3DD04FEBDCD03EA959933226783826EC39634EE7C04A7BBA2CC4C', + name: 'Microtick', + display: 'tick', + symbol: 'TICK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/microtick/images/tick.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + denom_units: [ + { + denom: + 'ibc/B03B6579ADD194B952C7530C85740FE48A5BEA778BEFDDF73796BC48790CCD63', + exponent: 0, + aliases: [ + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB' + ] + }, + { + denom: 'ROWAN', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B03B6579ADD194B952C7530C85740FE48A5BEA778BEFDDF73796BC48790CCD63', + name: 'Sifchain', + display: 'ROWAN', + symbol: 'ROWAN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Shentu', + denom_units: [ + { + denom: + 'ibc/888D9A8585F1A7AEF9102A8C01558B6805518B363EE48F8FAEE8E6133E721BAD', + exponent: 0, + aliases: [ + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3' + ] + }, + { + denom: 'ctk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/888D9A8585F1A7AEF9102A8C01558B6805518B363EE48F8FAEE8E6133E721BAD', + name: 'Shentu', + display: 'ctk', + symbol: 'CTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.svg' + } + ] + }, + { + description: + 'Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.', + denom_units: [ + { + denom: + 'ibc/C67F8D74512EE16540260DD9A7943D6E5E992A39DF1B35459CC1F11FDC68D915', + exponent: 0, + aliases: [ + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B' + ] + }, + { + denom: 'hope', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C67F8D74512EE16540260DD9A7943D6E5E992A39DF1B35459CC1F11FDC68D915', + name: 'Hope Galaxy', + display: 'hope', + symbol: 'HOPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.svg' + } + ] + }, + { + description: + 'Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem', + denom_units: [ + { + denom: + 'ibc/134425947BCF7BDE793D1939E0066645D4C2E0BA5EF4480698B2B3F81DA39369', + exponent: 0, + aliases: [ + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788' + ] + }, + { + denom: 'rac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/134425947BCF7BDE793D1939E0066645D4C2E0BA5EF4480698B2B3F81DA39369', + name: 'Racoon', + display: 'rac', + symbol: 'juno.RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.svg' + } + ] + }, + { + description: + 'Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.', + denom_units: [ + { + denom: + 'ibc/47B9E908109729E51BC41BEB83E8B7BD73F647F4CD7D1884468FCFE432CDF30D', + exponent: 0, + aliases: [ + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE' + ] + }, + { + denom: 'frax', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/47B9E908109729E51BC41BEB83E8B7BD73F647F4CD7D1884468FCFE432CDF30D', + name: 'Frax', + display: 'frax', + symbol: 'FRAX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg' + } + ] + }, + { + description: 'Gravity Bridge WBTC', + denom_units: [ + { + denom: + 'ibc/F685D166C294069D9012B0ACB59E408977DC91E6EDAA099117EDEA928E400C5E', + exponent: 0, + aliases: [ + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796' + ] + }, + { + denom: 'gwbtc', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/F685D166C294069D9012B0ACB59E408977DC91E6EDAA099117EDEA928E400C5E', + name: 'Wrapped Bitcoin (Gravity Bridge)', + display: 'gwbtc', + symbol: 'WBTC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wbtc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge WETH', + denom_units: [ + { + denom: + 'ibc/43E9D1146169E336A06CCBD41AA51CA70C144BCC7808CD8697C3A245B4318C31', + exponent: 0, + aliases: [ + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5' + ] + }, + { + denom: 'gweth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/43E9D1146169E336A06CCBD41AA51CA70C144BCC7808CD8697C3A245B4318C31', + name: 'Ether (Gravity Bridge)', + display: 'gweth', + symbol: 'WETH.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDC', + denom_units: [ + { + denom: + 'ibc/13040204A8149EE809E7ACC47F9CE955AB066FD7C89A7B3D19F3B3FF8805F023', + exponent: 0, + aliases: [ + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E' + ] + }, + { + denom: 'gusdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/13040204A8149EE809E7ACC47F9CE955AB066FD7C89A7B3D19F3B3FF8805F023', + name: 'USD Coin (Gravity Bridge)', + display: 'gusdc', + symbol: 'USDC.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge DAI', + denom_units: [ + { + denom: + 'ibc/17A952DD0EA48D62753295FA4ABADF4F5350FF8CCFAF175105013BE353F0300D', + exponent: 0, + aliases: [ + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5' + ] + }, + { + denom: 'gdai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/17A952DD0EA48D62753295FA4ABADF4F5350FF8CCFAF175105013BE353F0300D', + name: 'DAI Stablecoin (Gravity Bridge)', + display: 'gdai', + symbol: 'DAI.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/dai.grv.svg' + } + ] + }, + { + description: 'Gravity Bridge USDT', + denom_units: [ + { + denom: + 'ibc/629A1BA1205828F1B6AA4A36D80799E571647342DC0E1789D7BABE2D4A488788', + exponent: 0, + aliases: [ + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805' + ] + }, + { + denom: 'gusdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/629A1BA1205828F1B6AA4A36D80799E571647342DC0E1789D7BABE2D4A488788', + name: 'Tether USD (Gravity Bridge)', + display: 'gusdt', + symbol: 'USDT.grv', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg' + } + ] + }, + { + description: 'The native token of Marble DEX on Juno Chain', + denom_units: [ + { + denom: + 'ibc/C58AAB5E529E690931A0C4BBA7FA05A5A08172DE8FA6BE466E72FE95D48BB994', + exponent: 0, + aliases: [ + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3' + ] + }, + { + denom: 'block', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C58AAB5E529E690931A0C4BBA7FA05A5A08172DE8FA6BE466E72FE95D48BB994', + name: 'Block', + display: 'block', + symbol: 'BLOCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.svg' + } + ] + }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/060DD36EACCBF3F6162E3D47E3EA4B2F56004C2A3B6059BF7F06EB95DF8AD1D3', + exponent: 0, + aliases: [ + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2' + ] + }, + { + denom: 'hash', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/060DD36EACCBF3F6162E3D47E3EA4B2F56004C2A3B6059BF7F06EB95DF8AD1D3', + name: 'Provenance', + display: 'hash', + symbol: 'HASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ] + }, + { + description: 'GLX is the staking token of the Galaxy Chain', + denom_units: [ + { + denom: + 'ibc/66B9CD90F2D3D875B0AD40D39185F21E03D166CFB2200A3A3D1BD2AE6BC12BC7', + exponent: 0, + aliases: [ + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2' + ] + }, + { + denom: 'glx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/66B9CD90F2D3D875B0AD40D39185F21E03D166CFB2200A3A3D1BD2AE6BC12BC7', + name: 'Galaxy', + display: 'glx', + symbol: 'GLX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/galaxy/images/glx.svg' + } + ] + }, + { + description: 'The DAO token to build consensus among Hong Kong People', + denom_units: [ + { + denom: + 'ibc/6C6A1C9609C2B31FA5835A01566607F6A7D50FC3CD656FBF4A8B68F7AF4B334E', + exponent: 0, + aliases: [ + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/6C6A1C9609C2B31FA5835A01566607F6A7D50FC3CD656FBF4A8B68F7AF4B334E', + name: 'DHK', + display: 'dhk', + symbol: 'DHK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.svg' + } + ] + }, + { + description: 'Token governance for Junoswap', + denom_units: [ + { + denom: + 'ibc/63179923DA8329A8C824F24BC9237743DF4ED2C2833C76D63C0D30672DE057B6', + exponent: 0, + aliases: [ + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC' + ] + }, + { + denom: 'raw', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/63179923DA8329A8C824F24BC9237743DF4ED2C2833C76D63C0D30672DE057B6', + name: 'JunoSwap', + display: 'raw', + symbol: 'RAW', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.svg' + } + ] + }, + { + description: + 'MEME Token (MEME) is the native staking token of the MEME Chain', + denom_units: [ + { + denom: + 'ibc/79F3232D96E49C9D5C6DBBD86DCA20779518CB98519225AE85E529DBAACED2E2', + exponent: 0, + aliases: [ + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA' + ] + }, + { + denom: 'meme', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/79F3232D96E49C9D5C6DBBD86DCA20779518CB98519225AE85E529DBAACED2E2', + name: 'MEME', + display: 'meme', + symbol: 'MEME', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/meme/images/meme.svg' + } + ] + }, + { + description: + 'Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!', + denom_units: [ + { + denom: + 'ibc/5F7326A6F914A2309923FDC8DC9C0E92770BD6284A8CDE059A297F9DD095CB51', + exponent: 0, + aliases: [ + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7' + ] + }, + { + denom: 'asvt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F7326A6F914A2309923FDC8DC9C0E92770BD6284A8CDE059A297F9DD095CB51', + name: 'Another.Software Validator Token', + display: 'asvt', + symbol: 'ASVT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png' + } + ] + }, + { + description: 'DAO dedicated to building tools on the Juno Network', + denom_units: [ + { + denom: + 'ibc/9AC8C651F60D017C7BD114E9BDE520ABAC33EB1A52B7EE106D3F5696EAB30B52', + exponent: 0, + aliases: [ + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484' + ] + }, + { + denom: 'joe', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9AC8C651F60D017C7BD114E9BDE520ABAC33EB1A52B7EE106D3F5696EAB30B52', + name: 'JoeDAO', + display: 'joe', + symbol: 'JOE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png' + } + ] + }, + { + description: 'The native staking token of Terra.', + denom_units: [ + { + denom: + 'ibc/F61A1A16CAE81216EB1BB46EEB73DE17341501EB656404666C2CCE628691404C', + exponent: 0, + aliases: [ + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9' + ] + }, + { + denom: 'luna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F61A1A16CAE81216EB1BB46EEB73DE17341501EB656404666C2CCE628691404C', + name: 'Luna', + display: 'luna', + symbol: 'LUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg' + } + ] + }, + { + description: 'Native token of Rizon Chain', + denom_units: [ + { + denom: + 'ibc/2BC01B08799D0F731BAC8D1FEFE67AE52B5140B7ED2E5C3BFC55726327F47180', + exponent: 0, + aliases: [ + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219' + ] + }, + { + denom: 'atolo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2BC01B08799D0F731BAC8D1FEFE67AE52B5140B7ED2E5C3BFC55726327F47180', + name: 'Rizon', + display: 'atolo', + symbol: 'ATOLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rizon/images/atolo.svg' + } + ] + }, + { + description: 'Governance token of Kava Lend Protocol', + denom_units: [ + { + denom: + 'ibc/A163B8940A76FF8B78C53ABE5133292277C8EE2DE443F1F22E5D4FDFB39BCAC3', + exponent: 0, + aliases: [ + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC' + ] + }, + { + denom: 'HARD', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A163B8940A76FF8B78C53ABE5133292277C8EE2DE443F1F22E5D4FDFB39BCAC3', + name: 'Kava Hard', + display: 'HARD', + symbol: 'HARD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.svg' + } + ] + }, + { + description: 'Governance token of Kava Swap Protocol', + denom_units: [ + { + denom: + 'ibc/F63E2A241C0CFBF9DDE6C770AC3B73499ED191277163B2B63DD8516FFD3F9622', + exponent: 0, + aliases: [ + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5' + ] + }, + { + denom: 'SWP', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F63E2A241C0CFBF9DDE6C770AC3B73499ED191277163B2B63DD8516FFD3F9622', + name: 'Kava Swap', + display: 'SWP', + symbol: 'SWP', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.svg' + } + ] + }, + { + description: + 'A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.', + denom_units: [ + { + denom: + 'ibc/0A309406D75AA1DA6979EAAEF4D090DF8E3D8ADCA144AB13F036C4F9B82DE366', + exponent: 0, + aliases: [ + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049' + ] + }, + { + denom: 'link', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0A309406D75AA1DA6979EAAEF4D090DF8E3D8ADCA144AB13F036C4F9B82DE366', + name: 'Chainlink', + display: 'link', + symbol: 'LINK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.svg' + } + ] + }, + { + description: + 'L1 coin is the GenesisL1 blockchain utility, governance and EVM token', + denom_units: [ + { + denom: + 'ibc/307864F7D824724A8B5DAECBEC83DCCDA821B9139496AD6D7FE8FA9CA61DB6AF', + exponent: 0, + aliases: [ + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4' + ] + }, + { + denom: 'l1', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/307864F7D824724A8B5DAECBEC83DCCDA821B9139496AD6D7FE8FA9CA61DB6AF', + name: 'GenesisL1', + display: 'l1', + symbol: 'L1', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: + 'Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.', + denom_units: [ + { + denom: + 'ibc/E41144043A047AB9442048B330EA7275BE7FA1919919C11F7440EBADC03F9B3E', + exponent: 0, + aliases: [ + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE' + ] + }, + { + denom: 'aave', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E41144043A047AB9442048B330EA7275BE7FA1919919C11F7440EBADC03F9B3E', + name: 'Aave', + display: 'aave', + symbol: 'AAVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.', + denom_units: [ + { + denom: + 'ibc/BC5C6C77405065F99DBA654B0B216510AE0081616A00521444A3ABB9EB414640', + exponent: 0, + aliases: [ + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4' + ] + }, + { + denom: 'ape', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BC5C6C77405065F99DBA654B0B216510AE0081616A00521444A3ABB9EB414640', + name: 'ApeCoin', + display: 'ape', + symbol: 'APE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain', + denom_units: [ + { + denom: + 'ibc/C0C7CF40BD4AF25E134B0E796320006F31C22D16C5C3EA304911F4A210C81405', + exponent: 0, + aliases: [ + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3' + ] + }, + { + denom: 'mkr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/C0C7CF40BD4AF25E134B0E796320006F31C22D16C5C3EA304911F4A210C81405', + name: 'Maker', + display: 'mkr', + symbol: 'MKR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg' + } + ] + }, + { + description: + "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + denom_units: [ + { + denom: + 'ibc/B0CDAE9FC7F0F79F97628A6EA16874746962DED2D39FC46DB23B2E693BA947AB', + exponent: 0, + aliases: [ + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E' + ] + }, + { + denom: 'rai', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B0CDAE9FC7F0F79F97628A6EA16874746962DED2D39FC46DB23B2E693BA947AB', + name: 'Rai Reflex Index', + display: 'rai', + symbol: 'RAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.', + denom_units: [ + { + denom: + 'ibc/D21F8EA135C3B8F7F48D344FCE6B64A042D1CF557249D24C6BD047DBECBBF0AA', + exponent: 0, + aliases: [ + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2' + ] + }, + { + denom: 'shib', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D21F8EA135C3B8F7F48D344FCE6B64A042D1CF557249D24C6BD047DBECBBF0AA', + name: 'Shiba Inu', + display: 'shib', + symbol: 'SHIB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native staking and governance token of the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/B76BFFCAC015B948EEDB455B5FD970C5A03B2F5A4FDFFBEB11CF0511B4515357', + exponent: 0, + aliases: [ + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE' + ] + }, + { + denom: 'kuji', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B76BFFCAC015B948EEDB455B5FD970C5A03B2F5A4FDFFBEB11CF0511B4515357', + name: 'Kujira', + display: 'kuji', + symbol: 'KUJI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.svg' + } + ] + }, + { + description: 'The native token of Tgrade', + denom_units: [ + { + denom: + 'ibc/672F5B50AE8A80CC80576454144BC4B72DF7523194FF077FF485909B26E85AAB', + exponent: 0, + aliases: [ + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C' + ] + }, + { + denom: 'tgd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/672F5B50AE8A80CC80576454144BC4B72DF7523194FF077FF485909B26E85AAB', + name: 'Tgrade', + display: 'tgd', + symbol: 'TGD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/tgrade/images/tgrade-symbol-gradient.svg' + } + ] + }, + { + description: + 'Echelon - a scalable EVM on Cosmos, built on Proof-of-Stake with fast-finality that prioritizes interoperability and novel economics', + denom_units: [ + { + denom: + 'ibc/E4172F2C4CE8A5AE52F2C7C94127F68B628405DFF868E2B6EF50751A921FB63E', + exponent: 0, + aliases: [ + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D' + ] + }, + { + denom: 'echelon', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/E4172F2C4CE8A5AE52F2C7C94127F68B628405DFF868E2B6EF50751A921FB63E', + name: 'Echelon', + display: 'echelon', + symbol: 'ECH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg' + } + ] + }, + { + description: 'Staking and governance token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/949C0E32D7BB59AC5CA86676E7404CD0FEF82A57445940225660938E2CF70088', + exponent: 0, + aliases: [ + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B' + ] + }, + { + denom: 'odin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/949C0E32D7BB59AC5CA86676E7404CD0FEF82A57445940225660938E2CF70088', + name: 'Odin Protocol', + display: 'odin', + symbol: 'ODIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'GEO token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/4CBC5B93303FAB2602D0DB8E199FBAB27A485C33D7BC35FE34DCAEAD184F980D', + exponent: 0, + aliases: [ + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A' + ] + }, + { + denom: 'geo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4CBC5B93303FAB2602D0DB8E199FBAB27A485C33D7BC35FE34DCAEAD184F980D', + name: 'GEO', + display: 'geo', + symbol: 'GEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'O9W token for ODIN Protocol', + denom_units: [ + { + denom: + 'ibc/1D8D6FBAE0F318DC55DD9F82781621144EE7E4573172488EBAD954F1A81A285A', + exponent: 0, + aliases: [ + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D' + ] + }, + { + denom: 'O9W', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1D8D6FBAE0F318DC55DD9F82781621144EE7E4573172488EBAD954F1A81A285A', + name: 'O9W', + display: 'O9W', + symbol: 'O9W', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'ELEVENPARIS loyalty token on KiChain', + denom_units: [ + { + denom: + 'ibc/F9644A07971B8EAE94E4665E9E6111D38A3300520A137849DF5B57D9C41264B7', + exponent: 0, + aliases: [ + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/F9644A07971B8EAE94E4665E9E6111D38A3300520A137849DF5B57D9C41264B7', + name: 'LVN', + display: 'lvn', + symbol: 'kichain.LVN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/lvn.png' + } + ] + }, + { + description: + 'Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.', + denom_units: [ + { + denom: + 'ibc/30F7FA284F5DF4B300B62953C1B7E1F53C4FA0BF46E584A06B4BC68E6C14B77B', + exponent: 0, + aliases: [ + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49' + ] + }, + { + denom: 'wglmr', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/30F7FA284F5DF4B300B62953C1B7E1F53C4FA0BF46E584A06B4BC68E6C14B77B', + name: 'Moonbeam', + display: 'wglmr', + symbol: 'GLMR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.svg' + } + ] + }, + { + description: 'DeFi gaming platform built on Juno', + denom_units: [ + { + denom: + 'ibc/479CE03E1B3D0C4B878F4768FAD998F03CAF6477C4B8EAC9329744C241C3ADF3', + exponent: 0, + aliases: [ + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/479CE03E1B3D0C4B878F4768FAD998F03CAF6477C4B8EAC9329744C241C3ADF3', + name: 'Gelotto', + display: 'glto', + symbol: 'GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ] + }, + { + description: 'Gelotto Year 1 Grand Prize Token', + denom_units: [ + { + denom: + 'ibc/D61F40A974A7FF52064B869683F408E56E3F6ED75D440A37A94702109BE6C957', + exponent: 0, + aliases: [ + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8' + ] + }, + { + denom: 'gkey', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D61F40A974A7FF52064B869683F408E56E3F6ED75D440A37A94702109BE6C957', + name: 'GKey', + display: 'gkey', + symbol: 'GKEY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.svg' + } + ] + }, + { + description: 'The native token of Crescent', + denom_units: [ + { + denom: + 'ibc/5B7D6BD7B773238ADA2B53A771070011949B242058271C064A3FBF55FC5ECD92', + exponent: 0, + aliases: [ + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580' + ] + }, + { + denom: 'cre', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5B7D6BD7B773238ADA2B53A771070011949B242058271C064A3FBF55FC5ECD92', + name: 'Crescent', + display: 'cre', + symbol: 'CRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.svg' + } + ] + }, + { + description: 'The native token of LumenX Network', + denom_units: [ + { + denom: + 'ibc/B0818B7B99727F597D352DED48F35732565BB29A72EDB9B2C3DDDCDA2610648E', + exponent: 0, + aliases: [ + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7' + ] + }, + { + denom: 'lumen', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B0818B7B99727F597D352DED48F35732565BB29A72EDB9B2C3DDDCDA2610648E', + name: 'LumenX', + display: 'lumen', + symbol: 'LUMEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumenx/images/lumen.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The native token of Oraichain', + denom_units: [ + { + denom: + 'ibc/CCBF4167592D52620DB17E863FF8DADF3E9C9FF00014F8FF979E5ACE26B84CD1', + exponent: 0, + aliases: [ + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D' + ] + }, + { + denom: 'ORAI', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/CCBF4167592D52620DB17E863FF8DADF3E9C9FF00014F8FF979E5ACE26B84CD1', + name: 'Oraichain', + display: 'ORAI', + symbol: 'ORAI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.svg' + } + ] + }, + { + description: 'The native token of the Cudos blockchain', + denom_units: [ + { + denom: + 'ibc/68C632D63BA4AD182ED1F94DB3A4524C820DDCE5B6C976AA70645FB8A5071866', + exponent: 0, + aliases: [ + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B' + ] + }, + { + denom: 'cudos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/68C632D63BA4AD182ED1F94DB3A4524C820DDCE5B6C976AA70645FB8A5071866', + name: 'Cudos', + display: 'cudos', + symbol: 'CUDOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cudos/images/cudos.svg' + } + ] + }, + { + description: 'The native stablecoin of Kava', + denom_units: [ + { + denom: + 'ibc/A8608BAFEBDB1792EE2D82E69FA6E1482C0CDA34AE342BC8710A7B2E604F4D3B', + exponent: 0, + aliases: [ + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE' + ] + }, + { + denom: 'USDX', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A8608BAFEBDB1792EE2D82E69FA6E1482C0CDA34AE342BC8710A7B2E604F4D3B', + name: 'Kava USDX', + display: 'USDX', + symbol: 'USDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.svg' + } + ] + }, + { + description: + 'BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.', + denom_units: [ + { + denom: + 'ibc/63832057271CFB94B2328AAA95EBDA734BC5AD2D1FBB86FAF68E3FA339C24DE5', + exponent: 0, + aliases: [ + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604' + ] + }, + { + denom: 'bld', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/63832057271CFB94B2328AAA95EBDA734BC5AD2D1FBB86FAF68E3FA339C24DE5', + name: 'Agoric', + display: 'bld', + symbol: 'BLD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.svg' + } + ] + }, + { + description: + 'IST is the stable token used by the Agoric chain for execution fees and commerce.', + denom_units: [ + { + denom: + 'ibc/6A7EE2E178EC05FBF8A30080EED515802B55EF5E00E858C219DE05AD482DB25B', + exponent: 0, + aliases: [ + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5' + ] + }, + { + denom: 'ist', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A7EE2E178EC05FBF8A30080EED515802B55EF5E00E858C219DE05AD482DB25B', + name: 'Inter Stable Token', + display: 'ist', + symbol: 'IST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.svg' + } + ] + }, + { + description: 'Staking derivative seJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/24575B7DA5AA4B28E3B8EDF5BA5AE0FD7BBA7F48096EEED37CD23CF4D9124738', + exponent: 0, + aliases: [ + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B' + ] + }, + { + denom: 'sejuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/24575B7DA5AA4B28E3B8EDF5BA5AE0FD7BBA7F48096EEED37CD23CF4D9124738', + name: 'StakeEasy seJUNO', + display: 'sejuno', + symbol: 'SEJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.svg' + } + ] + }, + { + description: 'Staking derivative bJUNO for staked JUNO', + denom_units: [ + { + denom: + 'ibc/1B052344573496033E994208CF0E858DDF47A880C3D429D6B007EFDA4B99335E', + exponent: 0, + aliases: [ + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3' + ] + }, + { + denom: 'bjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1B052344573496033E994208CF0E858DDF47A880C3D429D6B007EFDA4B99335E', + name: 'StakeEasy bJUNO', + display: 'bjuno', + symbol: 'BJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.svg' + } + ] + }, + { + description: 'The native token of Stride', + denom_units: [ + { + denom: + 'ibc/9BCDDDF00753400D67E232E1699BAB50649144E5A6BF78895478531A6F7B64C7', + exponent: 0, + aliases: [ + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4' + ] + }, + { + denom: 'strd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9BCDDDF00753400D67E232E1699BAB50649144E5A6BF78895478531A6F7B64C7', + name: 'Stride', + display: 'strd', + symbol: 'STRD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'ustrd' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/9F93091F16E48BDE2D3650480AF2585F3FD0D0F3067D046A85494A8E2323DD91', + exponent: 0, + aliases: [ + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901' + ] + }, + { + denom: 'statom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F93091F16E48BDE2D3650480AF2585F3FD0D0F3067D046A85494A8E2323DD91', + name: 'Stride Staked ATOM', + display: 'statom', + symbol: 'stATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/45C7F34C4132A0418837FBBF5E5C70B91664D8BB8CFF507AEB400998FFAF86F5', + exponent: 0, + aliases: [ + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A' + ] + }, + { + denom: 'ststars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45C7F34C4132A0418837FBBF5E5C70B91664D8BB8CFF507AEB400998FFAF86F5', + name: 'Stride Staked STARS', + display: 'ststars', + symbol: 'stSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.svg' + } + ] + }, + { + description: + 'Solarbank DAO Governance Token for speeding up the shift to renewable and green energy', + denom_units: [ + { + denom: + 'ibc/69B0E3860D43272E216230DC84305D077B0528E5927E412BCE6553184CA5CF87', + exponent: 0, + aliases: [ + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C' + ] + }, + { + denom: 'solar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/69B0E3860D43272E216230DC84305D077B0528E5927E412BCE6553184CA5CF87', + name: 'Solarbank DAO', + display: 'solar', + symbol: 'SOLAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.svg' + } + ] + }, + { + description: 'StakeEasy governance token', + denom_units: [ + { + denom: + 'ibc/EF5157672FC2C4746E0CC8B036792386977F0C130921937C5EBE4D3A51362B17', + exponent: 0, + aliases: [ + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6' + ] + }, + { + denom: 'seasy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EF5157672FC2C4746E0CC8B036792386977F0C130921937C5EBE4D3A51362B17', + name: 'StakeEasy SEASY', + display: 'seasy', + symbol: 'SEASY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.svg' + } + ] + }, + { + description: 'The native token of Axelar', + denom_units: [ + { + denom: + 'ibc/46CFF84A8FFFBAB2DDE66C7DF1575E69B24338199BF5B60CA5B925F65AEC1C82', + exponent: 0, + aliases: [ + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E' + ] + }, + { + denom: 'axl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/46CFF84A8FFFBAB2DDE66C7DF1575E69B24338199BF5B60CA5B925F65AEC1C82', + name: 'Axelar', + display: 'axl', + symbol: 'AXL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg' + } + ] + }, + { + description: 'REBUS, the native coin of the Rebus chain.', + denom_units: [ + { + denom: + 'ibc/13694B58EF636BECFBC1DF4074B6D0CED359A3ECC2820625CF4667CDA22ADBF1', + exponent: 0, + aliases: [ + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9' + ] + }, + { + denom: 'rebus', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/13694B58EF636BECFBC1DF4074B6D0CED359A3ECC2820625CF4667CDA22ADBF1', + name: 'Rebus', + display: 'rebus', + symbol: 'REBUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg' + } + ] + }, + { + description: 'The native token of Teritori', + denom_units: [ + { + denom: + 'ibc/D39224A344DFAEDD59C7D96AEF1DD6A7AEE06C68CC62AC898B93DAA0F3BFB48F', + exponent: 0, + aliases: [ + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC' + ] + }, + { + denom: 'tori', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D39224A344DFAEDD59C7D96AEF1DD6A7AEE06C68CC62AC898B93DAA0F3BFB48F', + name: 'Teritori', + display: 'tori', + symbol: 'TORI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + }, + images: [ + { + image_sync: { + chain_name: 'teritori', + base_denom: 'utori' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/AFB0880A84BA2C9F1DAEB308CB497B51CDAB9C199A29106E654B84151327A776', + exponent: 0, + aliases: [ + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE' + ] + }, + { + denom: 'stjuno', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AFB0880A84BA2C9F1DAEB308CB497B51CDAB9C199A29106E654B84151327A776', + name: 'Stride Staked JUNO', + display: 'stjuno', + symbol: 'stJUNO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B984D74FA060AD4EB08EB0B12B6963B25216864FD458D077B32CD1F5523D1EDA', + exponent: 0, + aliases: [ + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC' + ] + }, + { + denom: 'stosmo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B984D74FA060AD4EB08EB0B12B6963B25216864FD458D077B32CD1F5523D1EDA', + name: 'Stride Staked OSMO', + display: 'stosmo', + symbol: 'stOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stride', + base_denom: 'stuosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.svg' + } + ] + }, + { + description: 'The native token cw20 for MuseDAO on Juno Chain', + denom_units: [ + { + denom: + 'ibc/FD3FBB1F34640D8F2154721D2E3345187C862D0641B6A651E4148A6F3629558F', + exponent: 0, + aliases: [ + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F' + ] + }, + { + denom: 'muse', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FD3FBB1F34640D8F2154721D2E3345187C862D0641B6A651E4148A6F3629558F', + name: 'MuseDAO', + display: 'muse', + symbol: 'MUSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png' + } + ] + }, + { + description: 'The native token of Lambda', + denom_units: [ + { + denom: + 'ibc/D30DB84CC2C1E377E8F7F397D32BDC57BDF69F33E77B7D8F72B2A58E4CD89029', + exponent: 0, + aliases: [ + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB' + ] + }, + { + denom: 'lamb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D30DB84CC2C1E377E8F7F397D32BDC57BDF69F33E77B7D8F72B2A58E4CD89029', + name: 'Lambda', + display: 'lamb', + symbol: 'LAMB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lambda/images/lambda.svg' + } + ] + }, + { + description: + 'The native over-collateralized stablecoin from the Kujira chain.', + denom_units: [ + { + denom: + 'ibc/6249BD7B45ECE43E2946E7DB6F9D80149F3D539404DE11CF3D203184841ED4C4', + exponent: 0, + aliases: [ + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC' + ] + }, + { + denom: 'usk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6249BD7B45ECE43E2946E7DB6F9D80149F3D539404DE11CF3D203184841ED4C4', + name: 'USK', + display: 'usk', + symbol: 'USK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.svg' + } + ] + }, + { + description: 'Staking and governance coin for the Unification Blockchain', + denom_units: [ + { + denom: + 'ibc/ABE58CEF2739151C59DE44740D9BA6F8AA23DEA1E9150BA1428E3B103AFBE48D', + exponent: 0, + aliases: [ + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC' + ] + }, + { + denom: 'FUND', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/ABE58CEF2739151C59DE44740D9BA6F8AA23DEA1E9150BA1428E3B103AFBE48D', + name: 'Unification', + display: 'FUND', + symbol: 'FUND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/unification/images/fund.png' + } + ] + }, + { + description: 'The native staking and governance token of Jackal.', + denom_units: [ + { + denom: + 'ibc/C5E44D13A9F5F070038F2B6F9A0C2117F78FEB4E525248AE17FE1CFB5C1498FD', + exponent: 0, + aliases: [ + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ] + }, + { + denom: 'jkl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C5E44D13A9F5F070038F2B6F9A0C2117F78FEB4E525248AE17FE1CFB5C1498FD', + name: 'Jackal', + display: 'jkl', + symbol: 'JKL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.svg' + } + ] + }, + { + description: 'The native token cw20 for Alter on Secret Network', + denom_units: [ + { + denom: + 'ibc/8B035E7E9A89DC2F98FEFBDB2AFE69F4BD2174516A2BA082562A1F43BBAB2253', + exponent: 0, + aliases: [ + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3' + ] + }, + { + denom: 'alter', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8B035E7E9A89DC2F98FEFBDB2AFE69F4BD2174516A2BA082562A1F43BBAB2253', + name: 'Alter', + display: 'alter', + symbol: 'ALTER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg' + } + ] + }, + { + description: 'The native token cw20 for Button on Secret Network', + denom_units: [ + { + denom: + 'ibc/6679D898EC161B152295E14B4FB87B1C16262E22BD000050BC77B0957A4DB7CF', + exponent: 0, + aliases: [ + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8' + ] + }, + { + denom: 'butt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6679D898EC161B152295E14B4FB87B1C16262E22BD000050BC77B0957A4DB7CF', + name: 'Button', + display: 'butt', + symbol: 'BUTT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/butt.svg' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/142CF7B7F2A9BA774F618E8C9E044D2ED141191DB3190D9A7C231441ECA9E085', + exponent: 0, + aliases: [ + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/142CF7B7F2A9BA774F618E8C9E044D2ED141191DB3190D9A7C231441ECA9E085', + name: 'Shade (old)', + display: 'shd', + symbol: 'SHD(old)', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shdold.svg' + } + ] + }, + { + description: 'The native token cw20 for SIENNA on Secret Network', + denom_units: [ + { + denom: + 'ibc/396D69CC3945C305CB359DB6229947EB59F121C0C2C75665A6F5DE0BEF640CB9', + exponent: 0, + aliases: [ + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213' + ] + }, + { + denom: 'sienna', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/396D69CC3945C305CB359DB6229947EB59F121C0C2C75665A6F5DE0BEF640CB9', + name: 'SIENNA', + display: 'sienna', + symbol: 'SIENNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/sienna.svg' + } + ] + }, + { + description: + 'The native token cw20 for SCRT Staking Derivatives on Secret Network', + denom_units: [ + { + denom: + 'ibc/67F11433C1949948F35A1679BCA62D7D02AEA50F47E5E75CD0A2015F144443A0', + exponent: 0, + aliases: [ + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4' + ] + }, + { + denom: 'stkd-scrt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/67F11433C1949948F35A1679BCA62D7D02AEA50F47E5E75CD0A2015F144443A0', + name: 'SCRT Staking Derivatives', + display: 'stkd-scrt', + symbol: 'stkd-SCRT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/stkd-scrt.svg' + } + ] + }, + { + description: 'BeeZee native blockchain', + denom_units: [ + { + denom: + 'ibc/9948D87D9E208FFADC896AFC1957FA05D23B47292EF729DECBA4FE80289475DE', + exponent: 0, + aliases: [ + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88' + ] + }, + { + denom: 'bze', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9948D87D9E208FFADC896AFC1957FA05D23B47292EF729DECBA4FE80289475DE', + name: 'BeeZee', + display: 'bze', + symbol: 'BZE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/beezee/images/bze.svg' + } + ] + }, + { + description: 'The native token cw20 for Fanfury on Juno Chain', + denom_units: [ + { + denom: + 'ibc/4BBCA2846ADBB394B3EFCA5DB3E6838291D0289B8D741C4E116577A371FECEE4', + exponent: 0, + aliases: [ + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF' + ] + }, + { + denom: 'fury', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4BBCA2846ADBB394B3EFCA5DB3E6838291D0289B8D741C4E116577A371FECEE4', + name: 'Fanfury', + display: 'fury', + symbol: 'FURY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Acrechain', + denom_units: [ + { + denom: + 'ibc/53FFA54F13DA4FF5FC07EA68760AD84857A5DF5513915A58EDA63B0DB0D12437', + exponent: 0, + aliases: [ + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06' + ] + }, + { + denom: 'acre', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/53FFA54F13DA4FF5FC07EA68760AD84857A5DF5513915A58EDA63B0DB0D12437', + name: 'Acrechain', + display: 'acre', + symbol: 'ACRE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg' + } + ] + }, + { + description: 'Stable Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/26CC6BE1B4FF39C8EF970DB2D61C2B4432ED42A166F004A6449A2FC78832E1AD', + exponent: 0, + aliases: [ + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E' + ] + }, + { + denom: 'cmst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/26CC6BE1B4FF39C8EF970DB2D61C2B4432ED42A166F004A6449A2FC78832E1AD', + name: 'CMST', + display: 'cmst', + symbol: 'CMST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Imversed', + denom_units: [ + { + denom: + 'ibc/BA63EF2230190B541AC0BE83F4C97DB612A5CD1AD23D699ACC4264A8180A8B50', + exponent: 0, + aliases: [ + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4' + ] + }, + { + denom: 'imv', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BA63EF2230190B541AC0BE83F4C97DB612A5CD1AD23D699ACC4264A8180A8B50', + name: 'Imversed', + display: 'imv', + symbol: 'IMV', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/imversed/images/imversed.svg' + } + ] + }, + { + description: 'The native token of Medas Digital Network', + denom_units: [ + { + denom: + 'ibc/958983CDBA7ABA69438E297AA1D546B340AA0F3BA3E1BD41DF52EA352D976670', + exponent: 0, + aliases: [ + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C' + ] + }, + { + denom: 'medas', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/958983CDBA7ABA69438E297AA1D546B340AA0F3BA3E1BD41DF52EA352D976670', + name: 'Medas Digital Network', + display: 'medas', + symbol: 'MEDAS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/medasdigital/images/medas.svg' + } + ], + keywords: ['medas'] + }, + { + description: 'The native token cw20 for PHMN on Juno Chain', + denom_units: [ + { + denom: + 'ibc/0E52CDE2C12C6BD319349704BB222C4735F3452DB373BFD875B02A322FC5E7AA', + exponent: 0, + aliases: [ + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B' + ] + }, + { + denom: 'phmn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0E52CDE2C12C6BD319349704BB222C4735F3452DB373BFD875B02A322FC5E7AA', + name: 'POSTHUMAN', + display: 'phmn', + symbol: 'PHMN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.svg' + } + ] + }, + { + description: 'The native token cw20 for Amber on Secret Network', + denom_units: [ + { + denom: + 'ibc/697F72944F67D54F51FD4EFDF923D63174592E951C46F97562CC28CE2F4C9201', + exponent: 0, + aliases: [ + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55' + ] + }, + { + denom: 'amber', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/697F72944F67D54F51FD4EFDF923D63174592E951C46F97562CC28CE2F4C9201', + name: 'Amber', + display: 'amber', + symbol: 'AMBER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg' + } + ] + }, + { + description: 'The native token of Onomy Protocol', + denom_units: [ + { + denom: + 'ibc/0CBC31A403C73A928A9D7EF2409B9CE3DF1F8611F2EFC305B56A0C8AE6857996', + exponent: 0, + aliases: [ + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163' + ] + }, + { + denom: 'nom', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0CBC31A403C73A928A9D7EF2409B9CE3DF1F8611F2EFC305B56A0C8AE6857996', + name: 'Onomy', + display: 'nom', + symbol: 'NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/onomy/images/nom.svg' + } + ], + keywords: ['dex', 'stablecoin', 'bridge', 'staking'] + }, + { + description: 'PSTAKE Liquid-Staked ATOM', + denom_units: [ + { + denom: + 'ibc/6D35B8AFF0EA82CA485485E9E272B20EB26CDF21916B75B07B28E294A8EDFB3E', + exponent: 0, + aliases: [ + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC' + ] + }, + { + denom: 'stkatom', + exponent: 6, + aliases: ['stk/atom'] + } + ], + type_asset: 'ics20', + base: 'ibc/6D35B8AFF0EA82CA485485E9E272B20EB26CDF21916B75B07B28E294A8EDFB3E', + name: 'PSTAKE staked ATOM', + display: 'stkatom', + symbol: 'stkATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Dyson Protocol', + denom_units: [ + { + denom: + 'ibc/2D95D20DF7A9DB9B0169F7A84DBDC1AC8C46F341AF08A75A8D2B893FE10C29F5', + exponent: 0, + aliases: [ + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/2D95D20DF7A9DB9B0169F7A84DBDC1AC8C46F341AF08A75A8D2B893FE10C29F5', + name: 'Dyson Protocol', + display: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + symbol: 'DYS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dyson/images/dys.svg' + } + ] + }, + { + description: 'The native token cw20 for Hopers on Juno Chain', + denom_units: [ + { + denom: + 'ibc/BDEA5AF2B9F0B655A6B1987C12A9290C0A19F79B151FCFBE82FF5912B7ED568E', + exponent: 0, + aliases: [ + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099' + ] + }, + { + denom: 'hopers', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BDEA5AF2B9F0B655A6B1987C12A9290C0A19F79B151FCFBE82FF5912B7ED568E', + name: 'Hopers', + display: 'hopers', + symbol: 'HOPERS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.svg' + } + ] + }, + { + description: 'Overcollateralized stable coin for Arable derivatives v1', + denom_units: [ + { + denom: + 'ibc/1F0343BEDB2CF2EE7A12EBFF57F281C33146D7600591CD871870AB83FCCD234F', + exponent: 0, + aliases: [ + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F' + ] + }, + { + denom: 'arusd', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1F0343BEDB2CF2EE7A12EBFF57F281C33146D7600591CD871870AB83FCCD234F', + name: 'Arable USD', + display: 'arusd', + symbol: 'arUSD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Planq Network', + denom_units: [ + { + denom: + 'ibc/14E42CA2EF072F582CE3F115CC3E4F6293B885825C85309166777EDC968FA343', + exponent: 0, + aliases: [ + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF' + ] + }, + { + denom: 'planq', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/14E42CA2EF072F582CE3F115CC3E4F6293B885825C85309166777EDC968FA343', + name: 'Planq', + display: 'planq', + symbol: 'PLQ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg' + } + ] + }, + { + description: + "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + denom_units: [ + { + denom: + 'ibc/5F4A5E426386ECBF7068C3689221131120193D96160A9906B741F041DA18AFAE', + exponent: 0, + aliases: [ + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4' + ] + }, + { + denom: 'ftm', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5F4A5E426386ECBF7068C3689221131120193D96160A9906B741F041DA18AFAE', + name: 'Fantom', + display: 'ftm', + symbol: 'FTM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.svg' + } + ] + }, + { + description: + 'Canto is a Layer-1 blockchain built to deliver on the promise of DeFi', + denom_units: [ + { + denom: + 'ibc/8240228AAE71824DB666B2E016DA1B657BCEFD32FE1959562DDCFD59BDFADD11', + exponent: 0, + aliases: [ + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F' + ] + }, + { + denom: 'canto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8240228AAE71824DB666B2E016DA1B657BCEFD32FE1959562DDCFD59BDFADD11', + name: 'Canto', + display: 'canto', + symbol: 'CANTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked STARS', + denom_units: [ + { + denom: + 'ibc/B44B0B45F73170DC7F30664C9B9AB83E3B29410A95353886F4F9DC75085F0247', + exponent: 0, + aliases: [ + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83' + ] + }, + { + denom: 'qstars', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/B44B0B45F73170DC7F30664C9B9AB83E3B29410A95353886F4F9DC75085F0247', + name: 'Quicksilver Liquid Staked STARS', + display: 'qstars', + symbol: 'qSTARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.svg' + } + ] + }, + { + description: 'WYND DAO Governance Token', + denom_units: [ + { + denom: + 'ibc/A00A4FF82C02A160532993F3FB4D95A2B052DE05D740887A8694487924AA6C3D', + exponent: 0, + aliases: [ + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3' + ] + }, + { + denom: 'wynd', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A00A4FF82C02A160532993F3FB4D95A2B052DE05D740887A8694487924AA6C3D', + name: 'Wynd DAO Governance Token', + display: 'wynd', + symbol: 'WYND', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/03970B5B169ACCDF507A41A50951102B5D9A83A3306DF2A505B7E9A3FE8A4993', + exponent: 0, + aliases: [ + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A' + ] + }, + { + denom: 'polygon-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/03970B5B169ACCDF507A41A50951102B5D9A83A3306DF2A505B7E9A3FE8A4993', + name: 'USD Coin (Polygon)', + display: 'polygon-usdc', + symbol: 'polygon.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/polygon.usdc.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/10B142B4B758526286A1B3680F9544B441BAE90CAC85FC8357C514BD7649B49D', + exponent: 0, + aliases: [ + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/10B142B4B758526286A1B3680F9544B441BAE90CAC85FC8357C514BD7649B49D', + name: 'USD Coin (Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/avalanche.usdc.svg' + } + ] + }, + { + description: 'Mars protocol token', + denom_units: [ + { + denom: + 'ibc/717BF45D2237C64F7303EB2EB9906A73A5295DF65F0AF931D89D6ED43AA2FFE3', + exponent: 0, + aliases: [ + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580' + ] + }, + { + denom: 'mars', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/717BF45D2237C64F7303EB2EB9906A73A5295DF65F0AF931D89D6ED43AA2FFE3', + name: 'Mars Hub', + display: 'mars', + symbol: 'MARS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.svg' + } + ] + }, + { + description: 'Ciento Exchange Token', + denom_units: [ + { + denom: + 'ibc/5C18BC74FF8F2557F9D7B19DD981857B1B17D24A7CF256B016E62E924576CAB8', + exponent: 0, + aliases: [ + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5' + ] + }, + { + denom: 'cnto', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/5C18BC74FF8F2557F9D7B19DD981857B1B17D24A7CF256B016E62E924576CAB8', + name: 'Ciento Token', + display: 'cnto', + symbol: 'CNTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/cnto.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/5422F72C34432C21AD92B8CC7BF147F9239B984DF56884920FCD595402B5AAF2', + exponent: 0, + aliases: [ + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372' + ] + }, + { + denom: 'stluna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5422F72C34432C21AD92B8CC7BF147F9239B984DF56884920FCD595402B5AAF2', + name: 'Stride Staked LUNA', + display: 'stluna', + symbol: 'stLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/97932176C0E3DAD1654B016D651ABAF1D62A6B331AEA35BC8A9CD40B476CFFEA', + exponent: 0, + aliases: [ + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01' + ] + }, + { + denom: 'stevmos', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/97932176C0E3DAD1654B016D651ABAF1D62A6B331AEA35BC8A9CD40B476CFFEA', + name: 'Stride Staked EVMOS', + display: 'stevmos', + symbol: 'stEVMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.svg' + } + ] + }, + { + description: 'nRide Token', + denom_units: [ + { + denom: + 'ibc/7F238358CC6C206FDFDC704FB606972C670E23FF76CBB6C040FAAA5CC6190113', + exponent: 0, + aliases: [ + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C' + ] + }, + { + denom: 'nride', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7F238358CC6C206FDFDC704FB606972C670E23FF76CBB6C040FAAA5CC6190113', + name: 'nRide Token', + display: 'nride', + symbol: 'NRIDE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.svg' + } + ] + }, + { + description: 'The native staking token of 8ball.', + denom_units: [ + { + denom: + 'ibc/38F21A8C50147AFB089250BC9EE9434152B66F4F615FAD66C6D805B735DEB92F', + exponent: 0, + aliases: [ + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F' + ] + }, + { + denom: 'ebl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38F21A8C50147AFB089250BC9EE9434152B66F4F615FAD66C6D805B735DEB92F', + name: '8ball', + display: 'ebl', + symbol: 'EBL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/8ball/images/8ball.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked ATOM', + denom_units: [ + { + denom: + 'ibc/AD2BC9855BABC999DD6CB09A69188F48E741388F6E8B3A5BF076A8D9FA0DF22C', + exponent: 0, + aliases: [ + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC' + ] + }, + { + denom: 'qatom', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/AD2BC9855BABC999DD6CB09A69188F48E741388F6E8B3A5BF076A8D9FA0DF22C', + name: 'Quicksilver Liquid Staked ATOM', + display: 'qatom', + symbol: 'qATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.svg' + } + ] + }, + { + description: 'Governance Token of Harbor protocol on Comdex network', + denom_units: [ + { + denom: + 'ibc/0C9E010D6B7E62ECFD2EE365B8F060FB36A122D85DA3D1DB4DEF7BFA64A22B1C', + exponent: 0, + aliases: [ + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A' + ] + }, + { + denom: 'harbor', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0C9E010D6B7E62ECFD2EE365B8F060FB36A122D85DA3D1DB4DEF7BFA64A22B1C', + name: 'Harbor', + display: 'harbor', + symbol: 'HARBOR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked REGEN', + denom_units: [ + { + denom: + 'ibc/C6B03836088A7C990919AFCDBB05207F2F09A5BBC4D0AD45688B225050145E20', + exponent: 0, + aliases: [ + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206' + ] + }, + { + denom: 'qregen', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/C6B03836088A7C990919AFCDBB05207F2F09A5BBC4D0AD45688B225050145E20', + name: 'Quicksilver Liquid Staked Regen', + display: 'qregen', + symbol: 'qREGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.svg' + } + ] + }, + { + description: + 'Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.', + denom_units: [ + { + denom: + 'ibc/D09A6FD90694C1AEFA7956196EA26F9C2A0C18C453C64239A453D16F1FF8DA25', + exponent: 0, + aliases: [ + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6' + ] + }, + { + denom: 'fox', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D09A6FD90694C1AEFA7956196EA26F9C2A0C18C453C64239A453D16F1FF8DA25', + name: 'Juno Fox', + display: 'fox', + symbol: 'FOX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png' + } + ] + }, + { + description: 'QCK - native token of Quicksilver', + denom_units: [ + { + denom: + 'ibc/0251B0D4C4541A2F7CE9BAFFAE04D87BE6C281543C2DB8E46A52DF156B915040', + exponent: 0, + aliases: [ + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D' + ] + }, + { + denom: 'qck', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/0251B0D4C4541A2F7CE9BAFFAE04D87BE6C281543C2DB8E46A52DF156B915040', + name: 'Quicksilver', + display: 'qck', + symbol: 'QCK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png' + } + ] + }, + { + description: 'The native token of Arkhadian', + denom_units: [ + { + denom: + 'ibc/9F461A70C4AA432CE5F5BE226DB8352A7865E71A695AE5BA03DB403B1853D0E0', + exponent: 0, + aliases: [ + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28' + ] + }, + { + denom: 'ARKH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9F461A70C4AA432CE5F5BE226DB8352A7865E71A695AE5BA03DB403B1853D0E0', + name: 'Arkhadian', + display: 'ARKH', + symbol: 'ARKH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/arkh/images/arkh.svg' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'Quicksilver Liquid Staked OSMO', + denom_units: [ + { + denom: + 'ibc/7462AF3618B0FD3ADD53715AA79F41C84020E4719CD4B5820A330E720C8B8354', + exponent: 0, + aliases: [ + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC' + ] + }, + { + denom: 'qosmo', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/7462AF3618B0FD3ADD53715AA79F41C84020E4719CD4B5820A330E720C8B8354', + name: 'Quicksilver Liquid Staked OSMO', + display: 'qosmo', + symbol: 'qOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.svg' + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/47B245A8E8708AA36A6620B1AE88C70579A0D797B508D790D66E97BFA80C466A', + exponent: 0, + aliases: [ + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9' + ] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/47B245A8E8708AA36A6620B1AE88C70579A0D797B508D790D66E97BFA80C466A', + name: 'Frienzies', + display: 'frienzies', + symbol: 'FRNZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ] + }, + { + description: 'The native token of Migaloo Chain', + denom_units: [ + { + denom: + 'ibc/807A35EFC96F7E88241782C8FA3FF1DAD13D56121179ABAEB73DC37B2C179D12', + exponent: 0, + aliases: [ + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D' + ] + }, + { + denom: 'whale', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/807A35EFC96F7E88241782C8FA3FF1DAD13D56121179ABAEB73DC37B2C179D12', + name: 'Migaloo', + display: 'whale', + symbol: 'WHALE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.svg' + } + ] + }, + { + description: 'Evmos Guardians governance token.', + denom_units: [ + { + denom: + 'ibc/79ED5F031F772F53C9334E0EB934FFDA957ACC7985387DF2F330A0163123F92E', + exponent: 0, + aliases: [ + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA' + ] + }, + { + denom: 'grdn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/79ED5F031F772F53C9334E0EB934FFDA957ACC7985387DF2F330A0163123F92E', + name: 'Guardian', + display: 'grdn', + symbol: 'GRDN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png' + } + ] + }, + { + description: 'Mini Punks Token', + denom_units: [ + { + denom: + 'ibc/71E2C1A1322363760C881E1A3FC3BBE5162DE8096B2548A5AF3410B599A58CCC', + exponent: 0, + aliases: [ + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E' + ] + }, + { + denom: 'mnpu', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/71E2C1A1322363760C881E1A3FC3BBE5162DE8096B2548A5AF3410B599A58CCC', + name: 'Mini Punks', + display: 'mnpu', + symbol: 'MNPU', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.svg' + } + ] + }, + { + description: 'Shiba Cosmos', + denom_units: [ + { + denom: + 'ibc/A4B781758B7E5E4C94745B9EDE7FD215B8C17AC52780AD60B8E42AFE12C2825F', + exponent: 0, + aliases: [ + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8' + ] + }, + { + denom: 'shibac', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A4B781758B7E5E4C94745B9EDE7FD215B8C17AC52780AD60B8E42AFE12C2825F', + name: 'ShibaCosmos', + display: 'shibac', + symbol: 'SHIBAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png' + } + ] + }, + { + description: 'Sikoba Governance Token', + denom_units: [ + { + denom: + 'ibc/AFD113EA49F5A9EC8324AEBE68D9B5678C6968DEF36467488D59F819091E334E', + exponent: 0, + aliases: [ + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E' + ] + }, + { + denom: 'sikoba', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AFD113EA49F5A9EC8324AEBE68D9B5678C6968DEF36467488D59F819091E334E', + name: 'Sikoba Token', + display: 'sikoba', + symbol: 'SKOJ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.svg' + } + ] + }, + { + description: + 'Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.', + denom_units: [ + { + denom: + 'ibc/D741A1C59CCBA4C6AB2FD518CE8A4322D0241EDBD1D08DA2DB59ED57F00BA792', + exponent: 0, + aliases: [ + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68' + ] + }, + { + denom: 'nct', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D741A1C59CCBA4C6AB2FD518CE8A4322D0241EDBD1D08DA2DB59ED57F00BA792', + name: 'Nature Carbon Ton', + display: 'nct', + symbol: 'NCT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.svg' + } + ] + }, + { + description: 'Celestims', + denom_units: [ + { + denom: + 'ibc/EB3BA138A38D8C7EA1F1A625F0B7D93415525CD347B5D7CF65508F69D3B76D55', + exponent: 0, + aliases: [ + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA' + ] + }, + { + denom: 'clst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EB3BA138A38D8C7EA1F1A625F0B7D93415525CD347B5D7CF65508F69D3B76D55', + name: 'Celestims', + display: 'clst', + symbol: 'CLST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png' + } + ] + }, + { + description: 'The First Doge on Osmosis', + denom_units: [ + { + denom: + 'ibc/FC444322C0047B1BA2BF9F4892DC6A764436D6758DBC40918715975B58D889E6', + exponent: 0, + aliases: [ + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156' + ] + }, + { + denom: 'osdoge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FC444322C0047B1BA2BF9F4892DC6A764436D6758DBC40918715975B58D889E6', + name: 'Osmosis Doge', + display: 'osdoge', + symbol: 'OSDOGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png' + } + ] + }, + { + description: 'Apemos', + denom_units: [ + { + denom: + 'ibc/6A423385B4B2E8815604EDECE3FA1F30C41A3A645277AC232008F2AD37E6028A', + exponent: 0, + aliases: [ + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D' + ] + }, + { + denom: 'apemos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A423385B4B2E8815604EDECE3FA1F30C41A3A645277AC232008F2AD37E6028A', + name: 'Apemos', + display: 'apemos', + symbol: 'APEMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png' + } + ] + }, + { + description: "Evmos Guardians' Invaders DAO token.", + denom_units: [ + { + denom: + 'ibc/1E27589C943E963AE3A12489E454E22469DA405B73B147DB9BC05EE49DFBCF9B', + exponent: 0, + aliases: [ + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54' + ] + }, + { + denom: 'invdrs', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1E27589C943E963AE3A12489E454E22469DA405B73B147DB9BC05EE49DFBCF9B', + name: 'Invaders', + display: 'invdrs', + symbol: 'INVDRS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png' + } + ] + }, + { + description: 'Doge Apr', + denom_units: [ + { + denom: + 'ibc/EFC837366BFDEAAE3FF8EF2975DFAFC3A67F8A5D0504742D9F6F7657BDCE6D45', + exponent: 0, + aliases: [ + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250' + ] + }, + { + denom: 'doga', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EFC837366BFDEAAE3FF8EF2975DFAFC3A67F8A5D0504742D9F6F7657BDCE6D45', + name: 'Doge Apr', + display: 'doga', + symbol: 'DOGA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png' + } + ] + }, + { + description: 'Catmos', + denom_units: [ + { + denom: + 'ibc/63D636C3BD7DC956ECF7829607010686C4720B07F00C928B6E35FE8F04798F93', + exponent: 0, + aliases: [ + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835' + ] + }, + { + denom: 'catmos', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/63D636C3BD7DC956ECF7829607010686C4720B07F00C928B6E35FE8F04798F93', + name: 'Catmos', + display: 'catmos', + symbol: 'CATMOS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png' + } + ] + }, + { + description: + 'Social Impact DAO providing showers, meals, and vehicles to the homeless', + denom_units: [ + { + denom: + 'ibc/A9AD37D4008F9EC5FDE21A3FF0A9E6CEF507C0B9C926B5BD6D372C24EC74ABDC', + exponent: 0, + aliases: [ + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A' + ] + }, + { + denom: 'summit', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A9AD37D4008F9EC5FDE21A3FF0A9E6CEF507C0B9C926B5BD6D372C24EC74ABDC', + name: 'Summit', + display: 'summit', + symbol: 'SUMMIT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png' + } + ] + }, + { + description: 'The native staking token of OmniFlix Hub.', + denom_units: [ + { + denom: + 'ibc/EED319C8A9E51B669D1DD6109AB4E6843F2CDC04F01320E8DAAC00CFC4F00A28', + exponent: 0, + aliases: [ + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F' + ] + }, + { + denom: 'flix', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/EED319C8A9E51B669D1DD6109AB4E6843F2CDC04F01320E8DAAC00CFC4F00A28', + name: 'OmniFlix', + display: 'flix', + symbol: 'FLIX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.svg' + } + ] + }, + { + description: 'Spacer', + denom_units: [ + { + denom: + 'ibc/E64C6BDAA6AAA4872A66B65549085F566CC7CEFE0650C114B3ED6E8E0BA3A60A', + exponent: 0, + aliases: [ + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C' + ] + }, + { + denom: 'spacer', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E64C6BDAA6AAA4872A66B65549085F566CC7CEFE0650C114B3ED6E8E0BA3A60A', + name: 'Spacer', + display: 'spacer', + symbol: 'SPACER', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png' + } + ] + }, + { + description: 'Light: LumenX community DAO treasury token', + denom_units: [ + { + denom: + 'ibc/59F22A9B1B2CD4E693E4AC0C16DE27AE3A026B27C9404F29D27703FF78D654C9', + exponent: 0, + aliases: [ + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29' + ] + }, + { + denom: 'light', + exponent: 9 + } + ], + type_asset: 'ics20', + base: 'ibc/59F22A9B1B2CD4E693E4AC0C16DE27AE3A026B27C9404F29D27703FF78D654C9', + name: 'LIGHT', + display: 'light', + symbol: 'LIGHT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png' + } + ] + }, + { + description: 'The native token cw20 for Silk on Secret Network', + denom_units: [ + { + denom: + 'ibc/0A6A30E839943C4DCF369A71BFCBCB7D234F64891B6CF961D3A137EE28C43981', + exponent: 0, + aliases: [ + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7' + ] + }, + { + denom: 'silk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0A6A30E839943C4DCF369A71BFCBCB7D234F64891B6CF961D3A137EE28C43981', + name: 'Silk', + display: 'silk', + symbol: 'SILK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.svg' + } + ] + }, + { + description: 'Mille: the 1000th token on osmosis', + denom_units: [ + { + denom: + 'ibc/9A67140884920086F8C157F544C5FCA07CCAE69FB66F28B8CFD87BF69452CDFE', + exponent: 0, + aliases: [ + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF' + ] + }, + { + denom: 'mile', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9A67140884920086F8C157F544C5FCA07CCAE69FB66F28B8CFD87BF69452CDFE', + name: 'Mille', + display: 'mile', + symbol: 'MILE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png' + } + ] + }, + { + description: + 'Social Impact DAO dedicated to combatting food insecurity and malnutrition', + denom_units: [ + { + denom: + 'ibc/6F942E55B5D6D98DA5C82274794277B751B73CDD37E6FF54B56E391D241BF7D3', + exponent: 0, + aliases: [ + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B' + ] + }, + { + denom: 'manna', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6F942E55B5D6D98DA5C82274794277B751B73CDD37E6FF54B56E391D241BF7D3', + name: 'Manna', + display: 'manna', + symbol: 'MANNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png' + } + ] + }, + { + description: + "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + denom_units: [ + { + denom: + 'ibc/1192601726414914FDA297D5E989077A022372E3A9B8ABBC648E4DA28D8DAEFE', + exponent: 0, + aliases: [ + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D' + ] + }, + { + denom: 'fil', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/1192601726414914FDA297D5E989077A022372E3A9B8ABBC648E4DA28D8DAEFE', + name: 'Filecoin', + display: 'fil', + symbol: 'FIL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/fil.svg' + } + ] + }, + { + description: 'Void', + denom_units: [ + { + denom: + 'ibc/5A2780B3A727C0AD0B313684A97126889FC90A05AA2901FE9ACB9051F631ED04', + exponent: 0, + aliases: [ + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960' + ] + }, + { + denom: 'void', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5A2780B3A727C0AD0B313684A97126889FC90A05AA2901FE9ACB9051F631ED04', + name: 'Void', + display: 'void', + symbol: 'VOID', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png' + } + ] + }, + { + description: 'The native token cw20 for Shade on Secret Network', + denom_units: [ + { + denom: + 'ibc/17774AFE073D96D58C6CDD7D1C48CE4655B51191C7C18A496389BE564B28FE1B', + exponent: 0, + aliases: [ + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A' + ] + }, + { + denom: 'shd', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/17774AFE073D96D58C6CDD7D1C48CE4655B51191C7C18A496389BE564B28FE1B', + name: 'Shade', + display: 'shd', + symbol: 'SHD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.svg' + } + ] + }, + { + description: 'The native token of Bluzelle', + denom_units: [ + { + denom: + 'ibc/9CBDD79FB7897BEC9F23AFC5BB71E70371A3477AFA3215098D34AE56DEE04D0D', + exponent: 0, + aliases: [ + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8' + ] + }, + { + denom: 'bnt', + exponent: 6, + aliases: ['blz'] + } + ], + type_asset: 'ics20', + base: 'ibc/9CBDD79FB7897BEC9F23AFC5BB71E70371A3477AFA3215098D34AE56DEE04D0D', + name: 'Bluzelle', + display: 'bnt', + symbol: 'BLZ', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bluzelle/images/bluzelle.svg' + } + ], + keywords: ['bluzelle', 'game'] + }, + { + description: 'Native token of Arbitrum', + denom_units: [ + { + denom: + 'ibc/D5D17C21FA3D08DC348C2D852D29B021F639CA6447F2346A34FE4822421CE1A0', + exponent: 0, + aliases: [ + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6' + ] + }, + { + denom: 'arb', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/D5D17C21FA3D08DC348C2D852D29B021F639CA6447F2346A34FE4822421CE1A0', + name: 'Arbitrum', + display: 'arb', + symbol: 'ARB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.svg' + } + ] + }, + { + description: 'Silica', + denom_units: [ + { + denom: + 'ibc/21F2E41E9E89B9D93F78A661664BF83D427F7FAA6239F69FFB2D05AD5266100F', + exponent: 0, + aliases: [ + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07' + ] + }, + { + denom: 'silica', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/21F2E41E9E89B9D93F78A661664BF83D427F7FAA6239F69FFB2D05AD5266100F', + name: 'Silica', + display: 'silica', + symbol: 'SLCA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png' + } + ] + }, + { + description: 'Pepec', + denom_units: [ + { + denom: + 'ibc/3B580CCCFB19C038381D0C0C00A30EA1B7C56455DBA41C1395FCB7BEE6D2420F', + exponent: 0, + aliases: [ + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93' + ] + }, + { + denom: 'pepec', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B580CCCFB19C038381D0C0C00A30EA1B7C56455DBA41C1395FCB7BEE6D2420F', + name: 'Pepec', + display: 'pepec', + symbol: 'PEPEC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png' + } + ] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/8BA85A36AF14874D02D1645AF7464334C6B80C92E047704B2B2A04D6E81BA665', + exponent: 0, + aliases: [ + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B' + ] + }, + { + denom: 'pepe', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8BA85A36AF14874D02D1645AF7464334C6B80C92E047704B2B2A04D6E81BA665', + name: 'Pepe', + display: 'pepe', + symbol: 'PEPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/B9166BAFCAB05BB9BC81FE5D702037A2AF2D59DACCAEA4356AE106B1F6621503', + exponent: 0, + aliases: [ + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx' + ] + }, + { + denom: 'ibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm', + base: 'ibc/B9166BAFCAB05BB9BC81FE5D702037A2AF2D59DACCAEA4356AE106B1F6621503', + name: 'IBC Index', + display: 'ibcx', + symbol: 'IBCX', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg' + } + ], + coingecko_id: 'ibc-index', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: + 'Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.', + denom_units: [ + { + denom: + 'ibc/17F3A8AC725409B10B9520478E4B61979D2388F784784C974100948B8D3E3934', + exponent: 0, + aliases: [ + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A' + ] + }, + { + denom: 'cbeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/17F3A8AC725409B10B9520478E4B61979D2388F784784C974100948B8D3E3934', + name: 'Coinbase Wrapped Staked ETH', + display: 'cbeth', + symbol: 'cbETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png' + } + ] + }, + { + description: + 'Rocket Pool is a decentralised Ethereum Proof of Stake pool.', + denom_units: [ + { + denom: + 'ibc/70A7FA21C2F40A8BDE256B2EF7D2F00EF1EF2288476DA7129EDA913A4B741D30', + exponent: 0, + aliases: [ + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222' + ] + }, + { + denom: 'reth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/70A7FA21C2F40A8BDE256B2EF7D2F00EF1EF2288476DA7129EDA913A4B741D30', + name: 'Rocket Pool Ether', + display: 'reth', + symbol: 'rETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png' + } + ] + }, + { + description: + "sfrxETH is the version of frxETH which accrues staking yield. All profit generated from Frax Ether validators is distributed to sfrxETH holders. By exchanging frxETH for sfrxETH, one become's eligible for staking yield, which is redeemed upon converting sfrxETH back to frxETH.", + denom_units: [ + { + denom: + 'ibc/9327EB2DEC47683F77C617A85A332E3C2B14608CBDC82B9BBB3647A0CDFC52A9', + exponent: 0, + aliases: [ + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46' + ] + }, + { + denom: 'sfrxeth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9327EB2DEC47683F77C617A85A332E3C2B14608CBDC82B9BBB3647A0CDFC52A9', + name: 'Staked Frax Ether', + display: 'sfrxeth', + symbol: 'sfrxETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/CC52AC8ACE222666441A19123140FFFCC21FED8F93D7F925E93B4C4203C8E2B6', + exponent: 0, + aliases: [ + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C' + ] + }, + { + denom: 'wsteth', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CC52AC8ACE222666441A19123140FFFCC21FED8F93D7F925E93B4C4203C8E2B6', + name: 'Wrapped Lido Staked Ether (Axelar)', + display: 'wsteth', + symbol: 'wstETH.axl', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wstETH.axl.svg' + } + ] + }, + { + description: 'The native token of Gitopia', + denom_units: [ + { + denom: + 'ibc/9B9EB5FE2842919995724A9C0870810F75E316A3D20A12C42CDEB37DC1E73784', + exponent: 0, + aliases: [ + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3' + ] + }, + { + denom: 'LORE', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9B9EB5FE2842919995724A9C0870810F75E316A3D20A12C42CDEB37DC1E73784', + name: 'Gitopia', + display: 'LORE', + symbol: 'LORE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png' + } + ] + }, + { + description: + 'Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling', + denom_units: [ + { + denom: + 'ibc/7740753C8FDAC4D1D7B55BF73884BBF2E5448F845916D766B4550891A0DC5392', + exponent: 0, + aliases: [ + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0' + ] + }, + { + denom: 'roar', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7740753C8FDAC4D1D7B55BF73884BBF2E5448F845916D766B4550891A0DC5392', + name: 'Lion DAO', + display: 'roar', + symbol: 'ROAR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/688C27AF0DB47801761032FAA8AA5217278453DF922BDEC39104A8301900C35D', + exponent: 0, + aliases: [ + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F' + ] + }, + { + denom: 'stumee', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/688C27AF0DB47801761032FAA8AA5217278453DF922BDEC39104A8301900C35D', + name: 'Stride Staked UMEE', + display: 'stumee', + symbol: 'stUMEE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/A8EEA7B4CF00F73D386DD6D9127FFFAD253A5CC00E34E338684A3603A428339A', + exponent: 0, + aliases: [ + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx' + ] + }, + { + denom: 'stibcx', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k', + base: 'ibc/A8EEA7B4CF00F73D386DD6D9127FFFAD253A5CC00E34E338684A3603A428339A', + name: 'Staked IBCX', + display: 'stibcx', + symbol: 'stIBCX', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The native token of Nolus chain', + denom_units: [ + { + denom: + 'ibc/76DC5E8CA945A0BD2CF54561EA00C556E018A7CE7D8E73DC66F897E1F39645BD', + exponent: 0, + aliases: [ + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782' + ] + }, + { + denom: 'nls', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76DC5E8CA945A0BD2CF54561EA00C556E018A7CE7D8E73DC66F897E1F39645BD', + name: 'Nolus', + display: 'nls', + symbol: 'NLS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ] + }, + { + description: 'Lion Cub DAO is a useless meme community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/6A786BF20BBFA4D6221EEB6252DEEFCD1B1FF93D73433FBE5646510459EE1E0F', + exponent: 0, + aliases: [ + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3' + ] + }, + { + denom: 'cub', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6A786BF20BBFA4D6221EEB6252DEEFCD1B1FF93D73433FBE5646510459EE1E0F', + name: 'Lion Cub DAO', + display: 'cub', + symbol: 'CUB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png' + } + ] + }, + { + description: 'BLUE CUB DAO is a community DAO on Terra', + denom_units: [ + { + denom: + 'ibc/C0EF50B081CE08C42062CBDF83287E16BE92122D55F5DE0C5B0B30B030FEF23F', + exponent: 0, + aliases: [ + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E' + ] + }, + { + denom: 'blue', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C0EF50B081CE08C42062CBDF83287E16BE92122D55F5DE0C5B0B30B030FEF23F', + name: 'BLUE CUB DAO', + display: 'blue', + symbol: 'BLUE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png' + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/42049B8D68B32671A67F2C69617BF54DDF855FA03F5574CE9E2AA56EAB9CA283', + exponent: 0, + aliases: [ + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682' + ] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/42049B8D68B32671A67F2C69617BF54DDF855FA03F5574CE9E2AA56EAB9CA283', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ] + }, + { + description: 'An innovative DAO dedicated to housing the most vulnerable', + denom_units: [ + { + denom: + 'ibc/AC768AA5DE377001264E809E9F473325282DCAE84A5F966A02A951E12493D22B', + exponent: 0, + aliases: [ + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE' + ] + }, + { + denom: 'casa', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AC768AA5DE377001264E809E9F473325282DCAE84A5F966A02A951E12493D22B', + name: 'Casa', + display: 'casa', + symbol: 'CASA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png' + } + ] + }, + { + description: 'The native staking and governance token of Composable.', + denom_units: [ + { + denom: + 'ibc/7EA10175FC0C4E0D967A6A31AD7D7FEBADFF3F7A5875EB9E29A3641F62EF915D', + exponent: 0, + aliases: [ + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516' + ] + }, + { + denom: 'pica', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/7EA10175FC0C4E0D967A6A31AD7D7FEBADFF3F7A5875EB9E29A3641F62EF915D', + name: 'Composable', + display: 'pica', + symbol: 'PICA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + }, + images: [ + { + image_sync: { + chain_name: 'picasso', + base_denom: 'ppica' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/4A33C843E6B0628558C804674B045161E3CC6DC259E887D3DE6D6345BAD28AE0', + exponent: 0, + aliases: [ + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C' + ] + }, + { + denom: 'ksm', + exponent: 12 + } + ], + type_asset: 'ics20', + base: 'ibc/4A33C843E6B0628558C804674B045161E3CC6DC259E887D3DE6D6345BAD28AE0', + name: 'Kusama', + display: 'ksm', + symbol: 'KSM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/kusama/images/ksm.svg' + } + ] + }, + { + description: + 'The native fee, governance, staking, and bonding token of the Polkadot platform.', + denom_units: [ + { + denom: + 'ibc/8CA71DC26286B1410F7B8958E02CAD4B176018D701C097AAAEB8497586121D70', + exponent: 0, + aliases: [ + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244' + ] + }, + { + denom: 'dot', + exponent: 10 + } + ], + type_asset: 'ics20', + base: 'ibc/8CA71DC26286B1410F7B8958E02CAD4B176018D701C097AAAEB8497586121D70', + name: 'Polkadot', + display: 'dot', + symbol: 'DOT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.svg' + } + ] + }, + { + description: 'The native token of Quasar', + denom_units: [ + { + denom: + 'ibc/A2B8F8F77281A3A28ADFF2303841C68816D66DD6C7D9785BE8E47FE51B829BE0', + exponent: 0, + aliases: [ + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477' + ] + }, + { + denom: 'qsr', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/A2B8F8F77281A3A28ADFF2303841C68816D66DD6C7D9785BE8E47FE51B829BE0', + name: 'Quasar', + display: 'qsr', + symbol: 'QSR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + }, + images: [ + { + image_sync: { + chain_name: 'quasar', + base_denom: 'uqsr' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png' + } + ] + }, + { + description: 'The native token of Archway network', + denom_units: [ + { + denom: + 'ibc/F1C600285738B1217B0D967AD4BA968CC3DAB5BB235921811A3D0BEF8BF121DE', + exponent: 0, + aliases: [ + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85' + ] + }, + { + denom: 'uarch', + exponent: 12 + }, + { + denom: 'arch', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/F1C600285738B1217B0D967AD4BA968CC3DAB5BB235921811A3D0BEF8BF121DE', + name: 'Archway', + display: 'arch', + symbol: 'ARCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.svg' + } + ] + }, + { + description: 'The native staking and governance token of Empower.', + denom_units: [ + { + denom: + 'ibc/2A060ED76355F6B058D4E5A37D9AE141486E6F09FE37EF17C2E0C9DA005C6C76', + exponent: 0, + aliases: [ + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38' + ] + }, + { + denom: 'mpwr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2A060ED76355F6B058D4E5A37D9AE141486E6F09FE37EF17C2E0C9DA005C6C76', + name: 'EmpowerChain', + display: 'mpwr', + symbol: 'MPWR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg' + } + ] + }, + { + description: + 'A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!', + denom_units: [ + { + denom: + 'ibc/5BF8D4DF27116FFAF7D881C01A4CE8C981AF6C8358BD8F51B048DAC35DA03CE8', + exponent: 0, + aliases: [ + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E' + ] + }, + { + denom: 'watr', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5BF8D4DF27116FFAF7D881C01A4CE8C981AF6C8358BD8F51B048DAC35DA03CE8', + name: 'WATR', + display: 'watr', + symbol: 'WATR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png' + } + ] + }, + { + description: 'The native utility token of the KYVE network.', + denom_units: [ + { + denom: + 'ibc/D2872BEDC30A2C6BBF88A9AA2DF9A60EFEE98B014400BDEB132E5AF50950E555', + exponent: 0, + aliases: [ + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13' + ] + }, + { + denom: 'kyve', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D2872BEDC30A2C6BBF88A9AA2DF9A60EFEE98B014400BDEB132E5AF50950E555', + name: 'KYVE', + display: 'kyve', + symbol: 'KYVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.svg' + } + ] + }, + { + description: + 'Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.', + denom_units: [ + { + denom: + 'ibc/1F4441F91E39C316D0ACC41C476943E4847B42F087E8E71632D92386D631EB6D', + exponent: 0, + aliases: [ + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1F4441F91E39C316D0ACC41C476943E4847B42F087E8E71632D92386D631EB6D', + name: 'Tether USD', + display: 'usdt', + symbol: 'USDT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ] + }, + { + description: 'ERIS liquid staked OSMO', + denom_units: [ + { + denom: + 'ibc/39C2BF98E6B96EBD98B5F59204B3A9711ADD86211D9C066635655BEF3B6B15FA', + exponent: 0, + aliases: [ + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO' + ] + }, + { + denom: 'ampOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9', + base: 'ibc/39C2BF98E6B96EBD98B5F59204B3A9711ADD86211D9C066635655BEF3B6B15FA', + name: 'ERIS Amplified OSMO', + display: 'ampOSMO', + symbol: 'ampOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The native staking token of Sei.', + denom_units: [ + { + denom: + 'ibc/4CA3FE3689F195EE04D44970C02C6ED937F5CD7991EEFEC3E6C29AEFDEA9CD66', + exponent: 0, + aliases: [ + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D' + ] + }, + { + denom: 'sei', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4CA3FE3689F195EE04D44970C02C6ED937F5CD7991EEFEC3E6C29AEFDEA9CD66', + name: 'Sei', + display: 'sei', + symbol: 'SEI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg' + } + ] + }, + { + description: 'Quicksilver Liquid Staked SOMM', + denom_units: [ + { + denom: + 'ibc/33E44FDB4970F07A3CA31B9118B3326B000DC66B942D563D4E6AF8E090655A9B', + exponent: 0, + aliases: [ + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208' + ] + }, + { + denom: 'qsomm', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/33E44FDB4970F07A3CA31B9118B3326B000DC66B942D563D4E6AF8E090655A9B', + name: 'Quicksilver Liquid Staked SOMM', + display: 'qsomm', + symbol: 'qSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Passage chain.', + denom_units: [ + { + denom: + 'ibc/0AC3CA214AA7E152A593D8D3E3105870D5C6F36AD8E4758EE7594194546425E6', + exponent: 0, + aliases: [ + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED' + ] + }, + { + denom: 'pasg', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0AC3CA214AA7E152A593D8D3E3105870D5C6F36AD8E4758EE7594194546425E6', + name: 'Passage', + display: 'pasg', + symbol: 'PASG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/4B971D37021D6455FBBC87919ED18329479F47FABDDFC23728DA63A2585C87C7', + exponent: 0, + aliases: [ + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B' + ] + }, + { + denom: 'stsomm', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4B971D37021D6455FBBC87919ED18329479F47FABDDFC23728DA63A2585C87C7', + name: 'Stride Staked SOMM', + display: 'stsomm', + symbol: 'stSOMM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg' + } + ] + }, + { + description: 'Solana (SOL) is the native asset of the Solana blockchain.', + denom_units: [ + { + denom: + 'ibc/3141AFAE4917A42DF1A51756F179B6EE508BB4143A3C4375F7A492ACA381633C', + exponent: 0, + aliases: [ + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA' + ] + }, + { + denom: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/3141AFAE4917A42DF1A51756F179B6EE508BB4143A3C4375F7A492ACA381633C', + name: 'Solana', + display: 'wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8', + symbol: 'SOL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg' + } + ] + }, + { + description: 'The Official Bonk Inu token', + denom_units: [ + { + denom: + 'ibc/77B734EBCC031ECA6361AFCEA22342D519FD5B3A56EAC2C2725F602A7D4C9E59', + exponent: 0, + aliases: [ + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E' + ] + }, + { + denom: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + exponent: 5, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/77B734EBCC031ECA6361AFCEA22342D519FD5B3A56EAC2C2725F602A7D4C9E59', + name: 'Bonk', + display: 'wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5', + symbol: 'BONK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png' + } + ] + }, + { + description: + 'Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi', + denom_units: [ + { + denom: + 'ibc/8B3E4AFAD613DE8E76E06DC8C8572810F5AD01F851FD018592C01A16A431110A', + exponent: 0, + aliases: [ + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C' + ] + }, + { + denom: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/8B3E4AFAD613DE8E76E06DC8C8572810F5AD01F851FD018592C01A16A431110A', + name: 'Tether USD (Wormhole)', + display: 'wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6', + symbol: 'USDT.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg' + } + ] + }, + { + description: 'Sui’s native asset is called SUI.', + denom_units: [ + { + denom: + 'ibc/D5CE8BE3F5853C140DDEC4CEC12A30DD73D2876F91655C81B8DA759A137908C6', + exponent: 0, + aliases: [ + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5' + ] + }, + { + denom: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/D5CE8BE3F5853C140DDEC4CEC12A30DD73D2876F91655C81B8DA759A137908C6', + name: 'Sui', + display: 'wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8', + symbol: 'SUI', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg' + } + ] + }, + { + description: + 'Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.', + denom_units: [ + { + denom: + 'ibc/786971D9A356B0DD8091F110741781D41EBD1D4648F67F2DF74A0A018247708A', + exponent: 0, + aliases: [ + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE' + ] + }, + { + denom: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/786971D9A356B0DD8091F110741781D41EBD1D4648F67F2DF74A0A018247708A', + name: 'Aptos Coin', + display: 'wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8', + symbol: 'APT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/apt-dm.svg', + theme: { + dark_mode: true + } + } + ] + }, + { + description: 'MantaDAO Governance Token', + denom_units: [ + { + denom: + 'ibc/E2A858339748432BEFF58F746F23B8C5FF64E81CD9ED158422B9936C848C62D4', + exponent: 0, + aliases: [ + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B' + ] + }, + { + denom: 'mnta', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E2A858339748432BEFF58F746F23B8C5FF64E81CD9ED158422B9936C848C62D4', + name: 'MantaDAO', + display: 'mnta', + symbol: 'MNTA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/76E63FA13AF76CA64822EDBBE7C0CBEB0851B53D7ABE63C776535F6D05BF09EE', + exponent: 0, + aliases: [ + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9' + ] + }, + { + denom: 'dgl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/76E63FA13AF76CA64822EDBBE7C0CBEB0851B53D7ABE63C776535F6D05BF09EE', + name: 'Licorice', + display: 'dgl', + symbol: 'DGL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png' + } + ] + }, + { + description: + 'USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt', + denom_units: [ + { + denom: + 'ibc/9ED0ECF294FABD310B6E6185C828EAE6574CB81B3E0C752BFA47CEEC6C01A05B', + exponent: 0, + aliases: [ + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695' + ] + }, + { + denom: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + exponent: 6, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/9ED0ECF294FABD310B6E6185C828EAE6574CB81B3E0C752BFA47CEEC6C01A05B', + name: 'USD Coin (Wormhole)', + display: 'wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6', + symbol: 'USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ] + }, + { + description: + 'Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp', + denom_units: [ + { + denom: + 'ibc/4E8EEC41A3BDC7E01E4C4DABD9C2085D153DBB0411DD35DF208F9EA9069BDC1A', + exponent: 0, + aliases: [ + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC' + ] + }, + { + denom: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + exponent: 8, + aliases: [] + } + ], + type_asset: 'ics20', + base: 'ibc/4E8EEC41A3BDC7E01E4C4DABD9C2085D153DBB0411DD35DF208F9EA9069BDC1A', + name: 'Wrapped Ether (Wormhole)', + display: 'wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8', + symbol: 'wETH.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/weth.hole.svg' + } + ] + }, + { + description: + 'USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.', + denom_units: [ + { + denom: + 'ibc/96E58B89C63614E215396F477125CC86F3EF61B0E87D5EC9D2E0EF352233CE2E', + exponent: 0, + aliases: [ + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96E58B89C63614E215396F477125CC86F3EF61B0E87D5EC9D2E0EF352233CE2E', + name: 'USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.', + denom_units: [ + { + denom: + 'ibc/FFD93E53132B2A0F4074963DB02CC800100B90B0DD50E2EC1D2F3099C5F46946', + exponent: 0, + aliases: [ + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668' + ] + }, + { + denom: 'YieldETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FFD93E53132B2A0F4074963DB02CC800100B90B0DD50E2EC1D2F3099C5F46946', + name: 'Real Yield ETH', + display: 'YieldETH', + symbol: 'YieldETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + }, + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'yieldeth-wei' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.svg' + } + ] + }, + { + description: 'The native staking token of XPLA.', + denom_units: [ + { + denom: + 'ibc/25C16401F25C8A80AD2116D6B4CF32B1F6B2D3CE43003F247FA2081A1AC0D7EC', + exponent: 0, + aliases: [ + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8' + ] + }, + { + denom: 'xpla', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/25C16401F25C8A80AD2116D6B4CF32B1F6B2D3CE43003F247FA2081A1AC0D7EC', + name: 'XPLA', + display: 'xpla', + symbol: 'XPLA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.svg' + } + ] + }, + { + description: + 'OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.', + denom_units: [ + { + denom: + 'ibc/4A5ABFD476F42A6B3D721EEC7C556D1AA31F0F101E30DD9546BE8449370A0BF0', + exponent: 0, + aliases: [ + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6' + ] + }, + { + denom: 'oin', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4A5ABFD476F42A6B3D721EEC7C556D1AA31F0F101E30DD9546BE8449370A0BF0', + name: 'OIN STORE OF VALUE', + display: 'oin', + symbol: 'OIN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png' + } + ] + }, + { + description: 'The token of Neokingdom DAO.', + denom_units: [ + { + denom: + 'ibc/FDC03B10ECDFE8AF26C45E80E93EF44BD54D345A44D04B38D70B0809292C758D', + exponent: 0, + aliases: [ + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71' + ] + }, + { + denom: 'neok', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/FDC03B10ECDFE8AF26C45E80E93EF44BD54D345A44D04B38D70B0809292C758D', + name: 'Neokingdom DAO', + display: 'neok', + symbol: 'NEOK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg' + } + ] + }, + { + description: 'The native currency of the Realio Network.', + denom_units: [ + { + denom: + 'ibc/9FD641A1F0BC5163DB464D50FF9834BECDCCEFDA1651C7E32BFB9D77850E9830', + exponent: 0, + aliases: [ + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF' + ] + }, + { + denom: 'rio', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/9FD641A1F0BC5163DB464D50FF9834BECDCCEFDA1651C7E32BFB9D77850E9830', + name: 'Realio Network', + display: 'rio', + symbol: 'RIO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg' + } + ] + }, + { + description: "Membrane's CDP-style stablecoin called CDT", + denom_units: [ + { + denom: + 'ibc/BC2489EE4C511B11D64193FBE7A2D41F408B397A8C69ADD9EEDE6D71F1322514', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt' + ] + }, + { + denom: 'cdt', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/BC2489EE4C511B11D64193FBE7A2D41F408B397A8C69ADD9EEDE6D71F1322514', + name: 'CDT Stablecoin', + display: 'cdt', + symbol: 'CDT', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg' + } + ], + coingecko_id: 'collateralized-debt-token', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: "Membrane's protocol token", + denom_units: [ + { + denom: + 'ibc/6408684364ADC430816F215DEF6D7887B0D6F430FF8B33595F2B5B22A7415D44', + exponent: 0, + aliases: [ + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn' + ] + }, + { + denom: 'mbrn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/6408684364ADC430816F215DEF6D7887B0D6F430FF8B33595F2B5B22A7415D44', + name: 'Membrane', + display: 'mbrn', + symbol: 'MBRN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg' + } + ], + coingecko_id: 'membrane', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The native token of SGE Network', + denom_units: [ + { + denom: + 'ibc/45A659E59141679A8F336E3A5859125C6BEE95CF833DDCCB4EB0BEE994860861', + exponent: 0, + aliases: [ + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA' + ] + }, + { + denom: 'sge', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45A659E59141679A8F336E3A5859125C6BEE95CF833DDCCB4EB0BEE994860861', + name: 'SGE', + display: 'sge', + symbol: 'SGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg' + } + ] + }, + { + description: 'The native staking and governance token of the StaFi Hub.', + denom_units: [ + { + denom: + 'ibc/57680823A415849205F8176DB102BF27F1BFD08886309D5ED4D3E81EBF832B4E', + exponent: 0, + aliases: [ + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862' + ] + }, + { + denom: 'fis', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/57680823A415849205F8176DB102BF27F1BFD08886309D5ED4D3E81EBF832B4E', + name: 'StaFi Hub', + display: 'fis', + symbol: 'FIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/fis.svg' + } + ] + }, + { + description: 'A liquid staking representation of staked ATOMs', + denom_units: [ + { + denom: + 'ibc/6610054D97CED9B30BCBC8BD835637DAB683B85B23E65E2B689636CE2D4D3C6D', + exponent: 0, + aliases: [ + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7' + ] + }, + { + denom: 'ratom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6610054D97CED9B30BCBC8BD835637DAB683B85B23E65E2B689636CE2D4D3C6D', + name: 'rATOM', + display: 'ratom', + symbol: 'rATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/ratom.svg' + } + ] + }, + { + description: 'The native token of ohhNFT.', + denom_units: [ + { + denom: + 'ibc/165C61351F4ABA7FC635F7D7E39AF236B39D8055284C5822BC227DB8D6E17EDE', + exponent: 0, + aliases: [ + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B' + ] + }, + { + denom: 'strdst', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/165C61351F4ABA7FC635F7D7E39AF236B39D8055284C5822BC227DB8D6E17EDE', + name: 'Stardust STRDST', + display: 'strdst', + symbol: 'STRDST', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.svg' + } + ] + }, + { + description: + 'The native staking and governance token of the Theta testnet version of the Dora Vota.', + denom_units: [ + { + denom: + 'ibc/B7AB69E3C5B0A969EC5C080E328C9390B7F615B838E4309D28049C23D4F4E71C', + exponent: 0, + aliases: [ + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A' + ] + }, + { + denom: 'DORA', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/B7AB69E3C5B0A969EC5C080E328C9390B7F615B838E4309D28049C23D4F4E71C', + name: 'Dora Vota', + display: 'DORA', + symbol: 'DORA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/doravota.png' + } + ] + }, + { + description: 'The native token of Coreum', + denom_units: [ + { + denom: + 'ibc/A7087BA924866A6B11D3805A30BEE03B1DCFF0F087B9D2FF9E88BC2A393FCDFC', + exponent: 0, + aliases: [ + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65' + ] + }, + { + denom: 'core', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A7087BA924866A6B11D3805A30BEE03B1DCFF0F087B9D2FF9E88BC2A393FCDFC', + name: 'Coreum', + display: 'core', + symbol: 'COREUM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg' + } + ], + keywords: ['dex', 'staking', 'wasm', 'assets', 'nft'] + }, + { + description: '', + denom_units: [ + { + denom: + 'ibc/8A5C8B104E9E054FADB37BC38BCF09DEFEE4A69A6C29639C61FCDE06695521CF', + exponent: 0, + aliases: [ + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8A5C8B104E9E054FADB37BC38BCF09DEFEE4A69A6C29639C61FCDE06695521CF', + name: 'Celestia', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + }, + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ] + }, + { + description: 'The native staking token of dYdX Protocol.', + denom_units: [ + { + denom: + 'ibc/0908901CF985443F5BB8B2873B7F864A63D413AF8286EA62A9223CBB0D43BB92', + exponent: 0, + aliases: [ + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/0908901CF985443F5BB8B2873B7F864A63D413AF8286EA62A9223CBB0D43BB92', + name: 'dYdX Protocol', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + }, + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + }, + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx-circle.svg' + } + ] + }, + { + description: 'The native staking token of the Function X', + denom_units: [ + { + denom: + 'ibc/73B4E40C2BE165CEE66A632D9CCB1CCE260AD8E0734720E0945A73B2990D7C0A', + exponent: 0, + aliases: [ + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9' + ] + }, + { + denom: 'WFX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/73B4E40C2BE165CEE66A632D9CCB1CCE260AD8E0734720E0945A73B2990D7C0A', + name: 'f(x)Core', + display: 'WFX', + symbol: 'FX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/fxcore/images/fx.svg' + } + ] + }, + { + description: 'Bitcoin. On Cosmos.', + denom_units: [ + { + denom: + 'ibc/FD26551F5E950E49A1B78C01BE84659C76E40642C83DB61A394E3A99AC22ED1D', + exponent: 0, + aliases: [ + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F' + ] + }, + { + denom: 'nbtc', + exponent: 14 + } + ], + type_asset: 'ics20', + base: 'ibc/FD26551F5E950E49A1B78C01BE84659C76E40642C83DB61A394E3A99AC22ED1D', + name: 'Nomic Bitcoin', + display: 'nbtc', + symbol: 'nBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ] + }, + { + description: 'The native token of Nois', + denom_units: [ + { + denom: + 'ibc/77E8377E974E62B5A2B91E7BCB2E3FC5E30D4D7D0B67AD9959FAA4932380A6BB', + exponent: 0, + aliases: [ + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90' + ] + }, + { + denom: 'nois', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/77E8377E974E62B5A2B91E7BCB2E3FC5E30D4D7D0B67AD9959FAA4932380A6BB', + name: 'Nois', + display: 'nois', + symbol: 'NOIS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + }, + images: [ + { + image_sync: { + chain_name: 'nois', + base_denom: 'unois' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.svg' + } + ], + keywords: ['nois', 'randomness', 'drand', 'wasm'] + }, + { + description: 'Margined Power Token sqOSMO', + denom_units: [ + { + denom: + 'ibc/122B5F3552F60444E19F30CF545E1D605857B933ECD22C1AD0368B2F6471A862', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo' + ] + }, + { + denom: 'sqosmo', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/122B5F3552F60444E19F30CF545E1D605857B933ECD22C1AD0368B2F6471A862', + name: 'OSMO Squared', + display: 'sqosmo', + symbol: 'sqOSMO', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The Revenue & Governance token of Unstake.fi', + denom_units: [ + { + denom: + 'ibc/24B36A6709576CA1638D6F645805064D843B2A2373B8CF71DFAB89EBC3D63949', + exponent: 0, + aliases: [ + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7' + ] + }, + { + denom: 'nstk', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/24B36A6709576CA1638D6F645805064D843B2A2373B8CF71DFAB89EBC3D63949', + name: 'Unstake Fi', + display: 'nstk', + symbol: 'NSTK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/690EB0A0CA0DA2DC1E9CF62FB23C935AE5C7E9F57919CF89690521D5D70948A7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg' + } + ] + }, + { + description: 'ohhNFT LP token.', + denom_units: [ + { + denom: + 'ibc/AEA46921F9AB27E6539C2896B4DD21F491722B979741F17D2E2399C1525F1D84', + exponent: 0, + aliases: [ + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02' + ] + }, + { + denom: 'BRNCH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AEA46921F9AB27E6539C2896B4DD21F491722B979741F17D2E2399C1525F1D84', + name: 'Branch', + display: 'BRNCH', + symbol: 'BRNCH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.svg' + } + ] + }, + { + description: + 'wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.', + denom_units: [ + { + denom: + 'ibc/CCB295C5C136CFB55508F878E0E5B28EDD5DE2AB7B98B118D33A3FF8EF04E0AA', + exponent: 0, + aliases: [ + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CCB295C5C136CFB55508F878E0E5B28EDD5DE2AB7B98B118D33A3FF8EF04E0AA', + name: 'Wrapped Lido Staked Ether', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ] + }, + { + description: 'Margined Power Token sqATOM', + denom_units: [ + { + denom: + 'ibc/CB933F94FC13A6F9811C0EC3EE266715CB6F99DF0DD20110D611B6CE0B422ED7', + exponent: 0, + aliases: [ + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom' + ] + }, + { + denom: 'sqatom', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/CB933F94FC13A6F9811C0EC3EE266715CB6F99DF0DD20110D611B6CE0B422ED7', + name: 'ATOM Squared', + display: 'sqatom', + symbol: 'sqATOM', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'Margined Power Token sqBTC', + denom_units: [ + { + denom: + 'ibc/F008644BB0BDB179A54D318A62F7FB6EF9C7A51C37433180CFFADBC04FB7096D', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc'] + }, + { + denom: 'sqbtc', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/F008644BB0BDB179A54D318A62F7FB6EF9C7A51C37433180CFFADBC04FB7096D', + name: 'BTC Squared', + display: 'sqbtc', + symbol: 'sqBTC', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqbtc.svg' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'QWOYN is the native governance token for Qwoyn Network', + denom_units: [ + { + denom: + 'ibc/A8CB2060E6689231DB85690E88E2F10F68B88D0F099D4FEFC565F5092F7CABC6', + exponent: 0, + aliases: [ + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D' + ] + }, + { + denom: 'qwoyn', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A8CB2060E6689231DB85690E88E2F10F68B88D0F099D4FEFC565F5092F7CABC6', + name: 'Qwoyn', + display: 'qwoyn', + symbol: 'QWOYN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/qwoyn/images/qwoyn.png' + } + ] + }, + { + description: 'The liquid staking token of Bostrom', + denom_units: [ + { + denom: + 'ibc/40631766E61C0DD7772EBEDEFA6DAF5F227FECBC41683372A8DDCB6CFD3028ED', + exponent: 0, + aliases: [ + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/40631766E61C0DD7772EBEDEFA6DAF5F227FECBC41683372A8DDCB6CFD3028ED', + name: 'Bostrom Hydrogen', + display: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + symbol: 'HYDROGEN', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/hydrogen.svg' + } + ] + }, + { + description: 'The staking token of Cyber', + denom_units: [ + { + denom: + 'ibc/864617DDB2BE83F4EDD49A60768287094A7E92ADDDF0CAAEECF546AB2CACCE57', + exponent: 0, + aliases: [ + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761' + ] + } + ], + type_asset: 'ics20', + base: 'ibc/864617DDB2BE83F4EDD49A60768287094A7E92ADDDF0CAAEECF546AB2CACCE57', + name: 'Bostrom Tocyb', + display: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + symbol: 'TOCYB', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/tocyb.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/7B11BF63DAA2E3A999A9FB04CEA5EFD3B23F1034E6FBECDE46C2C6416302016A', + exponent: 0, + aliases: [ + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA' + ] + }, + { + denom: 'volt', + exponent: 3, + aliases: ['volt'] + } + ], + type_asset: 'ics20', + base: 'ibc/7B11BF63DAA2E3A999A9FB04CEA5EFD3B23F1034E6FBECDE46C2C6416302016A', + name: 'Bostrom Volt', + display: 'volt', + symbol: 'V', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/volt.svg' + } + ] + }, + { + description: 'The resource token of Bostrom', + denom_units: [ + { + denom: + 'ibc/167D03ED3FDF4ACEEE9209A094DB01C8D52FB26D9647C823528D4CE855882A23', + exponent: 0, + aliases: [ + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424' + ] + }, + { + denom: 'ampere', + exponent: 3, + aliases: ['ampere'] + } + ], + type_asset: 'ics20', + base: 'ibc/167D03ED3FDF4ACEEE9209A094DB01C8D52FB26D9647C823528D4CE855882A23', + name: 'Bostrom Ampere', + display: 'ampere', + symbol: 'A', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bostrom/images/ampere.svg' + } + ] + }, + { + description: 'The native token of SOURCE Chain', + denom_units: [ + { + denom: + 'ibc/1B4CE71B14E01EBCFFB563D247EDAA1B4E6CF3566018794ED59467DF5589AF23', + exponent: 0, + aliases: [ + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7' + ] + }, + { + denom: 'source', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/1B4CE71B14E01EBCFFB563D247EDAA1B4E6CF3566018794ED59467DF5589AF23', + name: 'Source', + display: 'source', + symbol: 'SOURCE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg' + } + ] + }, + { + description: + "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + denom_units: [ + { + denom: + 'ibc/02717776DBA6157FAA29560A72C0D93DB01424089C3837A2820E05BFA2D8D6F2', + exponent: 0, + aliases: [ + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5' + ] + }, + { + denom: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + exponent: 6, + aliases: ['pyth'] + } + ], + type_asset: 'ics20', + base: 'ibc/02717776DBA6157FAA29560A72C0D93DB01424089C3837A2820E05BFA2D8D6F2', + name: 'Pyth Network', + display: 'wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6', + symbol: 'PYTH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg' + } + ] + }, + { + description: 'PSTAKE Liquid-Staked OSMO', + denom_units: [ + { + denom: + 'ibc/143752B77C7D766FFFB26A026B1B1B39405CA0226C1B92AB7DD7DB0F77D3A3FC', + exponent: 0, + aliases: [ + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E' + ] + }, + { + denom: 'stkosmo', + exponent: 6, + aliases: ['stk/osmo'] + } + ], + type_asset: 'ics20', + base: 'ibc/143752B77C7D766FFFB26A026B1B1B39405CA0226C1B92AB7DD7DB0F77D3A3FC', + name: 'PSTAKE staked OSMO', + display: 'stkosmo', + symbol: 'stkOSMO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'persistence', + base_denom: 'stk/uosmo' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.svg' + } + ] + }, + { + description: 'Levana native token', + denom_units: [ + { + denom: + 'ibc/3C2C26F83D1F4E2885C8357327963BB603F87AC50FB3A022932E1A0BAA86DF19', + exponent: 0, + aliases: [ + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn' + ] + }, + { + denom: 'lvn', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/3C2C26F83D1F4E2885C8357327963BB603F87AC50FB3A022932E1A0BAA86DF19', + name: 'Levana', + display: 'lvn', + symbol: 'LVN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.svg' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png' + } + ], + coingecko_id: 'levana-protocol', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'Puppy', + denom_units: [ + { + denom: + 'ibc/52A64BB0A08802D2DE9596220911FD5278ADD80879DDDDA8154ED232E034E01F', + exponent: 0, + aliases: [ + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963' + ] + }, + { + denom: 'puppy', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/52A64BB0A08802D2DE9596220911FD5278ADD80879DDDDA8154ED232E034E01F', + name: 'Puppy', + display: 'puppy', + symbol: 'PUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png' + } + ], + keywords: ['osmosis_unstable'] + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/84E8901A573ADFEAE61C919FA888B50B28F5FB0DF29496830313994BE981D371', + exponent: 0, + aliases: [ + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/84E8901A573ADFEAE61C919FA888B50B28F5FB0DF29496830313994BE981D371', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ] + }, + { + description: "MilkyWay's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/AD8D7DB35749F216263FC2933C34D500049EB796E66EDFD405C822871072D473', + exponent: 0, + aliases: [ + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA' + ] + }, + { + denom: 'milkTIA', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/AD8D7DB35749F216263FC2933C34D500049EB796E66EDFD405C822871072D473', + name: 'milkTIA', + display: 'milkTIA', + symbol: 'milkTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.svg' + } + ], + coingecko_id: 'milkyway-staked-tia' + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/8F84AAD51B6AA231EF8DABDADAA2DA103C0CC46B4B4EEACF6E3C7B1195A3F0AB', + exponent: 0, + aliases: [ + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/8F84AAD51B6AA231EF8DABDADAA2DA103C0CC46B4B4EEACF6E3C7B1195A3F0AB', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/5FEAF0325A41D27FF25F3D0B313B22DE98CAD6A7E3854856E95512864B44D009', + exponent: 0, + aliases: [ + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5FEAF0325A41D27FF25F3D0B313B22DE98CAD6A7E3854856E95512864B44D009', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ] + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/FFD5D685541C931FDEF5185543558D711B0756B522DAE4D40A2AF1BF45022075', + exponent: 0, + aliases: [ + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FFD5D685541C931FDEF5185543558D711B0756B522DAE4D40A2AF1BF45022075', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ] + }, + { + description: + 'The native EVM, governance and staking token of the Haqq Network', + denom_units: [ + { + denom: + 'ibc/CE3CBEB21D06E06F95B52941B123DCC9E2787D7CDE5004BB90F5A26E757CDAAF', + exponent: 0, + aliases: [ + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA' + ] + }, + { + denom: 'ISLM', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/CE3CBEB21D06E06F95B52941B123DCC9E2787D7CDE5004BB90F5A26E757CDAAF', + name: 'Haqq Network', + display: 'ISLM', + symbol: 'ISLM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/haqq/images/islm.svg' + } + ] + }, + { + description: + '$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world', + denom_units: [ + { + denom: + 'ibc/3A2EBCD6A0546AC95212EECAE1A60E243B2CF3F7D48279D82F946C5B71609965', + exponent: 0, + aliases: [ + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D' + ] + }, + { + denom: 'autism', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3A2EBCD6A0546AC95212EECAE1A60E243B2CF3F7D48279D82F946C5B71609965', + name: 'Autism', + display: 'autism', + symbol: 'AUTISM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + }, + images: [ + { + image_sync: { + chain_name: 'injective', + base_denom: + 'factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.', + denom_units: [ + { + denom: + 'ibc/2A2F27493247C74B8573888E23172EA962E52300BB3727473D8D5CE948CF2AA6', + exponent: 0, + aliases: [ + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99' + ] + }, + { + denom: 'page', + exponent: 8 + } + ], + type_asset: 'ics20', + base: 'ibc/2A2F27493247C74B8573888E23172EA962E52300BB3727473D8D5CE948CF2AA6', + name: 'Page', + display: 'page', + symbol: 'PAGE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + }, + images: [ + { + image_sync: { + chain_name: 'gravitybridge', + base_denom: 'gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.svg' + } + ] + }, + { + description: 'PURSE Token', + denom_units: [ + { + denom: + 'ibc/6DD52E4692CC9320B2E76F39ACABF67DC5F4EA24FFC71D552607418C485D38E7', + exponent: 0, + aliases: [ + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519' + ] + }, + { + denom: 'PURSE', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/6DD52E4692CC9320B2E76F39ACABF67DC5F4EA24FFC71D552607418C485D38E7', + name: 'PURSE Token (Function X)', + display: 'PURSE', + symbol: 'PURSE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + }, + images: [ + { + image_sync: { + chain_name: 'binancesmartchain', + base_denom: '0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pundix/images/purse-token-logo.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The first meme coin on Injective. It’s a dog, but he has nunchucks', + denom_units: [ + { + denom: + 'ibc/16E3ECC31CE04555804B7430894020B6BB421ED51AD04B1611380754418DC470', + exponent: 0, + aliases: [ + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3' + ] + }, + { + denom: 'NINJA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/16E3ECC31CE04555804B7430894020B6BB421ED51AD04B1611380754418DC470', + name: 'Dog wif nunchucks', + display: 'NINJA', + symbol: 'NINJA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png' + } + ] + }, + { + description: 'Kleomedes Token', + denom_units: [ + { + denom: + 'ibc/98D0F4234F9F7881A287CEBBB7BB4AEA91F61A5255D6237ED828E547C43FD435', + exponent: 0, + aliases: [ + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF' + ] + }, + { + denom: 'kleo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/98D0F4234F9F7881A287CEBBB7BB4AEA91F61A5255D6237ED828E547C43FD435', + name: 'Kleomedes', + display: 'kleo', + symbol: 'KLEO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png' + } + ] + }, + { + description: "NYX Token (NYX) is the Nym Network's native token.", + denom_units: [ + { + denom: + 'ibc/7FC7A7CEE86846BD477811F10A3DF0CE6C59584AA3E87FEBA4A2FF7DE6AFBBF0', + exponent: 0, + aliases: [ + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317' + ] + }, + { + denom: 'nyx', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7FC7A7CEE86846BD477811F10A3DF0CE6C59584AA3E87FEBA4A2FF7DE6AFBBF0', + name: 'Nym', + display: 'nyx', + symbol: 'NYX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + denom_units: [ + { + denom: + 'ibc/91E63B05D5770A37D858F05B47E8BAB855C670B36F45BE83BA69B3CBA7C74CDF', + exponent: 0, + aliases: [ + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539' + ] + }, + { + denom: 'nym', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/91E63B05D5770A37D858F05B47E8BAB855C670B36F45BE83BA69B3CBA7C74CDF', + name: 'NYM', + display: 'nym', + symbol: 'NYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym.png' + } + ] + }, + { + description: 'has a hat', + denom_units: [ + { + denom: + 'ibc/ECE881081E98E69CBBE8E93A96F2C5441431E96D0468EB088419D045A6F4F13B', + exponent: 0, + aliases: [ + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7' + ] + }, + { + denom: 'achihuahuawifhat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/ECE881081E98E69CBBE8E93A96F2C5441431E96D0468EB088419D045A6F4F13B', + name: 'Chihuahuawifhat', + display: 'achihuahuawifhat', + symbol: 'BADDOG', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png' + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/444BE8C0401CAB8D744ADEF42DBC43BE99F09DA0FBB84CC4B6B8B74BF8FCCBE5', + exponent: 0, + aliases: [ + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/444BE8C0401CAB8D744ADEF42DBC43BE99F09DA0FBB84CC4B6B8B74BF8FCCBE5', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ] + }, + { + description: + 'Governance and utility token for the Junø Apes NFT platform on Juno', + denom_units: [ + { + denom: + 'ibc/4ED1B578ED3E3283BA38CA14BDA14651CDAF0E1EC4668B2F252FC555D59C2DB0', + exponent: 0, + aliases: [ + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE' + ] + }, + { + denom: 'jape', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4ED1B578ED3E3283BA38CA14BDA14651CDAF0E1EC4668B2F252FC555D59C2DB0', + name: 'Junø Apes', + display: 'jape', + symbol: 'JAPE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png' + } + ] + }, + { + description: 'Woof', + denom_units: [ + { + denom: + 'ibc/0962CF2B313C3401752F98B21CB771D1B41D8B884E3ADB7B22C056B83AFA2DF1', + exponent: 0, + aliases: [ + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53' + ] + }, + { + denom: 'WOOF', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/0962CF2B313C3401752F98B21CB771D1B41D8B884E3ADB7B22C056B83AFA2DF1', + name: 'WOOF', + display: 'WOOF', + symbol: 'WOOF', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png' + } + ] + }, + { + description: 'The native coin of Sneaky Productions.', + denom_units: [ + { + denom: + 'ibc/5B0D053C073391E36336DAE107A3B11105FEA7A32DF7B15488BBD0CDB9651F90', + exponent: 0, + aliases: [ + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F' + ] + }, + { + denom: 'sneaky', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5B0D053C073391E36336DAE107A3B11105FEA7A32DF7B15488BBD0CDB9651F90', + name: 'Sneaky Productions', + display: 'sneaky', + symbol: 'SNEAKY', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + }, + images: [ + { + image_sync: { + chain_name: 'stargaze', + base_denom: + 'factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.svg' + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/DDA5EFDDA729FA6C48CFA7F1C69D97E69C2F8C90DC86D89D2ED843D64E818320', + exponent: 0, + aliases: [ + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc' + ] + }, + { + denom: 'wbtc', + exponent: 8 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743', + base: 'ibc/DDA5EFDDA729FA6C48CFA7F1C69D97E69C2F8C90DC86D89D2ED843D64E818320', + name: 'Wrapped Bitcoin', + display: 'wbtc', + symbol: 'WBTC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg' + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/D5BABF85CB51E82867EE75D6ABE1C1ADB37856F8991100BC6180F62331B39207', + exponent: 0, + aliases: [ + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/D5BABF85CB51E82867EE75D6ABE1C1ADB37856F8991100BC6180F62331B39207', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ] + }, + { + description: 'Signal Art and Gaming on Juno', + denom_units: [ + { + denom: + 'ibc/15B00AF33F6E817A80BC16B5C78761D6C90F16DEFB0422919F5BEE7C5C330BA6', + exponent: 0, + aliases: [ + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A' + ] + }, + { + denom: 'sgnl', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/15B00AF33F6E817A80BC16B5C78761D6C90F16DEFB0422919F5BEE7C5C330BA6', + name: 'Signal', + display: 'sgnl', + symbol: 'SGNL', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png' + } + ] + }, + { + description: + "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + denom_units: [ + { + denom: + 'ibc/4929AD3E0019D83847D4FA7E117973B43B60251DDB3C5F2F3BE600BC1CCAB4AD', + exponent: 0, + aliases: ['factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO'] + }, + { + denom: 'WOSMO', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3', + base: 'ibc/4929AD3E0019D83847D4FA7E117973B43B60251DDB3C5F2F3BE600BC1CCAB4AD', + name: 'WOSMO', + display: 'WOSMO', + symbol: 'WOSMO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'Margined Power Token sqTIA', + denom_units: [ + { + denom: + 'ibc/3F4149BB2EAC2BC3D60B7D83B195DF6F86CDE1ED56A2E77B0A2D6FB8217AF617', + exponent: 0, + aliases: ['factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia'] + }, + { + denom: 'sqtia', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ibc/3F4149BB2EAC2BC3D60B7D83B195DF6F86CDE1ED56A2E77B0A2D6FB8217AF617', + name: 'TIA Squared', + display: 'sqtia', + symbol: 'sqTIA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The deflationary utility token of the Apollo DAO project', + denom_units: [ + { + denom: + 'ibc/430C8E6711064C492C497607847339876C6638819C7B5D51379FD4642EC0E243', + exponent: 0, + aliases: [ + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1' + ] + }, + { + denom: 'apollo', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/430C8E6711064C492C497607847339876C6638819C7B5D51379FD4642EC0E243', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' + } + ] + }, + { + description: "Stride's liquid staked DYDX", + denom_units: [ + { + denom: + 'ibc/BF09E7ED26377ED9325D86F215F3AD175C259183D2B94CE4F909499283F51AE2', + exponent: 0, + aliases: [ + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C' + ] + }, + { + denom: 'stDYDX', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/BF09E7ED26377ED9325D86F215F3AD175C259183D2B94CE4F909499283F51AE2', + name: 'Stride Staked DYDX', + display: 'stDYDX', + symbol: 'stDYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.svg' + } + ] + }, + { + description: "Stride's liquid staked TIA", + denom_units: [ + { + denom: + 'ibc/FCFBC0AC5CE3D958E566CEE83CD08074BFDDD9E60EEEDBD21E24E95770017EC9', + exponent: 0, + aliases: [ + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9' + ] + }, + { + denom: 'stTIA', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/FCFBC0AC5CE3D958E566CEE83CD08074BFDDD9E60EEEDBD21E24E95770017EC9', + name: 'Stride Staked TIA', + display: 'stTIA', + symbol: 'stTIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.svg' + } + ] + }, + { + description: 'GLTO-ERC20 on injective', + denom_units: [ + { + denom: + 'ibc/C1348FDB1159374D9B9C0EE456452B33E59CB13B822A1257F54E8AF24EE0BB03', + exponent: 0, + aliases: [ + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7' + ] + }, + { + denom: 'glto', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/C1348FDB1159374D9B9C0EE456452B33E59CB13B822A1257F54E8AF24EE0BB03', + name: 'Gelotto (Injective)', + display: 'glto', + symbol: 'injective.GLTO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + }, + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.svg' + } + ], + keywords: ['osmosis_unlisted'] + }, + { + description: + 'The native governance and staking token of the Dymension Hub', + denom_units: [ + { + denom: + 'ibc/4671BD4D37F0A87F9F200F709E2FBFD2C267FFCD6CDF0B9BE9E203CF2B79F30C', + exponent: 0, + aliases: [ + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110' + ] + }, + { + denom: 'dym', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/4671BD4D37F0A87F9F200F709E2FBFD2C267FFCD6CDF0B9BE9E203CF2B79F30C', + name: 'Dymension Hub', + display: 'dym', + symbol: 'DYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.svg' + } + ] + }, + { + description: + 'Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.', + denom_units: [ + { + denom: + 'ibc/7407E75815187052983EA6211FA2B7D915CD2015C77CA11DDEDF0BC62DE4135F', + exponent: 0, + aliases: ['factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR'] + }, + { + denom: 'RAPTR', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1279xudevmf5cw83vkhglct7jededp86k90k2le', + base: 'ibc/7407E75815187052983EA6211FA2B7D915CD2015C77CA11DDEDF0BC62DE4135F', + name: 'RAPTR', + display: 'RAPTR', + symbol: 'RAPTR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png' + } + ], + keywords: ['osmosis_unlisted'], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + denom_units: [ + { + denom: + 'ibc/045483893058270B5BF270E8D8BEA4458B25B3725A12ECEE84E173C18F45F3FF', + exponent: 0, + aliases: [ + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43' + ] + }, + { + denom: 'avalanche-usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/045483893058270B5BF270E8D8BEA4458B25B3725A12ECEE84E173C18F45F3FF', + name: 'Wormhole USDC(Avalanche)', + display: 'avalanche-usdc', + symbol: 'avalanche.USDC.wh', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdc.hole.svg' + } + }, + { + description: 'Sail DAO Token', + denom_units: [ + { + denom: + 'ibc/62717BB79872C360569E23A900CA189EE445FDABCD7DB8C2D74C0CC5B4CB755F', + exponent: 0, + aliases: [ + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail' + ] + }, + { + denom: 'sail', + exponent: 6 + } + ], + base: 'ibc/62717BB79872C360569E23A900CA189EE445FDABCD7DB8C2D74C0CC5B4CB755F', + name: 'Sail', + display: 'sail', + symbol: 'SAIL', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: "Nomic's native token.", + denom_units: [ + { + denom: + 'ibc/AEB47B913E6111C1F76E67256C57760D9DF8BD73FBA2C089565A38CF9C57CFFA', + exponent: 0, + aliases: [ + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C' + ] + }, + { + denom: 'nom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/AEB47B913E6111C1F76E67256C57760D9DF8BD73FBA2C089565A38CF9C57CFFA', + name: 'Nomic', + display: 'nomic', + symbol: 'nomic.NOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'unom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nom.svg' + } + }, + { + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + denom_units: [ + { + denom: + 'ibc/08E87D3033C14B4171F3CBDE15E6136CE4D4B30A21EE0717EED2B6F4CCB81B29', + exponent: 0, + aliases: [ + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + ] + }, + { + denom: 'BADKID', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8', + base: 'ibc/08E87D3033C14B4171F3CBDE15E6136CE4D4B30A21EE0717EED2B6F4CCB81B29', + name: 'BADKID', + display: 'BADKID', + symbol: 'BADKID', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: + 'The governance and utility token of Yieldmos, the Interchain Automation Protocol', + denom_units: [ + { + denom: + 'ibc/158DC9A91F2FE85146647CF28C19F672CE771102E3DBF1E550C5CE596E5B202E', + exponent: 0, + aliases: [ + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos' + ] + }, + { + denom: 'ymos', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: + 'osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy', + base: 'ibc/158DC9A91F2FE85146647CF28C19F672CE771102E3DBF1E550C5CE596E5B202E', + name: 'Yieldmos Coin', + display: 'ymos', + symbol: 'YMOS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + }, + { + description: 'The memecoin built for the Celestia community', + denom_units: [ + { + denom: + 'ibc/B3B65B87C802588045B618FC13BDAB97DE177DE6EE0C60D8E651FFF8F5E6E1DA', + exponent: 0, + aliases: ['factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro'] + }, + { + denom: 'toro', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + address: 'osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z', + base: 'ibc/B3B65B87C802588045B618FC13BDAB97DE177DE6EE0C60D8E651FFF8F5E6E1DA', + name: 'TORO', + display: 'toro', + symbol: 'TORO', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/mainnet/noble.ts b/packages/assets/src/mainnet/noble.ts index a1a0bac07..39b6fb00b 100644 --- a/packages/assets/src/mainnet/noble.ts +++ b/packages/assets/src/mainnet/noble.ts @@ -1776,6 +1776,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/CCFFFD35794B39990FE77B1FD329F9621A3520DE8FB776A4740D5E6A3253A19B', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-224', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-3' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -4875,6 +4923,49 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Nibiru network', + denom_units: [ + { + denom: + 'ibc/A77035AF12BBB11C0340BE804798C4B49F5332EA8C7523F471850C202C0742C5', + exponent: 0, + aliases: ['unibi'] + }, + { + denom: 'nibi', + exponent: 6 + } + ], + base: 'ibc/A77035AF12BBB11C0340BE804798C4B49F5332EA8C7523F471850C202C0742C5', + name: 'Nibiru', + display: 'nibi', + symbol: 'NIBI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + }, + coingecko_id: 'nibiru', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: 'unibi', + chain_name: 'nibiru' + }, + chain: { + channel_id: 'channel-67' + } + } + ] + }, { description: 'The native staking token of OmniFlix Hub.', denom_units: [ @@ -19743,6 +19834,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/9F058162A280B51EA31256997963B1F93DF5BCF024C5B141606C605478691D3A', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/9F058162A280B51EA31256997963B1F93DF5BCF024C5B141606C605478691D3A', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-45', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-39' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/nois.ts b/packages/assets/src/mainnet/nois.ts index 73dacefc0..4da9de802 100644 --- a/packages/assets/src/mainnet/nois.ts +++ b/packages/assets/src/mainnet/nois.ts @@ -951,6 +951,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/1A67AFE7A75CC3D51941930A84C8650374125BD475A293CF0A52D7F5C1725F8F', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-225', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-1' + } + } + ] + }, { description: 'The native token of Neutron chain.', denom_units: [ @@ -16100,6 +16148,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/0241B5E88EAE12F166D9A966BECA98E2A443533960966C5E2197F652AA76582B', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/0241B5E88EAE12F166D9A966BECA98E2A443533960966C5E2197F652AA76582B', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-58', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-43' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/okexchain.ts b/packages/assets/src/mainnet/okexchain.ts index 3a1585a76..140ea1a83 100644 --- a/packages/assets/src/mainnet/okexchain.ts +++ b/packages/assets/src/mainnet/okexchain.ts @@ -657,6 +657,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/C449123F321BF22DC8264805C94CE88A396A7AF2163458EBF7EFBC76516CC735', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/C449123F321BF22DC8264805C94CE88A396A7AF2163458EBF7EFBC76516CC735', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-212', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-52' + } + } + ] + }, { description: 'The native token of Vidulum', denom_units: [ diff --git a/packages/assets/src/mainnet/osmosis.ts b/packages/assets/src/mainnet/osmosis.ts index d6b6b0a52..bec5fe886 100644 --- a/packages/assets/src/mainnet/osmosis.ts +++ b/packages/assets/src/mainnet/osmosis.ts @@ -4335,6 +4335,49 @@ const assets: AssetList = { } ] }, + { + description: 'Decentralized Federated Learning', + denom_units: [ + { + denom: + 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + exponent: 0, + aliases: ['ucif'] + }, + { + denom: 'cif', + exponent: 6 + } + ], + base: 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + name: 'Cifer', + display: 'cif', + symbol: 'CIF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'ucif', + chain_name: 'cifer' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'Native Token of Comdex Protocol', denom_units: [ @@ -7736,18 +7779,11 @@ const assets: AssetList = { display: 'heart', symbol: 'HEART', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg' }, coingecko_id: 'humans-ai', images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg', - theme: { - dark_mode: false - } - }, { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg', @@ -8704,6 +8740,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/37544C63D9B42019F6C8EF2A1702CF780A4C7F8C0D4F5BE8980F475D6E610500', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/37544C63D9B42019F6C8EF2A1702CF780A4C7F8C0D4F5BE8980F475D6E610500', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-42' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -12506,6 +12590,49 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Nibiru network', + denom_units: [ + { + denom: + 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF', + exponent: 0, + aliases: ['unibi'] + }, + { + denom: 'nibi', + exponent: 6 + } + ], + base: 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF', + name: 'Nibiru', + display: 'nibi', + symbol: 'NIBI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + }, + coingecko_id: 'nibiru', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'unibi', + chain_name: 'nibiru' + }, + chain: { + channel_id: 'channel-21113' + } + } + ] + }, { description: 'The permissioned staking asset for Noble Chain', denom_units: [ @@ -16558,6 +16685,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/52D2C9570CC0756B189A56E08FF8255ED496CD5126569CB05F07875B317F24E8', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/52D2C9570CC0756B189A56E08FF8255ED496CD5126569CB05F07875B317F24E8', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-782' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ @@ -17874,6 +18045,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-326' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/persistence.ts b/packages/assets/src/mainnet/persistence.ts index baf6df0e2..25e1e8817 100644 --- a/packages/assets/src/mainnet/persistence.ts +++ b/packages/assets/src/mainnet/persistence.ts @@ -2232,6 +2232,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/4A55F39C7A46F1DAD1454F728FB6EA9692C6F658411697B371BBD229F5A6EFAF', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-33', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-37' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -20170,6 +20218,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/B904861665108490572DCF45FFC7156BE0F09E578B5A0C42BFF02065F6212D3E', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/B904861665108490572DCF45FFC7156BE0F09E578B5A0C42BFF02065F6212D3E', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-67' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/planq.ts b/packages/assets/src/mainnet/planq.ts index 8169cd569..5a7adb16f 100644 --- a/packages/assets/src/mainnet/planq.ts +++ b/packages/assets/src/mainnet/planq.ts @@ -16109,6 +16109,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/5B70EF0375A035557E41842A33EF7DCC3A1DCCA7253AC716DDE69CBD44D2924D', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/5B70EF0375A035557E41842A33EF7DCC3A1DCCA7253AC716DDE69CBD44D2924D', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-13', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-59' + } + } + ] + }, { description: 'The native token of SOURCE Chain', denom_units: [ diff --git a/packages/assets/src/mainnet/quicksilver.ts b/packages/assets/src/mainnet/quicksilver.ts index 083d13d7e..0f7dcb523 100644 --- a/packages/assets/src/mainnet/quicksilver.ts +++ b/packages/assets/src/mainnet/quicksilver.ts @@ -706,6 +706,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/1FE817F208FE6AA76ECE57ED552C22F701AA6A5CB83AA5E0FC03A9DF8F481493', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/1FE817F208FE6AA76ECE57ED552C22F701AA6A5CB83AA5E0FC03A9DF8F481493', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-215', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-22' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/secretnetwork.ts b/packages/assets/src/mainnet/secretnetwork.ts index 00f8e15e6..f702eb148 100644 --- a/packages/assets/src/mainnet/secretnetwork.ts +++ b/packages/assets/src/mainnet/secretnetwork.ts @@ -1885,6 +1885,49 @@ const assets: AssetList = { } ] }, + { + description: 'Native token for the cheqd network', + denom_units: [ + { + denom: + 'ibc/0D5DA8508A67E30C3C268A0400EA15FAFB553C0C371757994C90BFA023FF0B93', + exponent: 0, + aliases: ['ncheq'] + }, + { + denom: 'cheq', + exponent: 9 + } + ], + base: 'ibc/0D5DA8508A67E30C3C268A0400EA15FAFB553C0C371757994C90BFA023FF0B93', + display: 'cheq', + name: 'cheqd', + symbol: 'CHEQ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + }, + coingecko_id: 'cheqd-network', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-36', + base_denom: 'ncheq', + chain_name: 'cheqd' + }, + chain: { + channel_id: 'channel-141' + } + } + ] + }, { description: 'The native token of Chihuahua Chain', denom_units: [ @@ -4240,6 +4283,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/45ACFCD35DDF8FF0C1AFC18433726587F440985E8C986B7B4EAD2088064AE97D', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/45ACFCD35DDF8FF0C1AFC18433726587F440985E8C986B7B4EAD2088064AE97D', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-48', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-8' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -5732,419 +5823,1609 @@ const assets: AssetList = { }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'boneWHALE', + denom_units: [ + { + denom: + 'ibc/0218191FB58C108D9D211DC604C2FD717097ECD3C49D04218BF0C933B937F8B2', + exponent: 0, + aliases: [ + 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale' + ] + }, + { + denom: 'boneWHALE', + exponent: 6 + } + ], + base: 'ibc/0218191FB58C108D9D211DC604C2FD717097ECD3C49D04218BF0C933B937F8B2', + name: 'boneWHALE', + display: 'boneWHALE', + symbol: 'bWHALE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'FABLE', + denom_units: [ + { + denom: + 'ibc/AF797E3E937316B22EBCCE597DF4E5627C778BF40BB3FD8C11DC711E315FABB9', + exponent: 0, + aliases: [ + 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable' + ] + }, + { + denom: 'fable', + exponent: 6 + } + ], + base: 'ibc/AF797E3E937316B22EBCCE597DF4E5627C778BF40BB3FD8C11DC711E315FABB9', + name: 'FABLE', + display: 'fable', + symbol: 'FABLE', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'boneLUNA are autocompounding LUNA tokens', + denom_units: [ + { + denom: + 'ibc/1F0C040BB32C6CC3ADA10C1C498F246B9CAC4999767397D4215324D26FEEB964', + exponent: 0, + aliases: [ + 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708' + ] + }, + { + denom: 'bluna', + exponent: 6 + } + ], + base: 'ibc/1F0C040BB32C6CC3ADA10C1C498F246B9CAC4999767397D4215324D26FEEB964', + address: + 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', + type_asset: 'ics20', + name: 'boneLuna', + display: 'bluna', + symbol: 'bLUNA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' + } + ] + }, + { + description: 'RAC', + denom_units: [ + { + denom: + 'ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac' + ] + }, + { + denom: 'RAC', + exponent: 6 + } + ], + base: 'ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115', + name: 'RAC', + display: 'RAC', + symbol: 'RAC', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'ASH', + denom_units: [ + { + denom: + 'ibc/07D49BFFE3E9C4017DA6BD604B728EE024F4BF954AC6D36ECCF73FABF33BFE80', + exponent: 0, + aliases: [ + 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash' + ] + }, + { + denom: 'ASH', + exponent: 6 + } + ], + base: 'ibc/07D49BFFE3E9C4017DA6BD604B728EE024F4BF954AC6D36ECCF73FABF33BFE80', + name: 'ASH', + display: 'ASH', + symbol: 'ASH', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'Tether USDt on Migaloo', + denom_units: [ + { + denom: + 'ibc/DF734ECA6BA33E488C6707F1CE27CAA77BDBDC794C457D04CA4F774E0D66FC1C', + exponent: 0, + aliases: [ + 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737' + ] + }, + { + denom: 'usdt', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DF734ECA6BA33E488C6707F1CE27CAA77BDBDC794C457D04CA4F774E0D66FC1C', + name: 'Tether USDt', + display: 'usdt', + symbol: 'USDt', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'kava', + base_denom: 'erc20/tether/usdt' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + } + }, + { + description: 'GUPPY', + denom_units: [ + { + denom: + 'ibc/432F836FDF2021B8004CA6E3DC700BAF8215BF3ECFA2D54FD4FC9F080422016E', + exponent: 0, + aliases: [ + 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy' + ] + }, + { + denom: 'GUPPY', + exponent: 6 + } + ], + base: 'ibc/432F836FDF2021B8004CA6E3DC700BAF8215BF3ECFA2D54FD4FC9F080422016E', + name: 'GUPPY', + display: 'GUPPY', + symbol: 'GUPPY', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'OPHIR is a Cosmos Treasury DAO established on Migaloo.', + denom_units: [ + { + denom: + 'ibc/4566DB882C5219FC6A3760CC9B3B7E84E0C5605CE6E21660D3F072A950DCB15E', + exponent: 0, + aliases: [ + 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir' + ] + }, + { + denom: 'OPHIR', + exponent: 6 + } + ], + base: 'ibc/4566DB882C5219FC6A3760CC9B3B7E84E0C5605CE6E21660D3F072A950DCB15E', + name: 'OPHIR', + display: 'OPHIR', + symbol: 'OPHIR', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/AF19217598DCB319F129EA68AFE34ECF5212902602553AF4B1F05CCCEE6007F3', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + base: 'ibc/AF19217598DCB319F129EA68AFE34ECF5212902602553AF4B1F05CCCEE6007F3', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark', + chain_name: 'migaloo' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, + { + description: 'The native token of Neutron chain.', + denom_units: [ + { + denom: + 'ibc/F1E2912B7740A256EE98F87F464CC50EEB4511CEDFA9512365B2DA93057482DC', + exponent: 0, + aliases: ['untrn'] + }, + { + denom: 'ntrn', + exponent: 6 + } + ], + base: 'ibc/F1E2912B7740A256EE98F87F464CC50EEB4511CEDFA9512365B2DA93057482DC', + name: 'Neutron', + display: 'ntrn', + symbol: 'NTRN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + }, + coingecko_id: 'neutron-3', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg' + } + ], + socials: { + webiste: 'https://neutron.org/', + twitter: 'https://twitter.com/Neutron_org' + }, + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: 'untrn', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'IBC uatom through cosmoshub-4 transfer/channel-1', + denom_units: [ + { + denom: + 'ibc/3968D64D0307964F8F888C923D22D38FB45DEC0E1E8C402C47E9EDFEC90232AD', + exponent: 0, + aliases: [ + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3968D64D0307964F8F888C923D22D38FB45DEC0E1E8C402C47E9EDFEC90232AD', + name: 'IBC atom', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, + { + description: 'IBC Axelar uusdc through axelar-dojo-1 transfer/channel-2', + denom_units: [ + { + denom: + 'ibc/4FB70E300D109EE03FC516DE5371A1440720FAE7826885422BD67770ECE96FAF', + exponent: 0, + aliases: [ + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4FB70E300D109EE03FC516DE5371A1440720FAE7826885422BD67770ECE96FAF', + name: 'IBC usdc', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'axelar', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg' + } + }, + { + description: 'Tia on Neutron', + denom_units: [ + { + denom: + 'ibc/B6D522FEC296D1D4C9AAF145B7C95C8C5D4654EAEE8C07F0B3D7EB40CE627B1D', + exponent: 0, + aliases: [ + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7' + ] + }, + { + denom: 'tia', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/B6D522FEC296D1D4C9AAF145B7C95C8C5D4654EAEE8C07F0B3D7EB40CE627B1D', + name: 'Celestia TIA', + display: 'tia', + symbol: 'TIA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'celestia', + base_denom: 'utia' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg' + } + }, + { + description: 'Astropepe meme coin', + denom_units: [ + { + denom: + 'ibc/10AB0CE1FF51E5815B87147CA5B61CD783061BC130E39AFB5CCCC023C61342F6', + exponent: 0, + aliases: [ + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe' + ] + }, + { + denom: 'ASTROPEPE', + exponent: 6 + } + ], + base: 'ibc/10AB0CE1FF51E5815B87147CA5B61CD783061BC130E39AFB5CCCC023C61342F6', + name: 'AstroPepe', + display: 'ASTROPEPE', + symbol: 'ASTROPEPE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'wstETH on Neutron', + denom_units: [ + { + denom: + 'ibc/9AD9D38BE249CB6F0A22A1EB5487E2377B79FADB397444B1F77F29B96F34C2F1', + exponent: 0, + aliases: [ + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH' + ] + }, + { + denom: 'wstETH', + exponent: 18 + } + ], + base: 'ibc/9AD9D38BE249CB6F0A22A1EB5487E2377B79FADB397444B1F77F29B96F34C2F1', + name: 'wstETH', + display: 'wstETH', + symbol: 'wstETH', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'ethereum', + base_denom: '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg' + } + }, + { + description: 'NBTC on Neutron', + denom_units: [ + { + denom: + 'ibc/86646FA6D2B18D69B0F2C7FAECBD356AC105480DB94744B0AD0913587EA8444F', + exponent: 0, + aliases: [ + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920' + ] + }, + { + denom: 'sat', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/86646FA6D2B18D69B0F2C7FAECBD356AC105480DB94744B0AD0913587EA8444F', + name: 'Nomic NBTC', + display: 'sat', + symbol: 'SAT', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'nomic', + base_denom: 'usat' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nomic/images/nbtc.svg' + } + }, + { + description: 'DYDX on Neutron', + denom_units: [ + { + denom: + 'ibc/8D42F752B5D938CF5CA20B0F9B23400D4C167480611838E35E89BA59F5895632', + exponent: 0, + aliases: [ + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130' + ] + }, + { + denom: 'dydx', + exponent: 18 + } + ], + type_asset: 'ics20', + base: 'ibc/8D42F752B5D938CF5CA20B0F9B23400D4C167480611838E35E89BA59F5895632', + name: 'DYDX', + display: 'dydx', + symbol: 'DYDX', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'dydx', + base_denom: 'adydx' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.svg' + } + }, + { + description: 'The cutest NEWT token on Neutron chain.', + denom_units: [ + { + denom: + 'ibc/7C61C11B03CA37F92AA54DDF7E27F76E5B479E857093B0390ABE75FB72B49BDD', + exponent: 0, + aliases: [ + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt' + ] + }, + { + denom: 'newt', + exponent: 6 + } + ], + base: 'ibc/7C61C11B03CA37F92AA54DDF7E27F76E5B479E857093B0390ABE75FB72B49BDD', + name: 'Newt', + display: 'newt', + symbol: 'NEWT', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + }, + coingecko_id: 'newt', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'ASTRO on Neutron', + denom_units: [ + { + denom: + 'ibc/A408B264DB995099DDBEBFCE38BED81B559896F178E53209FC7E082670C59059', + exponent: 0, + aliases: [ + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A' + ] + }, + { + denom: 'astro', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A408B264DB995099DDBEBFCE38BED81B559896F178E53209FC7E082670C59059', + name: 'Astroport token', + display: 'astro', + symbol: 'ASTRO', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'terra2', + base_denom: + 'cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro.svg' + } + }, + { + description: 'Baby Corgi is the real doggo of Neutron!', + denom_units: [ + { + denom: + 'ibc/2027A73781160D29497FCE944B1C84438B76EF27EC2DFB0914B4FB39529A3292', + exponent: 0, + aliases: [ + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi' + ] + }, + { + denom: 'corgi', + exponent: 6 + } + ], + base: 'ibc/2027A73781160D29497FCE944B1C84438B76EF27EC2DFB0914B4FB39529A3292', + name: 'Baby Corgi', + display: 'corgi', + symbol: 'CORGI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'clownmaxxed store of value', + denom_units: [ + { + denom: + 'ibc/74E99BB17062EFA31551947DF9EB12643A5A842585F32966D6C7699651865B03', + exponent: 0, + aliases: [ + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus' + ] + }, + { + denom: 'circus', + exponent: 6 + } + ], + base: 'ibc/74E99BB17062EFA31551947DF9EB12643A5A842585F32966D6C7699651865B03', + name: 'AtomEconomicZone69JaeKwonInu', + display: 'circus', + symbol: 'CIRCUS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'Jimmy Neutron Finance', + denom_units: [ + { + denom: + 'ibc/9C37C9168EA371F551E65B9A40CF63280B21C8D9E79C9516EEF2835A165086C9', + exponent: 0, + aliases: [ + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY' + ] + }, + { + denom: 'jimmy', + exponent: 6 + } + ], + base: 'ibc/9C37C9168EA371F551E65B9A40CF63280B21C8D9E79C9516EEF2835A165086C9', + name: 'jimmy', + display: 'jimmy', + symbol: 'JIMMY', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'Baddest coin on Cosmos', + denom_units: [ + { + denom: + 'ibc/1A1378D7D7135A22F4A96542FEB3C221F92EA97E98FFE938B5EA28AFC81905E7', + exponent: 0, + aliases: [ + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad' + ] + }, + { + denom: 'bad', + exponent: 6 + } + ], + base: 'ibc/1A1378D7D7135A22F4A96542FEB3C221F92EA97E98FFE938B5EA28AFC81905E7', + name: 'Badcoin', + display: 'bad', + symbol: 'BAD', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'BITCOSMOS', + denom_units: [ + { + denom: + 'ibc/0E95F1FA29438C4DD69E2833B6DAE4D6F5525A6CC7851DDDA7CE7B77FD0A045E', + exponent: 0, + aliases: [ + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj' + ] + }, + { + denom: 'bitcosmos', + exponent: 6 + } + ], + base: 'ibc/0E95F1FA29438C4DD69E2833B6DAE4D6F5525A6CC7851DDDA7CE7B77FD0A045E', + name: 'Bitcosmos', + display: 'bitcosmos', + symbol: 'BTC', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bitcosmos.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'What the Fuck', + denom_units: [ + { + denom: + 'ibc/3CAFE3329BA40D5B200801D5F894CF3DAE422E59C14D28681383889BC27E8A74', + exponent: 0, + aliases: [ + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf' + ] + }, + { + denom: 'wtf', + exponent: 6 + } + ], + base: 'ibc/3CAFE3329BA40D5B200801D5F894CF3DAE422E59C14D28681383889BC27E8A74', + name: 'wtf', + display: 'wtf', + symbol: 'WTF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/WTF.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1551', + base_denom: + 'neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf', + chain_name: 'neutron' + }, + chain: { + channel_id: 'channel-144' + } + } + ] + }, + { + description: 'NLS on Neutron', + denom_units: [ + { + denom: + 'ibc/52828B6200432F36247CD19D757BA286A9E463BB1B613C6EC91E1E16D46C2F39', + exponent: 0, + aliases: [ + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972' + ] + }, + { + denom: 'nls', + exponent: 6 } ], + type_asset: 'ics20', + base: 'ibc/52828B6200432F36247CD19D757BA286A9E463BB1B613C6EC91E1E16D46C2F39', + name: 'Nolus NLS', + display: 'nls', + symbol: 'NLS', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE', - chain_name: 'migaloo' + 'ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'nolus', + base_denom: 'unls' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg' + } }, { - description: 'boneWHALE', + description: 'A Mechanical Canine', denom_units: [ { denom: - 'ibc/0218191FB58C108D9D211DC604C2FD717097ECD3C49D04218BF0C933B937F8B2', + 'ibc/56A12FFCE99B3EF8667DDDFA83B8E22BB059C939F292F3113197F687DCA82092', exponent: 0, aliases: [ - 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale' + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard' ] }, { - denom: 'boneWHALE', + denom: 'goddard', exponent: 6 } ], - base: 'ibc/0218191FB58C108D9D211DC604C2FD717097ECD3C49D04218BF0C933B937F8B2', - name: 'boneWHALE', - display: 'boneWHALE', - symbol: 'bWHALE', + base: 'ibc/56A12FFCE99B3EF8667DDDFA83B8E22BB059C939F292F3113197F687DCA82092', + name: 'Goddard', + display: 'goddard', + symbol: 'GODRD', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale', - chain_name: 'migaloo' + 'factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] }, { - description: 'FABLE', + description: 'The deflationary utility token of the Apollo DAO project', denom_units: [ { denom: - 'ibc/AF797E3E937316B22EBCCE597DF4E5627C778BF40BB3FD8C11DC711E315FABB9', + 'ibc/B570F4C320FEDD3195DE1AE9404E6008D62EC3D3184CCE1ACAF97771C37878EC', exponent: 0, aliases: [ - 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable' + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO' ] }, { - denom: 'fable', + denom: 'apollo', exponent: 6 } ], - base: 'ibc/AF797E3E937316B22EBCCE597DF4E5627C778BF40BB3FD8C11DC711E315FABB9', - name: 'FABLE', - display: 'fable', - symbol: 'FABLE', + base: 'ibc/B570F4C320FEDD3195DE1AE9404E6008D62EC3D3184CCE1ACAF97771C37878EC', + name: 'Apollo DAO', + display: 'apollo', + symbol: 'APOLLO', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable', - chain_name: 'migaloo' + 'factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] }, { - description: 'boneLUNA are autocompounding LUNA tokens', + description: 'NEWTROLL', denom_units: [ { denom: - 'ibc/1F0C040BB32C6CC3ADA10C1C498F246B9CAC4999767397D4215324D26FEEB964', + 'ibc/19BC221A7F9A3319EC17A44EF0D74B9DE60F0596353E378CAA3D17A281BD7CE8', exponent: 0, aliases: [ - 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708' + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll' ] }, { - denom: 'bluna', + denom: 'newtroll', exponent: 6 } ], - base: 'ibc/1F0C040BB32C6CC3ADA10C1C498F246B9CAC4999767397D4215324D26FEEB964', - address: - 'cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml', - type_asset: 'ics20', - name: 'boneLuna', - display: 'bluna', - symbol: 'bLUNA', + base: 'ibc/19BC221A7F9A3319EC17A44EF0D74B9DE60F0596353E378CAA3D17A281BD7CE8', + name: 'Newtroll', + display: 'newtroll', + symbol: 'NTRL', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg' + } + ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708', - chain_name: 'migaloo' + 'factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } - ], - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png' - } ] }, { - description: 'RAC', + description: 'Retro Game', denom_units: [ { denom: - 'ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115', + 'ibc/8C3F04846BA4766F33E4D6EDB13BC36FBA81577ADF130E5F9C6C7A04554F417A', exponent: 0, aliases: [ - 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac' + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro' ] }, { - denom: 'RAC', + denom: 'retro', exponent: 6 } ], - base: 'ibc/EE971CC8B7C20A796B40EB9AB8C6FF73AAF834302088D934A953CC2F70D1A115', - name: 'RAC', - display: 'RAC', - symbol: 'RAC', + base: 'ibc/8C3F04846BA4766F33E4D6EDB13BC36FBA81577ADF130E5F9C6C7A04554F417A', + name: 'Retro', + display: 'retro', + symbol: 'RETRO', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac', - chain_name: 'migaloo' + 'factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] }, { - description: 'ASH', + description: 'THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON', denom_units: [ { denom: - 'ibc/07D49BFFE3E9C4017DA6BD604B728EE024F4BF954AC6D36ECCF73FABF33BFE80', + 'ibc/250EC6CC090C8E3336DEEE896E9C5F99231766BF255AC9C9729916B74DF5C745', exponent: 0, aliases: [ - 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash' + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD' ] }, { - denom: 'ASH', + denom: 'goddard', exponent: 6 } ], - base: 'ibc/07D49BFFE3E9C4017DA6BD604B728EE024F4BF954AC6D36ECCF73FABF33BFE80', - name: 'ASH', - display: 'ASH', - symbol: 'ASH', + base: 'ibc/250EC6CC090C8E3336DEEE896E9C5F99231766BF255AC9C9729916B74DF5C745', + name: 'Goddard', + display: 'goddard', + symbol: 'GODDARD', logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' }, images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash', - chain_name: 'migaloo' + 'factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] }, { - description: 'Tether USDt on Migaloo', + description: 'The first memecoin on osmosis.', denom_units: [ { denom: - 'ibc/DF734ECA6BA33E488C6707F1CE27CAA77BDBDC794C457D04CA4F774E0D66FC1C', + 'ibc/D39DDD76CD7726D05DEE57C66D2E862A18E82372C10C3B40DD1F081ACA02DDBA', exponent: 0, aliases: [ - 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737' + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958' ] }, { - denom: 'usdt', + denom: 'WOSMO', exponent: 6 } ], type_asset: 'ics20', - base: 'ibc/DF734ECA6BA33E488C6707F1CE27CAA77BDBDC794C457D04CA4F774E0D66FC1C', - name: 'Tether USDt', - display: 'usdt', - symbol: 'USDt', + base: 'ibc/D39DDD76CD7726D05DEE57C66D2E862A18E82372C10C3B40DD1F081ACA02DDBA', + name: 'Wosmo', + display: 'WOSMO', + symbol: 'WOSMO', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737', - chain_name: 'migaloo' + 'ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ], images: [ { image_sync: { - chain_name: 'kava', - base_denom: 'erc20/tether/usdt' + chain_name: 'osmosis', + base_denom: + 'factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO' }, - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' } ], logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png' } }, { - description: 'GUPPY', + description: 'Astro BOY', denom_units: [ { denom: - 'ibc/432F836FDF2021B8004CA6E3DC700BAF8215BF3ECFA2D54FD4FC9F080422016E', + 'ibc/7490B6BBCEA4A7170C56A289CA6A3B53F66BD84D70A1349ECA1139FD424D3B05', exponent: 0, aliases: [ - 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy' + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv' ] }, { - denom: 'GUPPY', + denom: 'boy', exponent: 6 } ], - base: 'ibc/432F836FDF2021B8004CA6E3DC700BAF8215BF3ECFA2D54FD4FC9F080422016E', - name: 'GUPPY', - display: 'GUPPY', - symbol: 'GUPPY', + base: 'ibc/7490B6BBCEA4A7170C56A289CA6A3B53F66BD84D70A1349ECA1139FD424D3B05', + name: 'boy', + display: 'boy', + symbol: 'BOY', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/boy.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy', - chain_name: 'migaloo' + 'neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] }, { - description: 'OPHIR is a Cosmos Treasury DAO established on Migaloo.', + description: + "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", denom_units: [ { denom: - 'ibc/4566DB882C5219FC6A3760CC9B3B7E84E0C5605CE6E21660D3F072A950DCB15E', + 'ibc/1D6D5979E5552703D2E2C3F94718BF7054D1F7444E4673FE8420CE20E9B5CDC9', exponent: 0, aliases: [ - 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir' + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8' ] }, { - denom: 'OPHIR', + denom: 'BADKID', exponent: 6 } ], - base: 'ibc/4566DB882C5219FC6A3760CC9B3B7E84E0C5605CE6E21660D3F072A950DCB15E', - name: 'OPHIR', - display: 'OPHIR', - symbol: 'OPHIR', - logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' - }, - images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png' - } - ], + type_asset: 'ics20', + base: 'ibc/1D6D5979E5552703D2E2C3F94718BF7054D1F7444E4673FE8420CE20E9B5CDC9', + name: 'Badkid', + display: 'BADKID', + symbol: 'BADKID', traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir', - chain_name: 'migaloo' + 'ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } - ] + ], + images: [ + { + image_sync: { + chain_name: 'osmosis', + base_denom: + 'factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png' + } }, { - description: 'SHARK is the apex price prediction market within Cosmos.', + description: 'Reflections of cartel activity on Cosmos.', denom_units: [ { denom: - 'ibc/AF19217598DCB319F129EA68AFE34ECF5212902602553AF4B1F05CCCEE6007F3', + 'ibc/9FFD5BEDA5A36D49186905AE045CD82273B1F73826EE08DF2E47258124462882', exponent: 0, aliases: [ - 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel' ] }, { - denom: 'SHARK', + denom: 'cartel', exponent: 6 } ], - base: 'ibc/AF19217598DCB319F129EA68AFE34ECF5212902602553AF4B1F05CCCEE6007F3', - name: 'SHARK', - display: 'SHARK', - symbol: 'SHARK', + base: 'ibc/9FFD5BEDA5A36D49186905AE045CD82273B1F73826EE08DF2E47258124462882', + name: 'cartel', + display: 'cartel', + symbol: 'CARTEL', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' }, images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png' } ], traces: [ { type: 'ibc', counterparty: { - channel_id: 'channel-4', + channel_id: 'channel-1551', base_denom: - 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark', - chain_name: 'migaloo' + 'factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel', + chain_name: 'neutron' }, chain: { - channel_id: 'channel-57' + channel_id: 'channel-144' } } ] @@ -21679,6 +22960,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/986A75AB6EA51F9D0B86900C6B3DC9B7C0AADFCB9D2F9B093A494413D7EF2E34', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/986A75AB6EA51F9D0B86900C6B3DC9B7C0AADFCB9D2F9B093A494413D7EF2E34', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-40', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-37' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/sei.ts b/packages/assets/src/mainnet/sei.ts index 3c06286d4..f461cc50e 100644 --- a/packages/assets/src/mainnet/sei.ts +++ b/packages/assets/src/mainnet/sei.ts @@ -18007,6 +18007,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/B6475ADE6F6734FEE0C27F1232693A8FE137131F148E5A16164E536F84C14506', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/B6475ADE6F6734FEE0C27F1232693A8FE137131F148E5A16164E536F84C14506', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-149', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-11' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/sentinel.ts b/packages/assets/src/mainnet/sentinel.ts index 35867aed9..745821b10 100644 --- a/packages/assets/src/mainnet/sentinel.ts +++ b/packages/assets/src/mainnet/sentinel.ts @@ -288,6 +288,49 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Decentr', + denom_units: [ + { + denom: + 'ibc/B1C0DDB14F25279A2026BC8794E12B259F8BDA546A3C5132CCAEE4431CE36783', + exponent: 0, + aliases: ['udec'] + }, + { + denom: 'dec', + exponent: 6 + } + ], + base: 'ibc/B1C0DDB14F25279A2026BC8794E12B259F8BDA546A3C5132CCAEE4431CE36783', + name: 'Decentr', + display: 'dec', + symbol: 'DEC', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + }, + coingecko_id: 'decentr', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/decentr/images/dec.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: 'udec', + chain_name: 'decentr' + }, + chain: { + channel_id: 'channel-55' + } + } + ] + }, { description: 'The IRIS token is the native governance token for the IrisNet chain.', diff --git a/packages/assets/src/mainnet/sifchain.ts b/packages/assets/src/mainnet/sifchain.ts index 4eafff946..8c699c68f 100644 --- a/packages/assets/src/mainnet/sifchain.ts +++ b/packages/assets/src/mainnet/sifchain.ts @@ -596,6 +596,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/8434E01503DCC01AC99A75AB928C0AFD9417199263767980AB281219AF6F3866', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/8434E01503DCC01AC99A75AB928C0AFD9417199263767980AB281219AF6F3866', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-14' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/sommelier.ts b/packages/assets/src/mainnet/sommelier.ts index 37963f6df..09225f5fa 100644 --- a/packages/assets/src/mainnet/sommelier.ts +++ b/packages/assets/src/mainnet/sommelier.ts @@ -17536,6 +17536,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/B0C0908E79ADCB3F36C7128772B3515598086F8414AEA28ADE205950BD189462', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/B0C0908E79ADCB3F36C7128772B3515598086F8414AEA28ADE205950BD189462', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-150', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-71' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/stargaze.ts b/packages/assets/src/mainnet/stargaze.ts index 831ff2d97..db717ae26 100644 --- a/packages/assets/src/mainnet/stargaze.ts +++ b/packages/assets/src/mainnet/stargaze.ts @@ -2196,6 +2196,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/C90D6643E7A81663DDD073AADAE8EC3B40FA33F9B3C2B34928C01AABE9259BA6', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/C90D6643E7A81663DDD073AADAE8EC3B40FA33F9B3C2B34928C01AABE9259BA6', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-5' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -20508,6 +20556,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/7A6474A09D600A464C15C85FF46DD5B77705F34C13DC2D3D351F6CC16634ECBF', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/7A6474A09D600A464C15C85FF46DD5B77705F34C13DC2D3D351F6CC16634ECBF', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-106' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/stride.ts b/packages/assets/src/mainnet/stride.ts index 591270fd8..081a97c39 100644 --- a/packages/assets/src/mainnet/stride.ts +++ b/packages/assets/src/mainnet/stride.ts @@ -3874,6 +3874,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/08022062434F8A61348A4FB7FEA9672F00271DB1C65F93304C79E5DAD9F41CB9', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/08022062434F8A61348A4FB7FEA9672F00271DB1C65F93304C79E5DAD9F41CB9', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-24' + } + } + ] + }, { description: 'The native staking and governance token of the Kujira chain.', @@ -21063,6 +21111,50 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/C19E6B6212A5DCF8293D3CD440D5C8F9EA05E559834AB21E71A3BDBAB907994C', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/C19E6B6212A5DCF8293D3CD440D5C8F9EA05E559834AB21E71A3BDBAB907994C', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-149' + } + } + ] + }, { description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', diff --git a/packages/assets/src/mainnet/terra.ts b/packages/assets/src/mainnet/terra.ts index 1b9f2ff85..017f09112 100644 --- a/packages/assets/src/mainnet/terra.ts +++ b/packages/assets/src/mainnet/terra.ts @@ -438,6 +438,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/CA0D8F893C5458274671689EE9D085B3D7160D0D69C214CC05502047CE74420C', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/CA0D8F893C5458274671689EE9D085B3D7160D0D69C214CC05502047CE74420C', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-27', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-20' + } + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/assets/src/mainnet/terra2.ts b/packages/assets/src/mainnet/terra2.ts index 838bfc77b..5f2b36154 100644 --- a/packages/assets/src/mainnet/terra2.ts +++ b/packages/assets/src/mainnet/terra2.ts @@ -3775,6 +3775,54 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/86C68823F63A7B22D384826CACD890E35F5F26BB1CAD698CCC1CED67B6F3E1AA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-86', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-2' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -21959,6 +22007,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/176E0F07D3C698DB06CADDF8AD595D5A4564AEE98BC926C009F68969BBB9CAE4', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/176E0F07D3C698DB06CADDF8AD595D5A4564AEE98BC926C009F68969BBB9CAE4', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-52', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-46' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/mainnet/umee.ts b/packages/assets/src/mainnet/umee.ts index 1c835b872..f61cd1a30 100644 --- a/packages/assets/src/mainnet/umee.ts +++ b/packages/assets/src/mainnet/umee.ts @@ -18579,6 +18579,48 @@ const assets: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/DCD52DFFC682171D6D44CB0B5ED0833D086C1A8072F44830D551149169A31093', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/DCD52DFFC682171D6D44CB0B5ED0833D086C1A8072F44830D551149169A31093', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-29', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-34' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/assets/src/testnet/noistestnet.ts b/packages/assets/src/testnet/noistestnet.ts index 113d26c00..0b8667111 100644 --- a/packages/assets/src/testnet/noistestnet.ts +++ b/packages/assets/src/testnet/noistestnet.ts @@ -130,6 +130,59 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/8F4B563716B3ACCD722262A3C2834ECD903FC6BDC3320EA69816A68E35856C04', + exponent: 0, + aliases: [ + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k', + base: 'ibc/8F4B563716B3ACCD722262A3C2834ECD903FC6BDC3320EA69816A68E35856C04', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-877', + base_denom: + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + chain_name: 'junotestnet' + }, + chain: { + channel_id: 'channel-69' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] + }, { description: 'The native token of Neutron chain', denom_units: [ diff --git a/packages/assets/src/testnet/osmosistestnet.ts b/packages/assets/src/testnet/osmosistestnet.ts index 3ac774274..dee467377 100644 --- a/packages/assets/src/testnet/osmosistestnet.ts +++ b/packages/assets/src/testnet/osmosistestnet.ts @@ -946,6 +946,59 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/587F7C29FF31182B2508CC9BF63BB8807302CCBEDFFD9EB7144F17A358FBBB94', + exponent: 0, + aliases: [ + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k', + base: 'ibc/587F7C29FF31182B2508CC9BF63BB8807302CCBEDFFD9EB7144F17A358FBBB94', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-889', + base_denom: + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + chain_name: 'junotestnet' + }, + chain: { + channel_id: 'channel-5498' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] + }, { description: 'The native utility token of the Kaon testnet version of KYVE.', diff --git a/packages/assets/src/testnet/osmosistestnet4.ts b/packages/assets/src/testnet/osmosistestnet4.ts index c37dff115..50c802030 100644 --- a/packages/assets/src/testnet/osmosistestnet4.ts +++ b/packages/assets/src/testnet/osmosistestnet4.ts @@ -439,6 +439,59 @@ const assets: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/76F99708DB7035A8774A644BFFD9B9736272970A7DF17397C7E35F7DBBCFE802', + exponent: 0, + aliases: [ + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k', + base: 'ibc/76F99708DB7035A8774A644BFFD9B9736272970A7DF17397C7E35F7DBBCFE802', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-140', + base_denom: + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + chain_name: 'junotestnet' + }, + chain: { + channel_id: 'channel-3316' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] + }, { description: 'The native token of Mars Protocol', denom_units: [ diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index 4eddc79f5..360862e37 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit 4eddc79f5a993d7d2d8b76376b92e46a4809d458 +Subproject commit 360862e3710c2106cd89cabf2131455a5d579558 diff --git a/packages/chain-registry/src/mainnet/akash/chain.ts b/packages/chain-registry/src/mainnet/akash/chain.ts index 87075752b..a345a1f47 100644 --- a/packages/chain-registry/src/mainnet/akash/chain.ts +++ b/packages/chain-registry/src/mainnet/akash/chain.ts @@ -29,7 +29,9 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmos_sdk_version: 'v0.45.16' + }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg' diff --git a/packages/chain-registry/src/mainnet/assets.ts b/packages/chain-registry/src/mainnet/assets.ts index 09d13bfd7..2d90f479e 100644 --- a/packages/chain-registry/src/mainnet/assets.ts +++ b/packages/chain-registry/src/mainnet/assets.ts @@ -77,6 +77,7 @@ import * as _konstellation from './konstellation'; import * as _kujira from './kujira'; import * as _kyve from './kyve'; import * as _lambda from './lambda'; +import * as _lava from './lava'; import * as _likecoin from './likecoin'; import * as _logos from './logos'; import * as _loyal from './loyal'; @@ -229,6 +230,7 @@ const assets: AssetList[] = [ _kujira.assets, _kyve.assets, _lambda.assets, + _lava.assets, _likecoin.assets, _logos.assets, _loyal.assets, diff --git a/packages/chain-registry/src/mainnet/axelar/ibc.ts b/packages/chain-registry/src/mainnet/axelar/ibc.ts index 12620468f..093b10159 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc.ts @@ -746,6 +746,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-200', + connection_id: 'connection-181' + }, + chain_2: { + chain_name: 'nibiru', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts index 789992877..557d89839 100644 --- a/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/axelar/ibc_chain1.ts @@ -623,6 +623,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-200', + connection_id: 'connection-181' + }, + chain_2: { + chain_name: 'nibiru', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/chain4energy/chain.ts b/packages/chain-registry/src/mainnet/chain4energy/chain.ts index 47d4da824..e2832fd19 100644 --- a/packages/chain-registry/src/mainnet/chain4energy/chain.ts +++ b/packages/chain-registry/src/mainnet/chain4energy/chain.ts @@ -135,6 +135,10 @@ const info: Chain = { { address: 'https://rpc.c4e.validatus.com:443', provider: 'Validatus' + }, + { + address: 'http://rpc-m.c4e.apeironnodes.com:41001', + provider: 'Apeiron Nodes' } ], rest: [ diff --git a/packages/chain-registry/src/mainnet/chains.ts b/packages/chain-registry/src/mainnet/chains.ts index a1c525bec..71e727b7b 100644 --- a/packages/chain-registry/src/mainnet/chains.ts +++ b/packages/chain-registry/src/mainnet/chains.ts @@ -77,6 +77,7 @@ import * as _konstellation from './konstellation'; import * as _kujira from './kujira'; import * as _kyve from './kyve'; import * as _lambda from './lambda'; +import * as _lava from './lava'; import * as _likecoin from './likecoin'; import * as _logos from './logos'; import * as _loyal from './loyal'; @@ -230,6 +231,7 @@ const chains: Chain[] = [ _kujira.chain, _kyve.chain, _lambda.chain, + _lava.chain, _likecoin.chain, _logos.chain, _loyal.chain, diff --git a/packages/chain-registry/src/mainnet/cheqd/ibc.ts b/packages/chain-registry/src/mainnet/cheqd/ibc.ts index d7b594c14..9a3606aa4 100644 --- a/packages/chain-registry/src/mainnet/cheqd/ibc.ts +++ b/packages/chain-registry/src/mainnet/cheqd/ibc.ts @@ -63,6 +63,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cheqd', + client_id: '07-tendermint-85', + connection_id: 'connection-63' + }, + chain_2: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-196', + connection_id: 'connection-191' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-36', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + fee_version: 'ics29-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts index d7b594c14..9a3606aa4 100644 --- a/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/cheqd/ibc_chain1.ts @@ -63,6 +63,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cheqd', + client_id: '07-tendermint-85', + connection_id: 'connection-63' + }, + chain_2: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-196', + connection_id: 'connection-191' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-36', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + fee_version: 'ics29-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/chihuahua/chain.ts b/packages/chain-registry/src/mainnet/chihuahua/chain.ts index fbaf6f4e2..aff200146 100644 --- a/packages/chain-registry/src/mainnet/chihuahua/chain.ts +++ b/packages/chain-registry/src/mainnet/chihuahua/chain.ts @@ -49,6 +49,10 @@ const info: Chain = { address: 'https://rpc-chihuahua.ecostake.com', provider: 'ecostake' }, + { + address: 'https://chihua.rpc.m.stavr.tech', + provider: '🔥STAVR🔥' + }, { address: 'https://chihuahua-rpc.polkachu.com', provider: 'Polkachu' @@ -99,6 +103,10 @@ const info: Chain = { address: 'https://rest-chihuahua.ecostake.com', provider: 'ecostake' }, + { + address: 'https://chihua.api.m.stavr.tech', + provider: '🔥STAVR🔥' + }, { address: 'https://api-chihuahua-ia.cosmosia.notional.ventures', provider: 'Notional' @@ -149,6 +157,10 @@ const info: Chain = { address: 'chihuahua-grpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' }, + { + address: 'chihua.grpc.m.stavr.tech:108', + provider: '🔥STAVR🔥' + }, { address: 'grpc-chihuahua.cosmos-spaces.cloud:2290', provider: 'Cosmos Spaces' @@ -173,6 +185,11 @@ const info: Chain = { url: 'https://ping.pub/chihuahua', tx_page: 'https://ping.pub/chihuahua/tx/${txHash}' }, + { + kind: '🔥STAVR🔥', + url: 'https://explorer.stavr.tech/Chihua-Mainnet', + tx_page: 'https://explorer.stavr.tech/Chihua-Mainnet/tx/${txHash}' + }, { kind: 'mintscan', url: 'https://mintscan.io/chihuahua', diff --git a/packages/chain-registry/src/mainnet/cifer/ibc.ts b/packages/chain-registry/src/mainnet/cifer/ibc.ts new file mode 100644 index 000000000..3e1418a99 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cifer/ibc.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'cosmoshub', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/cifer/ibc_chain1.ts b/packages/chain-registry/src/mainnet/cifer/ibc_chain1.ts new file mode 100644 index 000000000..3e1418a99 --- /dev/null +++ b/packages/chain-registry/src/mainnet/cifer/ibc_chain1.ts @@ -0,0 +1,66 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'cosmoshub', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/cifer/index.ts b/packages/chain-registry/src/mainnet/cifer/index.ts index 40bf3856e..af8a2d557 100644 --- a/packages/chain-registry/src/mainnet/cifer/index.ts +++ b/packages/chain-registry/src/mainnet/cifer/index.ts @@ -1,5 +1,9 @@ import _assets from './assets'; import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; export const assets = _assets; export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/comdex/ibc.ts b/packages/chain-registry/src/mainnet/comdex/ibc.ts index 91901274f..88047a9e4 100644 --- a/packages/chain-registry/src/mainnet/comdex/ibc.ts +++ b/packages/chain-registry/src/mainnet/comdex/ibc.ts @@ -103,8 +103,8 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'kujira', - client_id: '07-tendermint-15', - connection_id: 'connection-20' + client_id: '07-tendermint-20', + connection_id: 'connection-15' }, channels: [ { diff --git a/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts b/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts index 26adcf85a..415bfa7bd 100644 --- a/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/comdex/ibc_chain1.ts @@ -72,8 +72,8 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'kujira', - client_id: '07-tendermint-15', - connection_id: 'connection-20' + client_id: '07-tendermint-20', + connection_id: 'connection-15' }, channels: [ { diff --git a/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts b/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts index 43302da9c..7305d8545 100644 --- a/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts +++ b/packages/chain-registry/src/mainnet/cosmoshub/ibc.ts @@ -307,6 +307,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'cosmoshub', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/decentr/ibc.ts b/packages/chain-registry/src/mainnet/decentr/ibc.ts index d0282e9bf..47e884ed0 100644 --- a/packages/chain-registry/src/mainnet/decentr/ibc.ts +++ b/packages/chain-registry/src/mainnet/decentr/ibc.ts @@ -62,6 +62,34 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'decentr', + client_id: '07-tendermint-13', + connection_id: 'connection-5' + }, + chain_2: { + chain_name: 'sentinel', + client_id: '07-tendermint-103', + connection_id: 'connection-81' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-55', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts b/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts index 32b6b73b4..49dc5e0ac 100644 --- a/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/decentr/ibc_chain1.ts @@ -32,6 +32,34 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'decentr', + client_id: '07-tendermint-13', + connection_id: 'connection-5' + }, + chain_2: { + chain_name: 'sentinel', + client_id: '07-tendermint-103', + connection_id: 'connection-81' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-55', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/dymension/chain.ts b/packages/chain-registry/src/mainnet/dymension/chain.ts index 5c91d13ac..2217f9636 100644 --- a/packages/chain-registry/src/mainnet/dymension/chain.ts +++ b/packages/chain-registry/src/mainnet/dymension/chain.ts @@ -145,6 +145,10 @@ const info: Chain = { { address: 'https://rpc.dymension.node75.org', provider: 'Pro-Nodes75' + }, + { + address: 'https://rpc.dymension.bronbro.io:443', + provider: 'Bro_n_Bro' } ], rest: [ @@ -251,6 +255,10 @@ const info: Chain = { { address: 'https://api.dymension.node75.org', provider: 'Pro-Nodes75' + }, + { + address: 'https://lcd.dymension.bronbro.io:443', + provider: 'Bro_n_Bro' } ], grpc: [ @@ -329,6 +337,10 @@ const info: Chain = { { address: 'https://grpc.dymension.posthuman.digital', provider: 'posthuman' + }, + { + address: 'https://grpc.dymension.bronbro.io:443', + provider: 'Bro_n_Bro' } ], 'evm-http-jsonrpc': [ diff --git a/packages/chain-registry/src/mainnet/empowerchain/chain.ts b/packages/chain-registry/src/mainnet/empowerchain/chain.ts index ad65f6ce2..7b0262701 100644 --- a/packages/chain-registry/src/mainnet/empowerchain/chain.ts +++ b/packages/chain-registry/src/mainnet/empowerchain/chain.ts @@ -29,7 +29,10 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmwasm_enabled: true, + cosmwasm_version: '0.45' + }, apis: { rpc: [ { diff --git a/packages/chain-registry/src/mainnet/humans/assets.ts b/packages/chain-registry/src/mainnet/humans/assets.ts index 61ef1cdc2..5bca2631d 100644 --- a/packages/chain-registry/src/mainnet/humans/assets.ts +++ b/packages/chain-registry/src/mainnet/humans/assets.ts @@ -20,18 +20,11 @@ const info: AssetList = { display: 'heart', symbol: 'HEART', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg' }, coingecko_id: 'humans-ai', images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg', - theme: { - dark_mode: false - } - }, { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg', diff --git a/packages/chain-registry/src/mainnet/humans/chain.ts b/packages/chain-registry/src/mainnet/humans/chain.ts index 4c1d34cac..44c30b03c 100644 --- a/packages/chain-registry/src/mainnet/humans/chain.ts +++ b/packages/chain-registry/src/mainnet/humans/chain.ts @@ -35,8 +35,8 @@ const info: Chain = { cosmos_sdk_version: '0.46.11' }, logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg' }, apis: { rpc: [ @@ -240,8 +240,8 @@ const info: Chain = { ], images: [ { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg' } ] }; diff --git a/packages/chain-registry/src/mainnet/ibc.ts b/packages/chain-registry/src/mainnet/ibc.ts index 4212a6796..ad292ea1c 100644 --- a/packages/chain-registry/src/mainnet/ibc.ts +++ b/packages/chain-registry/src/mainnet/ibc.ts @@ -24,6 +24,7 @@ import * as _cerberus from './cerberus'; import * as _chain4energy from './chain4energy'; import * as _cheqd from './cheqd'; import * as _chihuahua from './chihuahua'; +import * as _cifer from './cifer'; import * as _comdex from './comdex'; import * as _composable from './composable'; import * as _coreum from './coreum'; @@ -74,6 +75,7 @@ import * as _meme from './meme'; import * as _microtick from './microtick'; import * as _migaloo from './migaloo'; import * as _neutron from './neutron'; +import * as _nibiru from './nibiru'; import * as _noble from './noble'; import * as _nois from './nois'; import * as _nolus from './nolus'; @@ -123,6 +125,7 @@ const ibc: IBCInfo[] = [ ..._chain4energy.ibc_chain1, ..._cheqd.ibc_chain1, ..._chihuahua.ibc_chain1, + ..._cifer.ibc_chain1, ..._comdex.ibc_chain1, ..._composable.ibc_chain1, ..._coreum.ibc_chain1, @@ -173,6 +176,7 @@ const ibc: IBCInfo[] = [ ..._microtick.ibc_chain1, ..._migaloo.ibc_chain1, ..._neutron.ibc_chain1, + ..._nibiru.ibc_chain1, ..._noble.ibc_chain1, ..._nois.ibc_chain1, ..._nolus.ibc_chain1, diff --git a/packages/chain-registry/src/mainnet/index.ts b/packages/chain-registry/src/mainnet/index.ts index 99bb847c2..8589b2eb4 100644 --- a/packages/chain-registry/src/mainnet/index.ts +++ b/packages/chain-registry/src/mainnet/index.ts @@ -75,6 +75,7 @@ export * as konstellation from './konstellation'; export * as kujira from './kujira'; export * as kyve from './kyve'; export * as lambda from './lambda'; +export * as lava from './lava'; export * as likecoin from './likecoin'; export * as logos from './logos'; export * as loyal from './loyal'; diff --git a/packages/chain-registry/src/mainnet/juno/assets.ts b/packages/chain-registry/src/mainnet/juno/assets.ts index ef7273470..4db0f4f1c 100644 --- a/packages/chain-registry/src/mainnet/juno/assets.ts +++ b/packages/chain-registry/src/mainnet/juno/assets.ts @@ -2174,6 +2174,37 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' } ] + }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + exponent: 0 + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/kujira/ibc.ts b/packages/chain-registry/src/mainnet/kujira/ibc.ts index 1b075d4c4..235e21ed9 100644 --- a/packages/chain-registry/src/mainnet/kujira/ibc.ts +++ b/packages/chain-registry/src/mainnet/kujira/ibc.ts @@ -257,8 +257,8 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'kujira', - client_id: '07-tendermint-15', - connection_id: 'connection-20' + client_id: '07-tendermint-20', + connection_id: 'connection-15' }, channels: [ { diff --git a/packages/chain-registry/src/mainnet/lava/assets.ts b/packages/chain-registry/src/mainnet/lava/assets.ts new file mode 100644 index 000000000..202a66d4a --- /dev/null +++ b/packages/chain-registry/src/mainnet/lava/assets.ts @@ -0,0 +1,48 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../assetlist.schema.json', + chain_name: 'lava', + assets: [ + { + description: 'The native token of Lava', + denom_units: [ + { + denom: 'ulava', + exponent: 0 + }, + { + denom: 'lava', + exponent: 6 + } + ], + type_asset: 'sdk.coin', + base: 'ulava', + name: 'Lava', + display: 'lava', + symbol: 'LAVA', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png' + } + ], + keywords: [ + 'modular', + 'data', + 'data access', + 'rpc', + 'staking', + 'dual staking', + 'indexing', + 'incentivized public rpc' + ], + socials: { + webiste: 'https://lavanet.xyz', + twitter: 'https://twitter.com/lavanetxyz' + } + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/lava/chain.ts b/packages/chain-registry/src/mainnet/lava/chain.ts new file mode 100644 index 000000000..2163de620 --- /dev/null +++ b/packages/chain-registry/src/mainnet/lava/chain.ts @@ -0,0 +1,95 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../chain.schema.json', + chain_name: 'lava', + status: 'upcoming', + network_type: 'mainnet', + website: 'https://lavanet.xyz/', + update_link: + 'https://raw.githubusercontent.com/lavanet/lava/main/chain.schema.json', + pretty_name: 'Lava', + chain_id: 'lava-mainnet-1', + bech32_prefix: 'lava@', + daemon_name: 'lavad', + node_home: '$HOME/.lava', + key_algos: ['secp256k1'], + slip44: 118, + fees: { + fee_tokens: [ + { + denom: 'ulava', + fixed_min_gas_price: 1e-9, + low_gas_price: 1e-9, + average_gas_price: 0.00005, + high_gas_price: 0.0001 + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'ulava' + } + ], + lock_duration: { + time: '1814400s' + } + }, + codebase: { + cosmos_sdk_version: 'github.com/lavanet/cosmos-sdk@v0.47.x-lava', + cosmwasm_enabled: false + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png', + theme: { + primary_color_hex: '#FF3900' + }, + layout: 'logo', + text_position: 'right' + }, + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava.png', + layout: 'logomark' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lava/images/lava-chain-logo.png' + }, + description: + 'Lava (LAVA) is the data access layer of the modular stack. developers and ecosystems permissionlessly add services to be served or accessed through lava. featuring a fully decentralized open source sdk integrable in frontends and a battle tested fully scalable open source server kit and can be used locally or through managed endpoints. Lava features rpc data access, indexing services, debug apis, archive access and more. Service providers can join the network, earn rewards either in the native token of the chain via token bought subscriptions on chain or through any ibc transferred token via incentive pools created and funded by ecosystems and DAOs. Developers can use the abstraction and go multi chain in seconds, not needing to choose what tools to use, having the access aggregated for them. Build whatever, wherever.', + apis: { + rpc: [ + { + address: 'https://lava-rpc.w3coins.io:443', + provider: 'w3coins' + } + ], + rest: [ + { + address: ' https://lava-api.w3coins.io:443', + provider: 'w3coins' + } + ] + }, + explorers: [ + { + kind: 'w3coins', + url: 'https://lava-explorer.w3coins.io/Lava', + tx_page: 'https://lava-explorer.w3coins.io/Lava/tx/${txHash}', + account_page: + 'https://lava-explorer.w3coins.io/Lava/account/${accountAddress}' + } + ], + keywords: [ + 'modular', + 'data', + 'data access', + 'rpc', + 'staking', + 'dual staking', + 'indexing', + 'incentivized public rpc' + ] +}; +export default info; diff --git a/packages/chain-registry/src/mainnet/lava/index.ts b/packages/chain-registry/src/mainnet/lava/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/mainnet/lava/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/mainnet/lumnetwork/chain.ts b/packages/chain-registry/src/mainnet/lumnetwork/chain.ts index 64cc9d1dc..678853b9f 100644 --- a/packages/chain-registry/src/mainnet/lumnetwork/chain.ts +++ b/packages/chain-registry/src/mainnet/lumnetwork/chain.ts @@ -40,7 +40,7 @@ const info: Chain = { apis: { rpc: [ { - address: 'https://node0.mainnet.lum.network/rpc', + address: 'https://rpc.node0.mainnet.lum.network', provider: 'Lum Foundation' }, { @@ -66,7 +66,7 @@ const info: Chain = { ], rest: [ { - address: 'https://node0.mainnet.lum.network/rest', + address: 'https://rest.node0.mainnet.lum.network', provider: 'Lum Foundation' }, { diff --git a/packages/chain-registry/src/mainnet/neutron/ibc.ts b/packages/chain-registry/src/mainnet/neutron/ibc.ts index 41f30b59a..df971b412 100644 --- a/packages/chain-registry/src/mainnet/neutron/ibc.ts +++ b/packages/chain-registry/src/mainnet/neutron/ibc.ts @@ -579,23 +579,23 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'neutron', - client_id: '07-tendermint-75', - connection_id: 'connection-54' + client_id: '07-tendermint-85', + connection_id: 'connection-63' }, chain_2: { chain_name: 'secretnetwork', - client_id: '07-tendermint-19', - connection_id: 'connection-139' + client_id: '07-tendermint-199', + connection_id: 'connection-192' }, channels: [ { chain_1: { - channel_id: 'channel-57', + channel_id: 'channel-1551', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-104', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + channel_id: 'channel-144', + port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', diff --git a/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts index 99abccf40..f055429c6 100644 --- a/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts @@ -190,23 +190,23 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'neutron', - client_id: '07-tendermint-75', - connection_id: 'connection-54' + client_id: '07-tendermint-85', + connection_id: 'connection-63' }, chain_2: { chain_name: 'secretnetwork', - client_id: '07-tendermint-19', - connection_id: 'connection-139' + client_id: '07-tendermint-199', + connection_id: 'connection-192' }, channels: [ { chain_1: { - channel_id: 'channel-57', + channel_id: 'channel-1551', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-104', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + channel_id: 'channel-144', + port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', diff --git a/packages/chain-registry/src/mainnet/nibiru/assets.ts b/packages/chain-registry/src/mainnet/nibiru/assets.ts index c90537640..b6ee2908b 100644 --- a/packages/chain-registry/src/mainnet/nibiru/assets.ts +++ b/packages/chain-registry/src/mainnet/nibiru/assets.ts @@ -23,7 +23,7 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' }, - coingecko_id: 'nibi', + coingecko_id: 'nibiru', images: [ { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', diff --git a/packages/chain-registry/src/mainnet/nibiru/ibc.ts b/packages/chain-registry/src/mainnet/nibiru/ibc.ts new file mode 100644 index 000000000..827a1ca33 --- /dev/null +++ b/packages/chain-registry/src/mainnet/nibiru/ibc.ts @@ -0,0 +1,94 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'axelar', + client_id: '07-tendermint-200', + connection_id: 'connection-181' + }, + chain_2: { + chain_name: 'nibiru', + client_id: '07-tendermint-1', + connection_id: 'connection-1' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-1', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'noble', + client_id: '07-tendermint-86', + connection_id: 'connection-86' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-67', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3104', + connection_id: 'connection-2580' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-21113', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/nibiru/ibc_chain1.ts b/packages/chain-registry/src/mainnet/nibiru/ibc_chain1.ts new file mode 100644 index 000000000..cdb8316fd --- /dev/null +++ b/packages/chain-registry/src/mainnet/nibiru/ibc_chain1.ts @@ -0,0 +1,64 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'noble', + client_id: '07-tendermint-86', + connection_id: 'connection-86' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-67', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3104', + connection_id: 'connection-2580' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-21113', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/mainnet/nibiru/index.ts b/packages/chain-registry/src/mainnet/nibiru/index.ts index 40bf3856e..af8a2d557 100644 --- a/packages/chain-registry/src/mainnet/nibiru/index.ts +++ b/packages/chain-registry/src/mainnet/nibiru/index.ts @@ -1,5 +1,9 @@ import _assets from './assets'; import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; export const assets = _assets; export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/mainnet/noble/ibc.ts b/packages/chain-registry/src/mainnet/noble/ibc.ts index ecdc72b27..9985ef444 100644 --- a/packages/chain-registry/src/mainnet/noble/ibc.ts +++ b/packages/chain-registry/src/mainnet/noble/ibc.ts @@ -527,6 +527,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-2', + connection_id: 'connection-2' + }, + chain_2: { + chain_name: 'noble', + client_id: '07-tendermint-86', + connection_id: 'connection-86' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-2', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-67', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/odin/ibc.ts b/packages/chain-registry/src/mainnet/odin/ibc.ts index 3fc59b128..9e7d854b7 100644 --- a/packages/chain-registry/src/mainnet/odin/ibc.ts +++ b/packages/chain-registry/src/mainnet/odin/ibc.ts @@ -103,7 +103,7 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'osmosis', - client_id: '07-tendermint-3088', + client_id: '07-tendermint-2007', connection_id: 'connection-1551' }, channels: [ diff --git a/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts b/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts index 383fd462b..3ba93ce27 100644 --- a/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/odin/ibc_chain1.ts @@ -9,7 +9,7 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'osmosis', - client_id: '07-tendermint-3088', + client_id: '07-tendermint-2007', connection_id: 'connection-1551' }, channels: [ diff --git a/packages/chain-registry/src/mainnet/omniflixhub/chain.ts b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts index 1bab5a000..71f2b4afc 100644 --- a/packages/chain-registry/src/mainnet/omniflixhub/chain.ts +++ b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts @@ -12,7 +12,7 @@ const info: Chain = { bech32_prefix: 'omniflix', slip44: 118, codebase: { - cosmos_sdk_version: 'v0.47.9', + cosmos_sdk_version: 'v0.47.10', cosmwasm_version: 'v0.45.0' }, logo_URIs: { diff --git a/packages/chain-registry/src/mainnet/osmosis/chain.ts b/packages/chain-registry/src/mainnet/osmosis/chain.ts index 4129cd8d4..7196695cb 100644 --- a/packages/chain-registry/src/mainnet/osmosis/chain.ts +++ b/packages/chain-registry/src/mainnet/osmosis/chain.ts @@ -165,6 +165,10 @@ const info: Chain = { { address: 'https://rpc.cros-nest.com/osmosis', provider: 'Crosnest' + }, + { + address: 'https://rpc-osmo.kewrnode.com', + provider: 'Kewr Node' } ], rest: [ @@ -255,6 +259,10 @@ const info: Chain = { { address: 'https://rest.cros-nest.com/osmosis', provider: 'Crosnest' + }, + { + address: 'https://rest-osmo.kewrnode.com', + provider: 'Kewr Node' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc.ts b/packages/chain-registry/src/mainnet/osmosis/ibc.ts index 5bc38e8e3..87330f3bb 100644 --- a/packages/chain-registry/src/mainnet/osmosis/ibc.ts +++ b/packages/chain-registry/src/mainnet/osmosis/ibc.ts @@ -747,6 +747,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cifer', + client_id: '07-tendermint-1', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-0', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -2342,6 +2373,36 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'nibiru', + client_id: '07-tendermint-0', + connection_id: 'connection-0' + }, + chain_2: { + chain_name: 'osmosis', + client_id: '07-tendermint-3104', + connection_id: 'connection-2580' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-139', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-21113', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -2528,7 +2589,7 @@ const info: IBCInfo[] = [ }, chain_2: { chain_name: 'osmosis', - client_id: '07-tendermint-3088', + client_id: '07-tendermint-2007', connection_id: 'connection-1551' }, channels: [ @@ -3683,6 +3744,24 @@ const info: IBCInfo[] = [ preferred: true, dex: 'osmosis' } + }, + { + chain_1: { + channel_id: 'channel-21671', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-392', + port_id: + 'wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } } ] }, diff --git a/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts index 8c9d22521..b1e3b6e38 100644 --- a/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/osmosis/ibc_chain1.ts @@ -1037,6 +1037,24 @@ const info: IBCInfo[] = [ preferred: true, dex: 'osmosis' } + }, + { + chain_1: { + channel_id: 'channel-21671', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-392', + port_id: + 'wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } } ] }, diff --git a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts index 18f4abfa3..fd424d661 100644 --- a/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts +++ b/packages/chain-registry/src/mainnet/secretnetwork/ibc.ts @@ -208,6 +208,38 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cheqd', + client_id: '07-tendermint-85', + connection_id: 'connection-63' + }, + chain_2: { + chain_name: 'secretnetwork', + client_id: '07-tendermint-196', + connection_id: 'connection-191' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-36', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-141', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + fee_version: 'ics29-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { @@ -736,23 +768,23 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'neutron', - client_id: '07-tendermint-75', - connection_id: 'connection-54' + client_id: '07-tendermint-85', + connection_id: 'connection-63' }, chain_2: { chain_name: 'secretnetwork', - client_id: '07-tendermint-19', - connection_id: 'connection-139' + client_id: '07-tendermint-199', + connection_id: 'connection-192' }, channels: [ { chain_1: { - channel_id: 'channel-57', + channel_id: 'channel-1551', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-104', - port_id: 'wasm.secret1tqmms5awftpuhalcv5h5mg76fa0tkdz4jv9ex4' + channel_id: 'channel-144', + port_id: 'transfer' }, ordering: 'unordered', version: 'ics20-1', diff --git a/packages/chain-registry/src/mainnet/sei/assets.ts b/packages/chain-registry/src/mainnet/sei/assets.ts index c56acb391..cb0411f0b 100644 --- a/packages/chain-registry/src/mainnet/sei/assets.ts +++ b/packages/chain-registry/src/mainnet/sei/assets.ts @@ -185,6 +185,33 @@ const info: AssetList = { logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } + }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + exponent: 0 + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/sentinel/chain.ts b/packages/chain-registry/src/mainnet/sentinel/chain.ts index 75830e357..f3e1e0769 100644 --- a/packages/chain-registry/src/mainnet/sentinel/chain.ts +++ b/packages/chain-registry/src/mainnet/sentinel/chain.ts @@ -85,6 +85,10 @@ const info: Chain = { { address: 'https://public.stakewolle.com/cosmos/sentinel/rpc', provider: 'Stakewolle' + }, + { + address: 'http://163.197.193.2:26657', + provider: 'Tesla Full Node' } ], rest: [ @@ -127,6 +131,10 @@ const info: Chain = { { address: 'https://public.stakewolle.com/cosmos/sentinel/rest', provider: 'Stakewolle' + }, + { + address: 'http://163.197.193.2:26657', + provider: 'Tesla Full Node' } ], grpc: [ diff --git a/packages/chain-registry/src/mainnet/sentinel/ibc.ts b/packages/chain-registry/src/mainnet/sentinel/ibc.ts index 7b2be6e7c..0d6c14c98 100644 --- a/packages/chain-registry/src/mainnet/sentinel/ibc.ts +++ b/packages/chain-registry/src/mainnet/sentinel/ibc.ts @@ -84,6 +84,34 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'decentr', + client_id: '07-tendermint-13', + connection_id: 'connection-5' + }, + chain_2: { + chain_name: 'sentinel', + client_id: '07-tendermint-103', + connection_id: 'connection-81' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-4', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-55', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: {} + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/stride/assets.ts b/packages/chain-registry/src/mainnet/stride/assets.ts index 965757dfc..095927d4d 100644 --- a/packages/chain-registry/src/mainnet/stride/assets.ts +++ b/packages/chain-registry/src/mainnet/stride/assets.ts @@ -367,6 +367,43 @@ const info: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: 'stadym', + exponent: 0 + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'stadym', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'liquid-stake', + counterparty: { + chain_name: 'dymension', + base_denom: 'adym' + }, + provider: 'Stride' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/chain-registry/src/mainnet/stride/chain.ts b/packages/chain-registry/src/mainnet/stride/chain.ts index b84697090..fedf4a7db 100644 --- a/packages/chain-registry/src/mainnet/stride/chain.ts +++ b/packages/chain-registry/src/mainnet/stride/chain.ts @@ -93,9 +93,16 @@ const info: Chain = { }, { denom: 'stadydx', - fixed_min_gas_price: 12500000000, - low_gas_price: 12500000000, - average_gas_price: 12500000000, + fixed_min_gas_price: 15000000000, + low_gas_price: 15000000000, + average_gas_price: 15000000000, + high_gas_price: 20000000000 + }, + { + denom: 'stadym', + fixed_min_gas_price: 15000000000, + low_gas_price: 15000000000, + average_gas_price: 15000000000, high_gas_price: 20000000000 } ] diff --git a/packages/chain-registry/src/mainnet/terra2/ibc.ts b/packages/chain-registry/src/mainnet/terra2/ibc.ts index 6920aad7a..07d342f1b 100644 --- a/packages/chain-registry/src/mainnet/terra2/ibc.ts +++ b/packages/chain-registry/src/mainnet/terra2/ibc.ts @@ -834,6 +834,24 @@ const info: IBCInfo[] = [ preferred: true, dex: 'osmosis' } + }, + { + chain_1: { + channel_id: 'channel-21671', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-392', + port_id: + 'wasm.terra1jhfjnm39y3nn9l4520mdn4k5mw23nz0674c4gsvyrcr90z9tqcvst22fce' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true, + dex: 'osmosis' + } } ] }, diff --git a/packages/chain-registry/src/testnet/assets.ts b/packages/chain-registry/src/testnet/assets.ts index c116234d7..33bec6450 100644 --- a/packages/chain-registry/src/testnet/assets.ts +++ b/packages/chain-registry/src/testnet/assets.ts @@ -7,6 +7,7 @@ import * as _artelatestnet from './artelatestnet'; import * as _auratestnet from './auratestnet'; import * as _axelartestnet from './axelartestnet'; import * as _babylontestnet from './babylontestnet'; +import * as _babylontestnet1 from './babylontestnet1'; import * as _bitcannadevnet from './bitcannadevnet'; import * as _cascadiatestnet from './cascadiatestnet'; import * as _celestiatestnet from './celestiatestnet'; @@ -101,6 +102,7 @@ const assets: AssetList[] = [ _auratestnet.assets, _axelartestnet.assets, _babylontestnet.assets, + _babylontestnet1.assets, _bitcannadevnet.assets, _cascadiatestnet.assets, _celestiatestnet.assets, diff --git a/packages/chain-registry/src/testnet/babylontestnet/chain.ts b/packages/chain-registry/src/testnet/babylontestnet/chain.ts index 70d2c4f3c..ef0a3c7b0 100644 --- a/packages/chain-registry/src/testnet/babylontestnet/chain.ts +++ b/packages/chain-registry/src/testnet/babylontestnet/chain.ts @@ -5,8 +5,9 @@ const info: Chain = { status: 'live', website: 'https://www.babylonchain.io', network_type: 'testnet', - pretty_name: 'Babylon Testnet', - chain_id: 'bbn-test1', + pretty_name: 'Babylon Testnet 3', + chain_id: 'bbn-test3', + pre_fork_chain_name: 'babylontestnet1', bech32_prefix: 'bbn', daemon_name: 'babylond', node_home: '$HOME/.babylond', @@ -27,18 +28,18 @@ const info: Chain = { }, codebase: {}, logo_URIs: { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg' }, apis: { rpc: [ { - address: 'rpc.testnet.babylonchain.io:26657', + address: 'rpc.testnet3.babylonchain.io:443', provider: 'Babylon foundation' } ], rest: [ { - address: 'rpc.testnet.babylonchain.io:1317', + address: 'lcd.testnet3.babylonchain.io:443', provider: 'Babylon foundation' } ], @@ -51,13 +52,13 @@ const info: Chain = { }, { kind: 'explorers.guru', - url: 'https://babylon.explorers.guru', - tx_page: 'https://babylon.explorers.guru/transaction/${txHash}' + url: 'https://testnet.babylon.explorers.guru', + tx_page: 'https://testnet.babylon.explorers.guru/transaction/${txHash}' } ], images: [ { - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg' } ], slip44: 118 diff --git a/packages/chain-registry/src/testnet/babylontestnet1/assets.ts b/packages/chain-registry/src/testnet/babylontestnet1/assets.ts new file mode 100644 index 000000000..046995765 --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet1/assets.ts @@ -0,0 +1,33 @@ +import { AssetList } from '@chain-registry/types'; +const info: AssetList = { + $schema: '../../assetlist.schema.json', + chain_name: 'babylontestnet1', + assets: [ + { + description: 'The native staking token of Babylon.', + denom_units: [ + { + denom: 'ubbn', + exponent: 0 + }, + { + denom: 'bbn', + exponent: 6 + } + ], + base: 'uatom', + name: 'Babylon BBN', + display: 'bbn', + symbol: 'BBN', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/babylon/images/logo.svg' + } + ] + } + ] +}; +export default info; diff --git a/packages/chain-registry/src/testnet/babylontestnet1/chain.ts b/packages/chain-registry/src/testnet/babylontestnet1/chain.ts new file mode 100644 index 000000000..d285ff2c0 --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet1/chain.ts @@ -0,0 +1,65 @@ +import { Chain } from '@chain-registry/types'; +const info: Chain = { + $schema: '../../chain.schema.json', + chain_name: 'babylontestnet1', + status: 'killed', + website: 'https://www.babylonchain.io', + network_type: 'testnet', + pretty_name: 'Babylon Testnet', + chain_id: 'bbn-test1', + bech32_prefix: 'bbn', + daemon_name: 'babylond', + node_home: '$HOME/.babylond', + key_algos: ['secp256k1'], + fees: { + fee_tokens: [ + { + denom: 'ubbn' + } + ] + }, + staking: { + staking_tokens: [ + { + denom: 'ubbn' + } + ] + }, + codebase: {}, + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg' + }, + apis: { + rpc: [ + { + address: 'rpc.testnet.babylonchain.io:26657', + provider: 'Babylon foundation' + } + ], + rest: [ + { + address: 'rpc.testnet.babylonchain.io:1317', + provider: 'Babylon foundation' + } + ], + grpc: [] + }, + explorers: [ + { + kind: 'babylonscan', + url: 'https://babylonscan.io' + }, + { + kind: 'explorers.guru', + url: 'https://babylon.explorers.guru', + tx_page: 'https://babylon.explorers.guru/transaction/${txHash}' + } + ], + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/babylontestnet/images/logo.svg' + } + ], + slip44: 118 +}; +export default info; diff --git a/packages/chain-registry/src/testnet/babylontestnet1/index.ts b/packages/chain-registry/src/testnet/babylontestnet1/index.ts new file mode 100644 index 000000000..40bf3856e --- /dev/null +++ b/packages/chain-registry/src/testnet/babylontestnet1/index.ts @@ -0,0 +1,5 @@ +import _assets from './assets'; +import _chain from './chain'; + +export const assets = _assets; +export const chain = _chain; diff --git a/packages/chain-registry/src/testnet/chains.ts b/packages/chain-registry/src/testnet/chains.ts index 6f9d12a6d..c9ad73838 100644 --- a/packages/chain-registry/src/testnet/chains.ts +++ b/packages/chain-registry/src/testnet/chains.ts @@ -7,6 +7,7 @@ import * as _artelatestnet from './artelatestnet'; import * as _auratestnet from './auratestnet'; import * as _axelartestnet from './axelartestnet'; import * as _babylontestnet from './babylontestnet'; +import * as _babylontestnet1 from './babylontestnet1'; import * as _bitcannadevnet from './bitcannadevnet'; import * as _cascadiatestnet from './cascadiatestnet'; import * as _celestiatestnet from './celestiatestnet'; @@ -101,6 +102,7 @@ const chains: Chain[] = [ _auratestnet.chain, _axelartestnet.chain, _babylontestnet.chain, + _babylontestnet1.chain, _bitcannadevnet.chain, _cascadiatestnet.chain, _celestiatestnet.chain, diff --git a/packages/chain-registry/src/testnet/index.ts b/packages/chain-registry/src/testnet/index.ts index 54792510b..b4818ebf8 100644 --- a/packages/chain-registry/src/testnet/index.ts +++ b/packages/chain-registry/src/testnet/index.ts @@ -5,6 +5,7 @@ export * as artelatestnet from './artelatestnet'; export * as auratestnet from './auratestnet'; export * as axelartestnet from './axelartestnet'; export * as babylontestnet from './babylontestnet'; +export * as babylontestnet1 from './babylontestnet1'; export * as bitcannadevnet from './bitcannadevnet'; export * as cascadiatestnet from './cascadiatestnet'; export * as celestiatestnet from './celestiatestnet'; diff --git a/packages/chain-registry/src/testnet/junotestnet/assets.ts b/packages/chain-registry/src/testnet/junotestnet/assets.ts index f29e9f023..73c8ef0ac 100644 --- a/packages/chain-registry/src/testnet/junotestnet/assets.ts +++ b/packages/chain-registry/src/testnet/junotestnet/assets.ts @@ -55,6 +55,53 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png' } ] + }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + exponent: 0 + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k', + base: 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + traces: [ + { + type: 'test-mintage', + counterparty: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + provider: 'Arena DAO' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] } ] }; diff --git a/packages/juno/src/asset_list.ts b/packages/juno/src/asset_list.ts index 9d2dc0788..ef1b58493 100644 --- a/packages/juno/src/asset_list.ts +++ b/packages/juno/src/asset_list.ts @@ -21010,6 +21010,48 @@ const asset_list: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/6086695C6C063BB18963C44118CC6D524EC2923C323B8E2F1CBD53624E05F5D8', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/6086695C6C063BB18963C44118CC6D524EC2923C323B8E2F1CBD53624E05F5D8', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-24', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/juno/src/assets.ts b/packages/juno/src/assets.ts index e3793461e..fce8f09b6 100644 --- a/packages/juno/src/assets.ts +++ b/packages/juno/src/assets.ts @@ -2174,6 +2174,37 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hera.png' } ] + }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + exponent: 0 + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] } ] }; diff --git a/packages/juno/src/testnet_assets.ts b/packages/juno/src/testnet_assets.ts index f6da83695..dd061b3ec 100644 --- a/packages/juno/src/testnet_assets.ts +++ b/packages/juno/src/testnet_assets.ts @@ -55,6 +55,53 @@ const testnet_assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png' } ] + }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + exponent: 0 + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k', + base: 'factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + traces: [ + { + type: 'test-mintage', + counterparty: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + provider: 'Arena DAO' + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + image_sync: { + chain_name: 'juno', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + }, + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ] } ] }; diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index 676584d1a..ddfab6f7a 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -4335,6 +4335,49 @@ const asset_list: AssetList = { } ] }, + { + description: 'Decentralized Federated Learning', + denom_units: [ + { + denom: + 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + exponent: 0, + aliases: ['ucif'] + }, + { + denom: 'cif', + exponent: 6 + } + ], + base: 'ibc/747E15E4A659084E3B2E44D0B22EC7E50CBB0E2B9D436B94F3D1936B63D97534', + name: 'Cifer', + display: 'cif', + symbol: 'CIF', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + }, + coingecko_id: '', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cifer/images/cif.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: 'ucif', + chain_name: 'cifer' + }, + chain: { + channel_id: 'channel-0' + } + } + ] + }, { description: 'Native Token of Comdex Protocol', denom_units: [ @@ -7736,18 +7779,11 @@ const asset_list: AssetList = { display: 'heart', symbol: 'HEART', logo_URIs: { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg' + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg' }, coingecko_id: 'humans-ai', images: [ - { - png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.png', - svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/humans_small_light.svg', - theme: { - dark_mode: false - } - }, { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/humans/images/heart-dark-mode.svg', @@ -8704,6 +8740,54 @@ const asset_list: AssetList = { } ] }, + { + type_asset: 'sdk.coin', + denom_units: [ + { + denom: + 'ibc/37544C63D9B42019F6C8EF2A1702CF780A4C7F8C0D4F5BE8980F475D6E610500', + exponent: 0, + aliases: [ + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA' + ] + }, + { + denom: 'arena', + exponent: 6 + } + ], + address: + 'juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy', + base: 'ibc/37544C63D9B42019F6C8EF2A1702CF780A4C7F8C0D4F5BE8980F475D6E610500', + name: 'Arena Token', + description: 'The token for the Arena DAO', + display: 'arena', + symbol: 'ARENA', + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.svg', + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA', + chain_name: 'juno' + }, + chain: { + channel_id: 'channel-42' + } + } + ] + }, { description: 'The native staking and governance token of Kava', denom_units: [ @@ -12506,6 +12590,49 @@ const asset_list: AssetList = { } ] }, + { + description: 'The native token of Nibiru network', + denom_units: [ + { + denom: + 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF', + exponent: 0, + aliases: ['unibi'] + }, + { + denom: 'nibi', + exponent: 6 + } + ], + base: 'ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF', + name: 'Nibiru', + display: 'nibi', + symbol: 'NIBI', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + }, + coingecko_id: 'nibiru', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-139', + base_denom: 'unibi', + chain_name: 'nibiru' + }, + chain: { + channel_id: 'channel-21113' + } + } + ] + }, { description: 'The permissioned staking asset for Noble Chain', denom_units: [ @@ -16558,6 +16685,50 @@ const asset_list: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/WOSMO.png' } }, + { + description: + 'OOZARU is a meme token on SEI Network inspired by the iconic transformation in the Dragon Ball series', + denom_units: [ + { + denom: + 'ibc/52D2C9570CC0756B189A56E08FF8255ED496CD5126569CB05F07875B317F24E8', + exponent: 0, + aliases: [ + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda' + ] + }, + { + denom: 'oozaru', + exponent: 6 + } + ], + base: 'ibc/52D2C9570CC0756B189A56E08FF8255ED496CD5126569CB05F07875B317F24E8', + name: 'Oozaru', + display: 'oozaru', + symbol: 'OOZARU', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-782' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ @@ -17874,6 +18045,48 @@ const asset_list: AssetList = { } ] }, + { + description: "Stride's liquid staked DYM", + denom_units: [ + { + denom: + 'ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22', + exponent: 0, + aliases: ['stadym'] + }, + { + denom: 'stDYM', + exponent: 18 + } + ], + base: 'ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22', + name: 'Stride Staked DYM', + display: 'stDYM', + symbol: 'stDYM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: 'stadym', + chain_name: 'stride' + }, + chain: { + channel_id: 'channel-326' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.svg' + } + ] + }, { denom_units: [ { diff --git a/packages/osmosis/src/chain.ts b/packages/osmosis/src/chain.ts index ab89b8f83..913e11924 100644 --- a/packages/osmosis/src/chain.ts +++ b/packages/osmosis/src/chain.ts @@ -165,6 +165,10 @@ const chain: Chain = { { address: 'https://rpc.cros-nest.com/osmosis', provider: 'Crosnest' + }, + { + address: 'https://rpc-osmo.kewrnode.com', + provider: 'Kewr Node' } ], rest: [ @@ -255,6 +259,10 @@ const chain: Chain = { { address: 'https://rest.cros-nest.com/osmosis', provider: 'Crosnest' + }, + { + address: 'https://rest-osmo.kewrnode.com', + provider: 'Kewr Node' } ], grpc: [ From fd8c822468a6374b19e519e6890d3a4e8d6bd69a Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Thu, 14 Mar 2024 12:21:39 +0800 Subject: [PATCH 40/54] chore(release): publish - @chain-registry/assets@1.31.0 - chain-registry@1.30.0 - @chain-registry/cosmostation@1.33.0 - @chain-registry/juno@1.31.0 - @chain-registry/keplr@1.35.0 - @chain-registry/osmosis@1.31.0 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 20eeb6a1d..51827f5fc 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.1...@chain-registry/assets@1.31.0) (2024-03-14) + +**Note:** Version bump only for package @chain-registry/assets + + + + + ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.0...@chain-registry/assets@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index af2e939e3..3ae13e399 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.30.1", + "version": "1.31.0", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.1", + "chain-registry": "^1.30.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index d5c81917b..10572ee20 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.1...chain-registry@1.30.0) (2024-03-14) + +**Note:** Version bump only for package chain-registry + + + + + ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.0...chain-registry@1.29.1) (2024-03-10) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 072f27ed5..c15e712d8 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.29.1", + "version": "1.30.0", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index cdd96f649..edc3bbf2c 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.1...@chain-registry/cosmostation@1.33.0) (2024-03-14) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + ## [1.32.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.0...@chain-registry/cosmostation@1.32.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 726273503..164928cc0 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.32.1", + "version": "1.33.0", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.1", + "chain-registry": "^1.30.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index c40e569f6..13936ffe1 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.1...@chain-registry/juno@1.31.0) (2024-03-14) + +**Note:** Version bump only for package @chain-registry/juno + + + + + ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.0...@chain-registry/juno@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index d8c3a767d..fa964900e 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.30.1", + "version": "1.31.0", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.1", + "chain-registry": "^1.30.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index b3a4b871c..13a927368 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.35.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.1...@chain-registry/keplr@1.35.0) (2024-03-14) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + ## [1.34.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.0...@chain-registry/keplr@1.34.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index 745c5fc5f..5d0daaa58 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.34.1", + "version": "1.35.0", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.1", + "chain-registry": "^1.30.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index a8f222160..76855eb68 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.1...@chain-registry/osmosis@1.31.0) (2024-03-14) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.0...@chain-registry/osmosis@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 47986e076..36314908f 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.30.1", + "version": "1.31.0", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.29.1", + "chain-registry": "^1.30.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From 62aa8d06a99425ba059e3a2b6e1d96ea7a9a2e23 Mon Sep 17 00:00:00 2001 From: luca Date: Thu, 14 Mar 2024 13:02:45 +0800 Subject: [PATCH 41/54] fix: rename files --- packages/utils/src/{asset-list-util.ts => assets.ts} | 0 packages/utils/src/{utils.ts => ibc.ts} | 0 packages/utils/src/index.ts | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename packages/utils/src/{asset-list-util.ts => assets.ts} (100%) rename packages/utils/src/{utils.ts => ibc.ts} (100%) diff --git a/packages/utils/src/asset-list-util.ts b/packages/utils/src/assets.ts similarity index 100% rename from packages/utils/src/asset-list-util.ts rename to packages/utils/src/assets.ts diff --git a/packages/utils/src/utils.ts b/packages/utils/src/ibc.ts similarity index 100% rename from packages/utils/src/utils.ts rename to packages/utils/src/ibc.ts diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index a69a051c9..eae2fba3d 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,3 @@ -export * from './asset-list-util'; +export * from './ibc'; export * from './fees'; -export * from './utils'; +export * from './assets'; From 18bff7432c7ed94678184a41da36092e1bcbf2f8 Mon Sep 17 00:00:00 2001 From: luca Date: Sat, 16 Mar 2024 16:18:24 +0800 Subject: [PATCH 42/54] refactor: assets utils --- .../utils/__tests__/asset-list-util.test.js | 18 +- packages/utils/src/assets.ts | 170 +++++++++++------- packages/utils/src/{fees.ts => chains.ts} | 0 packages/utils/src/index.ts | 2 +- packages/utils/tsconfig.json | 31 ++-- 5 files changed, 129 insertions(+), 92 deletions(-) rename packages/utils/src/{fees.ts => chains.ts} (100%) diff --git a/packages/utils/__tests__/asset-list-util.test.js b/packages/utils/__tests__/asset-list-util.test.js index e785b99bc..3440864e7 100644 --- a/packages/utils/__tests__/asset-list-util.test.js +++ b/packages/utils/__tests__/asset-list-util.test.js @@ -5,11 +5,11 @@ import { convertCoinGeckoPricesToDenomPriceMap, convertDollarValueToDenomUnits, getAssetByDenom, - getChainDenomBySymbol, + getDenomBySymbol, getCoinGeckoIdByDenom, getDenomByCoinGeckoId, getExponentByDenom, - getSymbolByChainDenom, + getSymbolByDenom, noDecimals } from '../src'; @@ -31,17 +31,17 @@ describe('tests for asset-list-util', () => { expect(denom2).toEqual('ustars'); }); - it('getSymbolByChainDenom', () => { - const denom1 = getSymbolByChainDenom(assets, 'swth'); + it('getSymbolByDenom', () => { + const denom1 = getSymbolByDenom(assets, 'swth'); expect(denom1).toEqual('SWTH'); - const denom2 = getSymbolByChainDenom(assets, 'uusdc', 'axelar'); + const denom2 = getSymbolByDenom(assets, 'uusdc', 'axelar'); expect(denom2).toEqual('USDC'); }); - it('getChainDenomBySymbol', () => { - const denom1 = getChainDenomBySymbol(assets, 'OCTA'); + it('getDenomBySymbol', () => { + const denom1 = getDenomBySymbol(assets, 'OCTA'); expect(denom1).toEqual('uocta'); - const denom2 = getChainDenomBySymbol(assets, 'NOM', 'nomic'); + const denom2 = getDenomBySymbol(assets, 'NOM', 'nomic'); expect(denom2).toEqual('unom'); }); @@ -119,6 +119,6 @@ describe('getCoinGeckoIdByDenom', () => { return !asset.traces; } }); - expect(id).toBeNull(); + expect(id).toBeUndefined(); }); }); diff --git a/packages/utils/src/assets.ts b/packages/utils/src/assets.ts index 980f85c73..46d847678 100644 --- a/packages/utils/src/assets.ts +++ b/packages/utils/src/assets.ts @@ -1,24 +1,15 @@ import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; import BigNumber from 'bignumber.js'; -export type CoinDenom = AssetDenomUnit['denom']; +type Denom = AssetDenomUnit['denom']; +type Exponent = AssetDenomUnit['exponent']; -export type Exponent = AssetDenomUnit['exponent']; - -export interface CoinGeckoUSD { - usd: number; -} - -export interface PriceHash { - [key: CoinDenom]: number; -} - -function getAssetByKeyValue( +const getAssetByKeyValue = ( assets: AssetList[], key: keyof Asset, value: string, chainName?: string -): Asset { +): Asset | undefined => { const filteredAssets = assets .filter(({ chain_name }) => !chainName || chain_name === chainName) .flatMap(({ assets }) => assets); @@ -26,34 +17,42 @@ function getAssetByKeyValue( const matchingAssets = filteredAssets.filter((asset) => asset[key] === value); if (matchingAssets.length === 0) { - throw new Error(`No asset found for ${key} '${value}'`); + return undefined; } if (matchingAssets.length > 1) { throw new Error( - `Ambiguity: ${matchingAssets.length} assets found for ${key} '${value}'` + `Ambiguity: ${matchingAssets.length} assets found for ${key}: ${value}` ); } return matchingAssets[0]; -} +}; -export function getAssetByDenom( +export const getAssetByDenom = ( assets: AssetList[], - denom: CoinDenom, + denom: Denom, chainName?: string -): Asset { +): Asset | undefined => { return getAssetByKeyValue(assets, 'base', denom, chainName); -} +}; + +export const getAssetBySymbol = ( + assets: AssetList[], + symbol: string, + chainName?: string +): Asset | undefined => { + return getAssetByKeyValue(assets, 'symbol', symbol, chainName); +}; -export function getDenomByCoinGeckoId( +export const getDenomByCoinGeckoId = ( assets: AssetList[], coinGeckoId: string, chainName?: string -): CoinDenom { +): Denom | undefined => { return getAssetByKeyValue(assets, 'coingecko_id', coinGeckoId, chainName) - .base; -} + ?.base; +}; type GetCoinGeckoIdByDenomOptions = { chainName?: string; @@ -62,16 +61,16 @@ type GetCoinGeckoIdByDenomOptions = { excludedChainNames?: string[]; }; -export function getCoinGeckoIdByDenom( +export const getCoinGeckoIdByDenom = ( assets: AssetList[], - denom: CoinDenom, + denom: Denom, { chainName, allowTestnet = false, customAssetFilter = () => true, excludedChainNames = [] }: GetCoinGeckoIdByDenomOptions = {} -): string | null { +): string | undefined => { const filteredAssetLists = assets.filter(({ chain_name }) => { return ( (!chainName || chain_name === chainName) && @@ -87,86 +86,127 @@ export function getCoinGeckoIdByDenom( const asset = filteredAssets.find(({ base }) => base === denom); - return asset?.coingecko_id ?? null; -} + return asset?.coingecko_id; +}; -export function getSymbolByChainDenom( +export const getSymbolByDenom = ( assets: AssetList[], - denom: CoinDenom, + denom: Denom, chainName?: string -): string { - return getAssetByDenom(assets, denom, chainName).symbol; -} +): string | undefined => { + return getAssetByDenom(assets, denom, chainName)?.symbol; +}; -export function getChainDenomBySymbol( +export const getDenomBySymbol = ( assets: AssetList[], symbol: string, chainName?: string -): CoinDenom { - return getAssetByKeyValue(assets, 'symbol', symbol, chainName).base; -} +): Denom | undefined => { + return getAssetByKeyValue(assets, 'symbol', symbol, chainName)?.base; +}; + +export const getExponentFromAsset = (asset: Asset) => { + return asset.denom_units.find(({ denom }) => denom === asset.display) + ?.exponent; +}; -export function getExponentByDenom( +export const getExponentByDenom = ( assets: AssetList[], - denom: CoinDenom, + denom: Denom, chainName?: string -): Exponent { +): Exponent | undefined => { const asset = getAssetByDenom(assets, denom, chainName); - const unit = asset.denom_units.find(({ denom }) => denom === asset.display); - return unit?.exponent ?? 0; + return asset ? getExponentFromAsset(asset) : undefined; +}; + +export const getExponentBySymbol = ( + assets: AssetList[], + symbol: string, + chainName?: string +): Exponent | undefined => { + const asset = getAssetBySymbol(assets, symbol, chainName); + return asset ? getExponentFromAsset(asset) : undefined; +}; + +export interface CoinGeckoUSD { + usd: number; } -export function convertCoinGeckoPricesToDenomPriceMap( +export interface PriceHash { + [key: Denom]: number; +} + +export const convertCoinGeckoPricesToDenomPriceMap = ( assets: AssetList[], prices: Record -): PriceHash { +): PriceHash => { return Object.keys(prices).reduce((res: PriceHash, geckoId) => { const denom = getDenomByCoinGeckoId(assets, geckoId); + if (!denom) { + throw new Error(`No denom found for CoinGecko ID: ${geckoId}`); + } res[denom] = prices[geckoId].usd; return res; }, {}); -} +}; -export function noDecimals(num: number | string): string { +export const noDecimals = (num: number | string): string => { return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); -} +}; -export function convertBaseUnitsToDollarValue( +export const convertBaseUnitsToDollarValue = ( assets: AssetList[], prices: PriceHash, symbol: string, amount: string | number, chainName?: string -): string { - const denom = getChainDenomBySymbol(assets, symbol, chainName); +): string => { + const asset = getAssetBySymbol(assets, symbol, chainName); + const denom = asset?.base; + const exponent = asset ? getExponentFromAsset(asset) : undefined; + + if (!denom || !exponent) { + throw new Error(`No denom or exponent found for symbol: ${symbol}`); + } + return new BigNumber(amount) - .shiftedBy(-getExponentByDenom(assets, denom, chainName)) + .shiftedBy(-exponent) .multipliedBy(prices[denom]) .toString(); -} +}; -export function convertDollarValueToDenomUnits( +export const convertDollarValueToDenomUnits = ( assets: AssetList[], prices: PriceHash, symbol: string, value: string | number, chainName?: string -): string { - const denom = getChainDenomBySymbol(assets, symbol, chainName); +): string => { + const asset = getAssetBySymbol(assets, symbol, chainName); + const denom = asset?.base; + const exponent = asset ? getExponentFromAsset(asset) : undefined; + + if (!denom || !exponent) { + throw new Error(`No denom or exponent found for symbol: ${symbol}`); + } + return new BigNumber(value) .dividedBy(prices[denom]) - .shiftedBy(getExponentByDenom(assets, denom, chainName)) + .shiftedBy(exponent) .toString(); -} +}; -export function convertBaseUnitsToDisplayUnits( +export const convertBaseUnitsToDisplayUnits = ( assets: AssetList[], symbol: string, amount: string | number, chainName?: string -): string { - const denom = getChainDenomBySymbol(assets, symbol, chainName); - return new BigNumber(amount) - .shiftedBy(-getExponentByDenom(assets, denom, chainName)) - .toString(); -} +): string => { + const exponent = getExponentBySymbol(assets, symbol, chainName); + + if (!exponent) { + throw new Error(`No exponent found for symbol: ${symbol}`); + } + + return new BigNumber(amount).shiftedBy(-exponent).toString(); +}; diff --git a/packages/utils/src/fees.ts b/packages/utils/src/chains.ts similarity index 100% rename from packages/utils/src/fees.ts rename to packages/utils/src/chains.ts diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index eae2fba3d..7bb58240e 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,3 @@ export * from './ibc'; -export * from './fees'; +export * from './chains'; export * from './assets'; diff --git a/packages/utils/tsconfig.json b/packages/utils/tsconfig.json index 657945ffb..4de92bd6e 100644 --- a/packages/utils/tsconfig.json +++ b/packages/utils/tsconfig.json @@ -1,18 +1,15 @@ { - "compilerOptions": { - "target": "esnext", - "moduleResolution": "node", - "allowJs": true, - "esModuleInterop": true, - "declaration": true, - "declarationDir": "./types", - "emitDeclarationOnly": true, - "isolatedModules": true - }, - "include": [ - "src/**/*" - ], - "exclude": [ - "node_modules" - ] -} \ No newline at end of file + "compilerOptions": { + "target": "esnext", + "moduleResolution": "node", + "allowJs": true, + "esModuleInterop": true, + "declaration": true, + "declarationDir": "./types", + "emitDeclarationOnly": true, + "isolatedModules": true, + "strict": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules"] +} From e485eb81c4f79a55f81b4816e1a23e411f469aaa Mon Sep 17 00:00:00 2001 From: luca Date: Sat, 16 Mar 2024 16:38:29 +0800 Subject: [PATCH 43/54] refactor: add calc module --- packages/utils/src/assets.ts | 88 +--------------------------------- packages/utils/src/calc.ts | 92 ++++++++++++++++++++++++++++++++++++ packages/utils/src/index.ts | 1 + 3 files changed, 95 insertions(+), 86 deletions(-) create mode 100644 packages/utils/src/calc.ts diff --git a/packages/utils/src/assets.ts b/packages/utils/src/assets.ts index 46d847678..9de010d83 100644 --- a/packages/utils/src/assets.ts +++ b/packages/utils/src/assets.ts @@ -1,8 +1,7 @@ import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; -import BigNumber from 'bignumber.js'; -type Denom = AssetDenomUnit['denom']; -type Exponent = AssetDenomUnit['exponent']; +export type Denom = AssetDenomUnit['denom']; +export type Exponent = AssetDenomUnit['exponent']; const getAssetByKeyValue = ( assets: AssetList[], @@ -127,86 +126,3 @@ export const getExponentBySymbol = ( const asset = getAssetBySymbol(assets, symbol, chainName); return asset ? getExponentFromAsset(asset) : undefined; }; - -export interface CoinGeckoUSD { - usd: number; -} - -export interface PriceHash { - [key: Denom]: number; -} - -export const convertCoinGeckoPricesToDenomPriceMap = ( - assets: AssetList[], - prices: Record -): PriceHash => { - return Object.keys(prices).reduce((res: PriceHash, geckoId) => { - const denom = getDenomByCoinGeckoId(assets, geckoId); - if (!denom) { - throw new Error(`No denom found for CoinGecko ID: ${geckoId}`); - } - res[denom] = prices[geckoId].usd; - return res; - }, {}); -}; - -export const noDecimals = (num: number | string): string => { - return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); -}; - -export const convertBaseUnitsToDollarValue = ( - assets: AssetList[], - prices: PriceHash, - symbol: string, - amount: string | number, - chainName?: string -): string => { - const asset = getAssetBySymbol(assets, symbol, chainName); - const denom = asset?.base; - const exponent = asset ? getExponentFromAsset(asset) : undefined; - - if (!denom || !exponent) { - throw new Error(`No denom or exponent found for symbol: ${symbol}`); - } - - return new BigNumber(amount) - .shiftedBy(-exponent) - .multipliedBy(prices[denom]) - .toString(); -}; - -export const convertDollarValueToDenomUnits = ( - assets: AssetList[], - prices: PriceHash, - symbol: string, - value: string | number, - chainName?: string -): string => { - const asset = getAssetBySymbol(assets, symbol, chainName); - const denom = asset?.base; - const exponent = asset ? getExponentFromAsset(asset) : undefined; - - if (!denom || !exponent) { - throw new Error(`No denom or exponent found for symbol: ${symbol}`); - } - - return new BigNumber(value) - .dividedBy(prices[denom]) - .shiftedBy(exponent) - .toString(); -}; - -export const convertBaseUnitsToDisplayUnits = ( - assets: AssetList[], - symbol: string, - amount: string | number, - chainName?: string -): string => { - const exponent = getExponentBySymbol(assets, symbol, chainName); - - if (!exponent) { - throw new Error(`No exponent found for symbol: ${symbol}`); - } - - return new BigNumber(amount).shiftedBy(-exponent).toString(); -}; diff --git a/packages/utils/src/calc.ts b/packages/utils/src/calc.ts new file mode 100644 index 000000000..98bbbe0dc --- /dev/null +++ b/packages/utils/src/calc.ts @@ -0,0 +1,92 @@ +import { AssetList } from '@chain-registry/types'; +import BigNumber from 'bignumber.js'; +import { + Denom, + getDenomByCoinGeckoId, + getAssetBySymbol, + getExponentFromAsset, + getExponentBySymbol +} from './assets'; + +export interface CoinGeckoUSD { + usd: number; +} + +export interface PriceHash { + [key: Denom]: number; +} + +export const convertCoinGeckoPricesToDenomPriceMap = ( + assets: AssetList[], + prices: Record +): PriceHash => { + return Object.keys(prices).reduce((res: PriceHash, geckoId) => { + const denom = getDenomByCoinGeckoId(assets, geckoId); + if (!denom) { + throw new Error(`No denom found for CoinGecko ID: ${geckoId}`); + } + res[denom] = prices[geckoId].usd; + return res; + }, {}); +}; + +export const noDecimals = (num: number | string): string => { + return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); +}; + +export const convertBaseUnitsToDollarValue = ( + assets: AssetList[], + prices: PriceHash, + symbol: string, + amount: string | number, + chainName?: string +): string => { + const asset = getAssetBySymbol(assets, symbol, chainName); + const denom = asset?.base; + const exponent = asset ? getExponentFromAsset(asset) : undefined; + + if (!denom || !exponent) { + throw new Error(`No denom or exponent found for symbol: ${symbol}`); + } + + return new BigNumber(amount) + .shiftedBy(-exponent) + .multipliedBy(prices[denom]) + .toString(); +}; + +export const convertDollarValueToDenomUnits = ( + assets: AssetList[], + prices: PriceHash, + symbol: string, + value: string | number, + chainName?: string +): string => { + const asset = getAssetBySymbol(assets, symbol, chainName); + const denom = asset?.base; + const exponent = asset ? getExponentFromAsset(asset) : undefined; + + if (!denom || !exponent) { + throw new Error(`No denom or exponent found for symbol: ${symbol}`); + } + + return new BigNumber(value) + .dividedBy(prices[denom]) + .shiftedBy(exponent) + .toString(); +}; + +export const convertBaseUnitsToDisplayUnits = ( + assets: AssetList[], + symbol: string, + amount: string | number, + chainName?: string +): string => { + const exponent = getExponentBySymbol(assets, symbol, chainName); + + if (!exponent) { + throw new Error(`No exponent found for symbol: ${symbol}`); + } + + return new BigNumber(amount).shiftedBy(-exponent).toString(); +}; diff --git a/packages/utils/src/index.ts b/packages/utils/src/index.ts index 7bb58240e..3e2729aff 100644 --- a/packages/utils/src/index.ts +++ b/packages/utils/src/index.ts @@ -1,3 +1,4 @@ export * from './ibc'; +export * from './calc'; export * from './chains'; export * from './assets'; From 5e4136c05478926ed48c116dbcba06b2ea0d7983 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Mon, 18 Mar 2024 02:56:45 +0000 Subject: [PATCH 44/54] =?UTF-8?q?build=20=F0=9F=9B=A0=20build-20240318-014?= =?UTF-8?q?114?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/assets/src/mainnet/8ball.ts | 44 ++++ packages/assets/src/mainnet/acrechain.ts | 44 ++++ packages/assets/src/mainnet/agoric.ts | 44 ++++ packages/assets/src/mainnet/aioz.ts | 44 ++++ packages/assets/src/mainnet/akash.ts | 140 +++++++---- packages/assets/src/mainnet/archway.ts | 44 ++++ packages/assets/src/mainnet/arkh.ts | 44 ++++ packages/assets/src/mainnet/assetmantle.ts | 44 ++++ packages/assets/src/mainnet/aura.ts | 44 ++++ packages/assets/src/mainnet/axelar.ts | 87 +++++++ packages/assets/src/mainnet/bandchain.ts | 44 ++++ packages/assets/src/mainnet/beezee.ts | 44 ++++ packages/assets/src/mainnet/bitcanna.ts | 44 ++++ packages/assets/src/mainnet/bitsong.ts | 44 ++++ packages/assets/src/mainnet/bluzelle.ts | 44 ++++ packages/assets/src/mainnet/bostrom.ts | 44 ++++ packages/assets/src/mainnet/canto.ts | 44 ++++ packages/assets/src/mainnet/carbon.ts | 44 ++++ packages/assets/src/mainnet/celestia.ts | 44 ++++ packages/assets/src/mainnet/cerberus.ts | 44 ++++ packages/assets/src/mainnet/chain4energy.ts | 44 ++++ packages/assets/src/mainnet/cheqd.ts | 44 ++++ packages/assets/src/mainnet/chihuahua.ts | 44 ++++ packages/assets/src/mainnet/cifer.ts | 44 ++++ packages/assets/src/mainnet/comdex.ts | 44 ++++ packages/assets/src/mainnet/composable.ts | 44 ++++ packages/assets/src/mainnet/coreum.ts | 87 +++++++ packages/assets/src/mainnet/cosmoshub.ts | 87 +++++++ packages/assets/src/mainnet/crescent.ts | 44 ++++ packages/assets/src/mainnet/cryptoorgchain.ts | 44 ++++ packages/assets/src/mainnet/cudos.ts | 44 ++++ packages/assets/src/mainnet/decentr.ts | 44 ++++ packages/assets/src/mainnet/desmos.ts | 44 ++++ packages/assets/src/mainnet/dig.ts | 44 ++++ packages/assets/src/mainnet/doravota.ts | 87 +++++++ packages/assets/src/mainnet/dydx.ts | 44 ++++ packages/assets/src/mainnet/dymension.ts | 44 ++++ packages/assets/src/mainnet/dyson.ts | 44 ++++ packages/assets/src/mainnet/echelon.ts | 44 ++++ packages/assets/src/mainnet/emoney.ts | 44 ++++ packages/assets/src/mainnet/empowerchain.ts | 44 ++++ packages/assets/src/mainnet/evmos.ts | 44 ++++ packages/assets/src/mainnet/fetchhub.ts | 44 ++++ packages/assets/src/mainnet/furya.ts | 44 ++++ packages/assets/src/mainnet/fxcore.ts | 44 ++++ packages/assets/src/mainnet/galaxy.ts | 44 ++++ packages/assets/src/mainnet/gateway.ts | 44 ++++ packages/assets/src/mainnet/genesisl1.ts | 44 ++++ packages/assets/src/mainnet/gitopia.ts | 44 ++++ packages/assets/src/mainnet/gravitybridge.ts | 44 ++++ packages/assets/src/mainnet/haqq.ts | 44 ++++ packages/assets/src/mainnet/humans.ts | 44 ++++ packages/assets/src/mainnet/impacthub.ts | 44 ++++ packages/assets/src/mainnet/imversed.ts | 44 ++++ packages/assets/src/mainnet/injective.ts | 44 ++++ packages/assets/src/mainnet/irisnet.ts | 44 ++++ packages/assets/src/mainnet/jackal.ts | 44 ++++ packages/assets/src/mainnet/juno.ts | 44 ++++ packages/assets/src/mainnet/kava.ts | 87 +++++++ packages/assets/src/mainnet/kichain.ts | 44 ++++ packages/assets/src/mainnet/konstellation.ts | 44 ++++ packages/assets/src/mainnet/kujira.ts | 44 ++++ packages/assets/src/mainnet/kyve.ts | 44 ++++ packages/assets/src/mainnet/lambda.ts | 44 ++++ packages/assets/src/mainnet/likecoin.ts | 44 ++++ packages/assets/src/mainnet/lumenx.ts | 44 ++++ packages/assets/src/mainnet/lumnetwork.ts | 44 ++++ packages/assets/src/mainnet/mars.ts | 44 ++++ packages/assets/src/mainnet/medasdigital.ts | 44 ++++ packages/assets/src/mainnet/meme.ts | 44 ++++ packages/assets/src/mainnet/microtick.ts | 44 ++++ packages/assets/src/mainnet/migaloo.ts | 87 +++++++ packages/assets/src/mainnet/neutron.ts | 87 +++++++ packages/assets/src/mainnet/nibiru.ts | 44 ++++ packages/assets/src/mainnet/noble.ts | 130 +++++++++++ packages/assets/src/mainnet/nois.ts | 87 +++++++ packages/assets/src/mainnet/nolus.ts | 44 ++++ packages/assets/src/mainnet/nomic.ts | 44 ++++ packages/assets/src/mainnet/nyx.ts | 44 ++++ packages/assets/src/mainnet/odin.ts | 44 ++++ packages/assets/src/mainnet/omniflixhub.ts | 44 ++++ packages/assets/src/mainnet/onomy.ts | 44 ++++ packages/assets/src/mainnet/oraichain.ts | 44 ++++ packages/assets/src/mainnet/osmosis.ts | 43 ++++ packages/assets/src/mainnet/panacea.ts | 44 ++++ packages/assets/src/mainnet/passage.ts | 44 ++++ packages/assets/src/mainnet/persistence.ts | 60 ++++- packages/assets/src/mainnet/planq.ts | 87 +++++++ packages/assets/src/mainnet/provenance.ts | 219 ++++++++++++++++++ packages/assets/src/mainnet/pundix.ts | 44 ++++ packages/assets/src/mainnet/pylons.ts | 44 ++++ packages/assets/src/mainnet/quasar.ts | 44 ++++ packages/assets/src/mainnet/quicksilver.ts | 44 ++++ packages/assets/src/mainnet/qwoyn.ts | 44 ++++ packages/assets/src/mainnet/realio.ts | 44 ++++ packages/assets/src/mainnet/rebus.ts | 44 ++++ packages/assets/src/mainnet/regen.ts | 44 ++++ packages/assets/src/mainnet/rizon.ts | 44 ++++ packages/assets/src/mainnet/scorum.ts | 44 ++++ packages/assets/src/mainnet/secretnetwork.ts | 44 ++++ packages/assets/src/mainnet/sei.ts | 44 ++++ packages/assets/src/mainnet/sentinel.ts | 44 ++++ packages/assets/src/mainnet/sge.ts | 44 ++++ packages/assets/src/mainnet/shareledger.ts | 44 ++++ packages/assets/src/mainnet/shentu.ts | 44 ++++ packages/assets/src/mainnet/sifchain.ts | 44 ++++ packages/assets/src/mainnet/sommelier.ts | 44 ++++ packages/assets/src/mainnet/source.ts | 44 ++++ packages/assets/src/mainnet/stafihub.ts | 44 ++++ packages/assets/src/mainnet/stargaze.ts | 44 ++++ packages/assets/src/mainnet/starname.ts | 44 ++++ packages/assets/src/mainnet/stride.ts | 87 +++++++ packages/assets/src/mainnet/teritori.ts | 44 ++++ packages/assets/src/mainnet/terra.ts | 44 ++++ packages/assets/src/mainnet/terra2.ts | 44 ++++ packages/assets/src/mainnet/tgrade.ts | 44 ++++ packages/assets/src/mainnet/umee.ts | 44 ++++ packages/assets/src/mainnet/unification.ts | 44 ++++ packages/assets/src/mainnet/vidulum.ts | 44 ++++ packages/assets/src/mainnet/xpla.ts | 44 ++++ packages/assets/src/testnet/assets.ts | 2 + .../assets/src/testnet/cosmoshubtestnet.ts | 192 +++++++++++++++ packages/assets/src/testnet/elystestnet.ts | 198 ++++++++++++++++ packages/assets/src/testnet/index.ts | 1 + packages/assets/src/testnet/nobletestnet.ts | 192 +++++++++++++++ packages/chain-registry/chain-registry | 2 +- .../chain-registry/src/mainnet/akash/ibc.ts | 12 +- .../src/mainnet/akash/ibc_chain1.ts | 12 +- .../src/mainnet/archway/chain.ts | 12 - .../chain-registry/src/mainnet/aura/chain.ts | 19 ++ .../src/mainnet/axelar/chain.ts | 7 +- .../src/mainnet/bitsong/chain.ts | 6 +- .../src/mainnet/dymension/chain.ts | 8 +- .../src/mainnet/genesisl1/chain.ts | 16 +- .../src/mainnet/migaloo/chain.ts | 4 +- .../chain-registry/src/mainnet/neutron/ibc.ts | 18 ++ .../src/mainnet/neutron/ibc_chain1.ts | 18 ++ .../src/mainnet/nibiru/chain.ts | 19 ++ .../chain-registry/src/mainnet/noble/ibc.ts | 31 +++ .../src/mainnet/noble/ibc_chain1.ts | 31 +++ .../chain-registry/src/mainnet/nois/ibc.ts | 18 ++ .../src/mainnet/omniflixhub/chain.ts | 19 ++ .../src/mainnet/oraichain/chain.ts | 9 +- .../src/mainnet/osmosis/assets.ts | 45 ++++ .../src/mainnet/persistence/ibc.ts | 12 +- .../src/mainnet/provenance/ibc.ts | 31 +++ .../chain-registry/src/mainnet/sei/assets.ts | 26 +++ .../src/mainnet/zetachain/chain.ts | 17 ++ .../src/testnet/cascadiatestnet/chain.ts | 12 - .../src/testnet/cosmoshubtestnet/ibc.ts | 30 +++ .../testnet/cosmoshubtestnet/ibc_chain1.ts | 30 +++ .../src/testnet/cosstestnet/chain.ts | 12 +- .../src/testnet/elystestnet/assets.ts | 93 ++++++++ .../src/testnet/elystestnet/chain.ts | 24 ++ .../src/testnet/elystestnet/ibc.ts | 64 +++++ .../src/testnet/elystestnet/ibc_chain1.ts | 34 +++ .../src/testnet/elystestnet/index.ts | 4 + packages/chain-registry/src/testnet/ibc.ts | 2 + .../src/testnet/nobletestnet/ibc.ts | 30 +++ packages/juno/src/asset_list.ts | 44 ++++ packages/osmosis/src/asset_list.ts | 43 ++++ packages/osmosis/src/assets.ts | 45 ++++ 162 files changed, 7406 insertions(+), 120 deletions(-) create mode 100644 packages/assets/src/testnet/elystestnet.ts create mode 100644 packages/chain-registry/src/testnet/elystestnet/ibc.ts create mode 100644 packages/chain-registry/src/testnet/elystestnet/ibc_chain1.ts diff --git a/packages/assets/src/mainnet/8ball.ts b/packages/assets/src/mainnet/8ball.ts index c5df10491..7d9ecdb51 100644 --- a/packages/assets/src/mainnet/8ball.ts +++ b/packages/assets/src/mainnet/8ball.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/45610025C9415408B354F29EEF535ADFD94151414305FD3E41BFE121B5CA5790', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45610025C9415408B354F29EEF535ADFD94151414305FD3E41BFE121B5CA5790', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-641', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/acrechain.ts b/packages/assets/src/mainnet/acrechain.ts index 7794ebcf3..22ff90b18 100644 --- a/packages/assets/src/mainnet/acrechain.ts +++ b/packages/assets/src/mainnet/acrechain.ts @@ -17376,6 +17376,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-490', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/agoric.ts b/packages/assets/src/mainnet/agoric.ts index db55822e8..b9f00a7e6 100644 --- a/packages/assets/src/mainnet/agoric.ts +++ b/packages/assets/src/mainnet/agoric.ts @@ -18229,6 +18229,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-320', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/aioz.ts b/packages/assets/src/mainnet/aioz.ts index cf02dc76f..0a3ad4a05 100644 --- a/packages/assets/src/mainnet/aioz.ts +++ b/packages/assets/src/mainnet/aioz.ts @@ -13836,6 +13836,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-779', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/akash.ts b/packages/assets/src/mainnet/akash.ts index 3160a9332..07d6a1c89 100644 --- a/packages/assets/src/mainnet/akash.ts +++ b/packages/assets/src/mainnet/akash.ts @@ -15903,13 +15903,57 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', denom_units: [ { denom: - 'ibc/268814152066040B21D1617B04A1617CC0C2264A65179318B1624BE72735A733', + 'ibc/1C83E3B8A612C4FB7F3D7C20AE3E827BD61FF21CE5343134CC7A4F5ADC57EE43', exponent: 0, aliases: ['uxprt'] }, @@ -15918,7 +15962,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/268814152066040B21D1617B04A1617CC0C2264A65179318B1624BE72735A733', + base: 'ibc/1C83E3B8A612C4FB7F3D7C20AE3E827BD61FF21CE5343134CC7A4F5ADC57EE43', name: 'Persistence', display: 'xprt', symbol: 'XPRT', @@ -15941,12 +15985,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'uxprt', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ] @@ -15956,7 +16000,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/714D59172A15972F9D0E1085E8519CE9BA7BFA6D12874492D9E035F23B2D681B', + 'ibc/D8E19037269E886B6517AE94770DCEE45149CED646862CD2686B3EB7B2FC8197', exponent: 0, aliases: ['stk/uatom'] }, @@ -15966,7 +16010,7 @@ const assets: AssetList = { aliases: ['stk/atom'] } ], - base: 'ibc/714D59172A15972F9D0E1085E8519CE9BA7BFA6D12874492D9E035F23B2D681B', + base: 'ibc/D8E19037269E886B6517AE94770DCEE45149CED646862CD2686B3EB7B2FC8197', name: 'PSTAKE staked ATOM', display: 'stkatom', symbol: 'stkATOM', @@ -15974,12 +16018,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'stk/uatom', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16001,7 +16045,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/3B3D6D224E3B1BD8BEE2B2763966F4E8784EFD871C7F26CA3305D6B2C4E3BC7E', + 'ibc/847BA4DC0E558646729F00A095A06778651FCBD26FC4A4F644C60D7DB14893A2', exponent: 0, aliases: [ 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444' @@ -16013,7 +16057,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/3B3D6D224E3B1BD8BEE2B2763966F4E8784EFD871C7F26CA3305D6B2C4E3BC7E', + base: 'ibc/847BA4DC0E558646729F00A095A06778651FCBD26FC4A4F644C60D7DB14893A2', name: 'pSTAKE Finance', display: 'pstake', symbol: 'PSTAKE', @@ -16021,13 +16065,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16051,7 +16095,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/05F8C2DC20A26870EC5BF205BE1F71B71A7EA3807370998EE6F543C1056C1A5A', + 'ibc/2D2070616DC4E2B23161809B7C740349342DE5F38868289F781AE4000604F560', exponent: 0, aliases: [ 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA' @@ -16063,7 +16107,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/05F8C2DC20A26870EC5BF205BE1F71B71A7EA3807370998EE6F543C1056C1A5A', + base: 'ibc/2D2070616DC4E2B23161809B7C740349342DE5F38868289F781AE4000604F560', name: 'Cosmos Hub Atom', display: 'atom', symbol: 'ATOM', @@ -16071,13 +16115,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16101,7 +16145,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/A8B5E8475B5BC7D57BAC649BE25EFDDF5B8E7932B398F4FB15820E3A9CC0DC06', + 'ibc/0E283A7A7A0C19EF549BC8B27498E7C9FDB770BE038027DAC5396D91988DFBDE', exponent: 0, aliases: [ 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4' @@ -16113,7 +16157,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/A8B5E8475B5BC7D57BAC649BE25EFDDF5B8E7932B398F4FB15820E3A9CC0DC06', + base: 'ibc/0E283A7A7A0C19EF549BC8B27498E7C9FDB770BE038027DAC5396D91988DFBDE', name: 'Tether USDT', display: 'usdt', symbol: 'USDT', @@ -16121,13 +16165,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16148,7 +16192,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/937C154B895EF25851DE5CEDBAAD039755C5EC7C4899EC2D5CBD0478BEEF4D68', + 'ibc/F4983F5182C63AB1BD268C6269BCC35960772112BD5C1545E6CBCD4F133E1EE1', exponent: 0, aliases: [ 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0' @@ -16160,7 +16204,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/937C154B895EF25851DE5CEDBAAD039755C5EC7C4899EC2D5CBD0478BEEF4D68', + base: 'ibc/F4983F5182C63AB1BD268C6269BCC35960772112BD5C1545E6CBCD4F133E1EE1', name: 'Noble USD Coin', display: 'usdc', symbol: 'USDC', @@ -16168,13 +16212,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16198,7 +16242,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/D16B0BD0E9895B40EF5884B8FB5AEF6182ECEA7FF449F3AFEA16C1BB52C05D2F', + 'ibc/6A3DEE67D2ECA13071D78C8FBBA49763AAB0F9A3AF7439FD96A605C1283C66BF', exponent: 0, aliases: [ 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E' @@ -16210,7 +16254,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/D16B0BD0E9895B40EF5884B8FB5AEF6182ECEA7FF449F3AFEA16C1BB52C05D2F', + base: 'ibc/6A3DEE67D2ECA13071D78C8FBBA49763AAB0F9A3AF7439FD96A605C1283C66BF', name: 'dYdX', display: 'dydx', symbol: 'DYDX', @@ -16218,13 +16262,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16248,7 +16292,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/3B6F2774F8F368538056C6F4C5A46F9E2CA793ACF505D36E31DD06D9AD6E6B6C', + 'ibc/1047F04C3F3F31BA09BCBD6F47E7FBD627023064E3516849182E231E3F5F4408', exponent: 0, aliases: ['stk/uosmo'] }, @@ -16258,7 +16302,7 @@ const assets: AssetList = { aliases: ['stk/osmo'] } ], - base: 'ibc/3B6F2774F8F368538056C6F4C5A46F9E2CA793ACF505D36E31DD06D9AD6E6B6C', + base: 'ibc/1047F04C3F3F31BA09BCBD6F47E7FBD627023064E3516849182E231E3F5F4408', name: 'PSTAKE staked OSMO', display: 'stkosmo', symbol: 'stkOSMO', @@ -16266,12 +16310,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'stk/uosmo', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16292,7 +16336,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/8F3FE2CCBC77B111DA9640B633FC63B6514E156E6413D838EBF0DA64C3CF6F3B', + 'ibc/DE1231B22E50EBEC13460E63B56195B086B197D061B34AAF70DB59407B35B274', exponent: 0, aliases: ['stk/adydx'] }, @@ -16302,7 +16346,7 @@ const assets: AssetList = { aliases: ['stk/dydx'] } ], - base: 'ibc/8F3FE2CCBC77B111DA9640B633FC63B6514E156E6413D838EBF0DA64C3CF6F3B', + base: 'ibc/DE1231B22E50EBEC13460E63B56195B086B197D061B34AAF70DB59407B35B274', name: 'PSTAKE staked DYDX', display: 'stkdydx', symbol: 'stkDYDX', @@ -16310,12 +16354,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'stk/adydx', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16335,7 +16379,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/F99B3E3241905674F50912429C2DEB6B36B3B725503795624E5470B2B78BF452', + 'ibc/803D7549538EDDF6BA56FF6492A19E5FB274B14EBD601674AD9991F072F9BD9D', exponent: 0, aliases: ['stk/ustars'] }, @@ -16345,7 +16389,7 @@ const assets: AssetList = { aliases: ['stk/stars'] } ], - base: 'ibc/F99B3E3241905674F50912429C2DEB6B36B3B725503795624E5470B2B78BF452', + base: 'ibc/803D7549538EDDF6BA56FF6492A19E5FB274B14EBD601674AD9991F072F9BD9D', name: 'PSTAKE staked STARS', display: 'stkstars', symbol: 'stkSTARS', @@ -16353,12 +16397,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'stk/ustars', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16377,7 +16421,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/6AD426D7E24D564E64F984CA92BF0A8935396942A0968BB7901C198AE9310EA6', + 'ibc/DE8C75B4F901E0420E854D1000D814FCB790EA64E0E1D65B7563E9F794679FD2', exponent: 0, aliases: [ 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B' @@ -16389,7 +16433,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/6AD426D7E24D564E64F984CA92BF0A8935396942A0968BB7901C198AE9310EA6', + base: 'ibc/DE8C75B4F901E0420E854D1000D814FCB790EA64E0E1D65B7563E9F794679FD2', name: 'Stargaze', display: 'stars', symbol: 'STARS', @@ -16397,13 +16441,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], @@ -16427,7 +16471,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/E62E39531C9C873B79A6F807FF1F42BD8F62D64F2A1BB4BA95F2174561775339', + 'ibc/A42238FD46EEE29BD1316CE2A24A01A5366E3481BD16743D9D38440F3A6C8C55', exponent: 0, aliases: [ 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B' @@ -16439,7 +16483,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/E62E39531C9C873B79A6F807FF1F42BD8F62D64F2A1BB4BA95F2174561775339', + base: 'ibc/A42238FD46EEE29BD1316CE2A24A01A5366E3481BD16743D9D38440F3A6C8C55', name: 'Shade', display: 'shd', symbol: 'SHD', @@ -16447,13 +16491,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-5', + channel_id: 'channel-213', base_denom: 'ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B', chain_name: 'persistence' }, chain: { - channel_id: 'channel-6' + channel_id: 'channel-127' } } ], diff --git a/packages/assets/src/mainnet/archway.ts b/packages/assets/src/mainnet/archway.ts index 106c0cb4b..715a1327b 100644 --- a/packages/assets/src/mainnet/archway.ts +++ b/packages/assets/src/mainnet/archway.ts @@ -19303,6 +19303,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1429', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/arkh.ts b/packages/assets/src/mainnet/arkh.ts index a7875f9e2..afacac850 100644 --- a/packages/assets/src/mainnet/arkh.ts +++ b/packages/assets/src/mainnet/arkh.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4623452418F14E40D19E2018C3997E0C12CE070B41133DE3A3D54DC5B781E981', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4623452418F14E40D19E2018C3997E0C12CE070B41133DE3A3D54DC5B781E981', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-648', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-12' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/assetmantle.ts b/packages/assets/src/mainnet/assetmantle.ts index cf44277d7..d5768366d 100644 --- a/packages/assets/src/mainnet/assetmantle.ts +++ b/packages/assets/src/mainnet/assetmantle.ts @@ -15429,6 +15429,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-232', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/aura.ts b/packages/assets/src/mainnet/aura.ts index dcd9d8fda..bb33ac6c5 100644 --- a/packages/assets/src/mainnet/aura.ts +++ b/packages/assets/src/mainnet/aura.ts @@ -15732,6 +15732,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11304', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/axelar.ts b/packages/assets/src/mainnet/axelar.ts index ed86144a5..573616d27 100644 --- a/packages/assets/src/mainnet/axelar.ts +++ b/packages/assets/src/mainnet/axelar.ts @@ -20218,6 +20218,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-208', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -20574,6 +20618,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/D6A3DCDB53B93F9CBA09048553561BBAFD2939496E6F56B0D21B545CB8FAD8C4', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/D6A3DCDB53B93F9CBA09048553561BBAFD2939496E6F56B0D21B545CB8FAD8C4', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-103' + } + } + ] + }, { description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', diff --git a/packages/assets/src/mainnet/bandchain.ts b/packages/assets/src/mainnet/bandchain.ts index 8f3c2ff71..fec5540ba 100644 --- a/packages/assets/src/mainnet/bandchain.ts +++ b/packages/assets/src/mainnet/bandchain.ts @@ -13739,6 +13739,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/650A82FA2502376A75394BBA5CEACEAC3C1FC32D8982467278701C2D77F26207', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/650A82FA2502376A75394BBA5CEACEAC3C1FC32D8982467278701C2D77F26207', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-148', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-83' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/beezee.ts b/packages/assets/src/mainnet/beezee.ts index 24a12e42d..040c2c4b4 100644 --- a/packages/assets/src/mainnet/beezee.ts +++ b/packages/assets/src/mainnet/beezee.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-340', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitcanna.ts b/packages/assets/src/mainnet/bitcanna.ts index c0419f1d3..e647e6157 100644 --- a/packages/assets/src/mainnet/bitcanna.ts +++ b/packages/assets/src/mainnet/bitcanna.ts @@ -14896,6 +14896,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-51', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bitsong.ts b/packages/assets/src/mainnet/bitsong.ts index 817aa47c1..3e4ad0975 100644 --- a/packages/assets/src/mainnet/bitsong.ts +++ b/packages/assets/src/mainnet/bitsong.ts @@ -15606,6 +15606,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-73', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bluzelle.ts b/packages/assets/src/mainnet/bluzelle.ts index 633f04e13..de2b7168c 100644 --- a/packages/assets/src/mainnet/bluzelle.ts +++ b/packages/assets/src/mainnet/bluzelle.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-763', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/bostrom.ts b/packages/assets/src/mainnet/bostrom.ts index f6708af1c..b2757077d 100644 --- a/packages/assets/src/mainnet/bostrom.ts +++ b/packages/assets/src/mainnet/bostrom.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-95', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/canto.ts b/packages/assets/src/mainnet/canto.ts index 03be090cc..5ddd0f3e8 100644 --- a/packages/assets/src/mainnet/canto.ts +++ b/packages/assets/src/mainnet/canto.ts @@ -14397,6 +14397,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-550', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/carbon.ts b/packages/assets/src/mainnet/carbon.ts index 1b874a157..4ee974df0 100644 --- a/packages/assets/src/mainnet/carbon.ts +++ b/packages/assets/src/mainnet/carbon.ts @@ -15579,6 +15579,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-188', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/celestia.ts b/packages/assets/src/mainnet/celestia.ts index 1d6ea3ead..60e69f5fb 100644 --- a/packages/assets/src/mainnet/celestia.ts +++ b/packages/assets/src/mainnet/celestia.ts @@ -17520,6 +17520,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6994', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/cerberus.ts b/packages/assets/src/mainnet/cerberus.ts index e61520e57..157c161ad 100644 --- a/packages/assets/src/mainnet/cerberus.ts +++ b/packages/assets/src/mainnet/cerberus.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-212', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/chain4energy.ts b/packages/assets/src/mainnet/chain4energy.ts index 49ad14a67..415efb244 100644 --- a/packages/assets/src/mainnet/chain4energy.ts +++ b/packages/assets/src/mainnet/chain4energy.ts @@ -15152,6 +15152,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-22172', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/cheqd.ts b/packages/assets/src/mainnet/cheqd.ts index dce57b0e6..e6ee70794 100644 --- a/packages/assets/src/mainnet/cheqd.ts +++ b/packages/assets/src/mainnet/cheqd.ts @@ -14129,6 +14129,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-108', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/chihuahua.ts b/packages/assets/src/mainnet/chihuahua.ts index 60a03c98d..196c8b71a 100644 --- a/packages/assets/src/mainnet/chihuahua.ts +++ b/packages/assets/src/mainnet/chihuahua.ts @@ -15681,6 +15681,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/BF10AE5DF0897B50B535EF03898E748823410724EF83CADC9519E6150DAEB9B7', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF10AE5DF0897B50B535EF03898E748823410724EF83CADC9519E6150DAEB9B7', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-113', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/cifer.ts b/packages/assets/src/mainnet/cifer.ts index c54056484..617abd0d4 100644 --- a/packages/assets/src/mainnet/cifer.ts +++ b/packages/assets/src/mainnet/cifer.ts @@ -13836,6 +13836,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/comdex.ts b/packages/assets/src/mainnet/comdex.ts index c2ba4bfc4..2c19f3edf 100644 --- a/packages/assets/src/mainnet/comdex.ts +++ b/packages/assets/src/mainnet/comdex.ts @@ -15960,6 +15960,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-87', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/composable.ts b/packages/assets/src/mainnet/composable.ts index 1d0836afe..318629736 100644 --- a/packages/assets/src/mainnet/composable.ts +++ b/packages/assets/src/mainnet/composable.ts @@ -19211,6 +19211,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1279', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking and governance token of Picasso.', denom_units: [ diff --git a/packages/assets/src/mainnet/coreum.ts b/packages/assets/src/mainnet/coreum.ts index b7868f50b..cc5042486 100644 --- a/packages/assets/src/mainnet/coreum.ts +++ b/packages/assets/src/mainnet/coreum.ts @@ -17922,6 +17922,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2188', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18277,6 +18321,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/F7B1953719E0C8174C4C7D74C73CF622534243656052AA7DCD4215EB09DCB03D', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/F7B1953719E0C8174C4C7D74C73CF622534243656052AA7DCD4215EB09DCB03D', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-26' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/cosmoshub.ts b/packages/assets/src/mainnet/cosmoshub.ts index cdfbf9f1a..adb095e99 100644 --- a/packages/assets/src/mainnet/cosmoshub.ts +++ b/packages/assets/src/mainnet/cosmoshub.ts @@ -22352,6 +22352,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3FB2FF048EF41F64A48AEDBCF90E8B5EF3AB242BFF5E960A680A6A49714BDE06', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3FB2FF048EF41F64A48AEDBCF90E8B5EF3AB242BFF5E960A680A6A49714BDE06', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-141' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -23846,6 +23890,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/30AB851E3A7D2D99D925A9578523535ADF99E92C73B085753FA58E58EDB6B9D6', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/30AB851E3A7D2D99D925A9578523535ADF99E92C73B085753FA58E58EDB6B9D6', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-584' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/assets/src/mainnet/crescent.ts b/packages/assets/src/mainnet/crescent.ts index c0256ad77..90175b8e4 100644 --- a/packages/assets/src/mainnet/crescent.ts +++ b/packages/assets/src/mainnet/crescent.ts @@ -19045,6 +19045,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-297', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/cryptoorgchain.ts b/packages/assets/src/mainnet/cryptoorgchain.ts index e6be85ace..1c83b70d1 100644 --- a/packages/assets/src/mainnet/cryptoorgchain.ts +++ b/packages/assets/src/mainnet/cryptoorgchain.ts @@ -14245,6 +14245,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/cudos.ts b/packages/assets/src/mainnet/cudos.ts index 145b50063..e45b79050 100644 --- a/packages/assets/src/mainnet/cudos.ts +++ b/packages/assets/src/mainnet/cudos.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-298', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/decentr.ts b/packages/assets/src/mainnet/decentr.ts index 3c9251b22..201ab0220 100644 --- a/packages/assets/src/mainnet/decentr.ts +++ b/packages/assets/src/mainnet/decentr.ts @@ -13846,6 +13846,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-181', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/assets/src/mainnet/desmos.ts b/packages/assets/src/mainnet/desmos.ts index 77d0126e4..48433e979 100644 --- a/packages/assets/src/mainnet/desmos.ts +++ b/packages/assets/src/mainnet/desmos.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-135', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dig.ts b/packages/assets/src/mainnet/dig.ts index 2fc4a0567..08d572d9a 100644 --- a/packages/assets/src/mainnet/dig.ts +++ b/packages/assets/src/mainnet/dig.ts @@ -13964,6 +13964,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-128', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/doravota.ts b/packages/assets/src/mainnet/doravota.ts index 9e7cc31d1..a7362c788 100644 --- a/packages/assets/src/mainnet/doravota.ts +++ b/packages/assets/src/mainnet/doravota.ts @@ -15775,6 +15775,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2694', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -16083,6 +16127,49 @@ const assets: AssetList = { } } ] + }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/4B6CC6250DA228A2F9F6BEAFE85852CA8EF7A36E2D3163716292A8409E139B6A', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/4B6CC6250DA228A2F9F6BEAFE85852CA8EF7A36E2D3163716292A8409E139B6A', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-64', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-12' + } + } + ] } ] }; diff --git a/packages/assets/src/mainnet/dydx.ts b/packages/assets/src/mainnet/dydx.ts index 57f4e4039..e5f275efd 100644 --- a/packages/assets/src/mainnet/dydx.ts +++ b/packages/assets/src/mainnet/dydx.ts @@ -16975,6 +16975,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6787', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/dymension.ts b/packages/assets/src/mainnet/dymension.ts index 3cdd1a5cf..ef6cdf557 100644 --- a/packages/assets/src/mainnet/dymension.ts +++ b/packages/assets/src/mainnet/dymension.ts @@ -18682,6 +18682,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19774', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/dyson.ts b/packages/assets/src/mainnet/dyson.ts index 48c746ca7..6f023bda2 100644 --- a/packages/assets/src/mainnet/dyson.ts +++ b/packages/assets/src/mainnet/dyson.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-526', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/echelon.ts b/packages/assets/src/mainnet/echelon.ts index 1e95f9d4a..c7ddcb6b5 100644 --- a/packages/assets/src/mainnet/echelon.ts +++ b/packages/assets/src/mainnet/echelon.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/2D0D4CE8D6B074CD3A38D80306FB9A9C099C2E66E2B695398F55C6D21F42E425', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2D0D4CE8D6B074CD3A38D80306FB9A9C099C2E66E2B695398F55C6D21F42E425', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-403', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-11' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/emoney.ts b/packages/assets/src/mainnet/emoney.ts index b4da998c2..dd562d232 100644 --- a/packages/assets/src/mainnet/emoney.ts +++ b/packages/assets/src/mainnet/emoney.ts @@ -14149,6 +14149,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-37', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/empowerchain.ts b/packages/assets/src/mainnet/empowerchain.ts index d3d907608..f3e344a28 100644 --- a/packages/assets/src/mainnet/empowerchain.ts +++ b/packages/assets/src/mainnet/empowerchain.ts @@ -15293,6 +15293,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1411', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/evmos.ts b/packages/assets/src/mainnet/evmos.ts index 0f7934d4a..4a59900cf 100644 --- a/packages/assets/src/mainnet/evmos.ts +++ b/packages/assets/src/mainnet/evmos.ts @@ -20212,6 +20212,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-204', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/fetchhub.ts b/packages/assets/src/mainnet/fetchhub.ts index 32faf3e37..3dbd68308 100644 --- a/packages/assets/src/mainnet/fetchhub.ts +++ b/packages/assets/src/mainnet/fetchhub.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-229', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/furya.ts b/packages/assets/src/mainnet/furya.ts index e18cc3698..e3e8edca5 100644 --- a/packages/assets/src/mainnet/furya.ts +++ b/packages/assets/src/mainnet/furya.ts @@ -15564,6 +15564,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8690', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/fxcore.ts b/packages/assets/src/mainnet/fxcore.ts index e84c48664..31475597e 100644 --- a/packages/assets/src/mainnet/fxcore.ts +++ b/packages/assets/src/mainnet/fxcore.ts @@ -15294,6 +15294,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/633039E1C8C21CA96CC69D1EC5122479C46876E78A0CC3CC2111417E13049B51', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/633039E1C8C21CA96CC69D1EC5122479C46876E78A0CC3CC2111417E13049B51', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2716', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-19' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'Pundi X Token', denom_units: [ diff --git a/packages/assets/src/mainnet/galaxy.ts b/packages/assets/src/mainnet/galaxy.ts index c4e740e86..de1224b4f 100644 --- a/packages/assets/src/mainnet/galaxy.ts +++ b/packages/assets/src/mainnet/galaxy.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-236', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gateway.ts b/packages/assets/src/mainnet/gateway.ts index 2dbadf25c..9ba97647f 100644 --- a/packages/assets/src/mainnet/gateway.ts +++ b/packages/assets/src/mainnet/gateway.ts @@ -15837,6 +15837,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2186', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/genesisl1.ts b/packages/assets/src/mainnet/genesisl1.ts index eccaee2af..31b3cc58a 100644 --- a/packages/assets/src/mainnet/genesisl1.ts +++ b/packages/assets/src/mainnet/genesisl1.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-253', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gitopia.ts b/packages/assets/src/mainnet/gitopia.ts index 4aefb9dd8..66e78b3e6 100644 --- a/packages/assets/src/mainnet/gitopia.ts +++ b/packages/assets/src/mainnet/gitopia.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-781', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/gravitybridge.ts b/packages/assets/src/mainnet/gravitybridge.ts index ea49934f0..ae6ae6814 100644 --- a/packages/assets/src/mainnet/gravitybridge.ts +++ b/packages/assets/src/mainnet/gravitybridge.ts @@ -15987,6 +15987,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-144', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/haqq.ts b/packages/assets/src/mainnet/haqq.ts index 93cfd7370..0d8e648a1 100644 --- a/packages/assets/src/mainnet/haqq.ts +++ b/packages/assets/src/mainnet/haqq.ts @@ -16121,6 +16121,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1575', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/humans.ts b/packages/assets/src/mainnet/humans.ts index d32e7d07f..2cf80bcf1 100644 --- a/packages/assets/src/mainnet/humans.ts +++ b/packages/assets/src/mainnet/humans.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/A0062B2B1F3CA6FEF0B95D43AC04DFAF3BBD0C3DDC937D8E6C8D81917DCEEF3D', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A0062B2B1F3CA6FEF0B95D43AC04DFAF3BBD0C3DDC937D8E6C8D81917DCEEF3D', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20082', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/impacthub.ts b/packages/assets/src/mainnet/impacthub.ts index 27fb0173a..4b6c1dbf6 100644 --- a/packages/assets/src/mainnet/impacthub.ts +++ b/packages/assets/src/mainnet/impacthub.ts @@ -15469,6 +15469,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/A0062B2B1F3CA6FEF0B95D43AC04DFAF3BBD0C3DDC937D8E6C8D81917DCEEF3D', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/A0062B2B1F3CA6FEF0B95D43AC04DFAF3BBD0C3DDC937D8E6C8D81917DCEEF3D', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-38', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-4' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", diff --git a/packages/assets/src/mainnet/imversed.ts b/packages/assets/src/mainnet/imversed.ts index f237634ab..8868ffeea 100644 --- a/packages/assets/src/mainnet/imversed.ts +++ b/packages/assets/src/mainnet/imversed.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-517', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/injective.ts b/packages/assets/src/mainnet/injective.ts index 39a00f3a1..92dd3a509 100644 --- a/packages/assets/src/mainnet/injective.ts +++ b/packages/assets/src/mainnet/injective.ts @@ -20393,6 +20393,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-122', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/irisnet.ts b/packages/assets/src/mainnet/irisnet.ts index e87e1cb1b..71bcdfdd3 100644 --- a/packages/assets/src/mainnet/irisnet.ts +++ b/packages/assets/src/mainnet/irisnet.ts @@ -14842,6 +14842,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/jackal.ts b/packages/assets/src/mainnet/jackal.ts index bd81e3a22..dffc7a6b6 100644 --- a/packages/assets/src/mainnet/jackal.ts +++ b/packages/assets/src/mainnet/jackal.ts @@ -16813,6 +16813,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-412', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/juno.ts b/packages/assets/src/mainnet/juno.ts index fd984a538..4ba95f491 100644 --- a/packages/assets/src/mainnet/juno.ts +++ b/packages/assets/src/mainnet/juno.ts @@ -19392,6 +19392,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/kava.ts b/packages/assets/src/mainnet/kava.ts index 6208fcb0d..83c9174db 100644 --- a/packages/assets/src/mainnet/kava.ts +++ b/packages/assets/src/mainnet/kava.ts @@ -18075,6 +18075,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-143', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -18953,6 +18997,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/58A28308242970B36E75AE70681D828CDBDA9965CDC01DB45781F38D39DA99B3', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/58A28308242970B36E75AE70681D828CDBDA9965CDC01DB45781F38D39DA99B3', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-18', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-132' + } + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/kichain.ts b/packages/assets/src/mainnet/kichain.ts index 2178678b5..0612edd2e 100644 --- a/packages/assets/src/mainnet/kichain.ts +++ b/packages/assets/src/mainnet/kichain.ts @@ -13836,6 +13836,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-77', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/konstellation.ts b/packages/assets/src/mainnet/konstellation.ts index 22cb10129..3fc6f57f6 100644 --- a/packages/assets/src/mainnet/konstellation.ts +++ b/packages/assets/src/mainnet/konstellation.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-171', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/kujira.ts b/packages/assets/src/mainnet/kujira.ts index 7bc8e05d0..d09565cf0 100644 --- a/packages/assets/src/mainnet/kujira.ts +++ b/packages/assets/src/mainnet/kujira.ts @@ -21929,6 +21929,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-259', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/kyve.ts b/packages/assets/src/mainnet/kyve.ts index 12eeacce0..0ed55f576 100644 --- a/packages/assets/src/mainnet/kyve.ts +++ b/packages/assets/src/mainnet/kyve.ts @@ -15152,6 +15152,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-767', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lambda.ts b/packages/assets/src/mainnet/lambda.ts index 499fb4171..930fba48c 100644 --- a/packages/assets/src/mainnet/lambda.ts +++ b/packages/assets/src/mainnet/lambda.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-378', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/likecoin.ts b/packages/assets/src/mainnet/likecoin.ts index 519e2b72f..d9c149b35 100644 --- a/packages/assets/src/mainnet/likecoin.ts +++ b/packages/assets/src/mainnet/likecoin.ts @@ -13836,6 +13836,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-53', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumenx.ts b/packages/assets/src/mainnet/lumenx.ts index 8449e5807..8d33c1cc2 100644 --- a/packages/assets/src/mainnet/lumenx.ts +++ b/packages/assets/src/mainnet/lumenx.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-286', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/lumnetwork.ts b/packages/assets/src/mainnet/lumnetwork.ts index b040986e5..4d05c5091 100644 --- a/packages/assets/src/mainnet/lumnetwork.ts +++ b/packages/assets/src/mainnet/lumnetwork.ts @@ -13836,6 +13836,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-115', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/mars.ts b/packages/assets/src/mainnet/mars.ts index 71158d37a..80e128ad7 100644 --- a/packages/assets/src/mainnet/mars.ts +++ b/packages/assets/src/mainnet/mars.ts @@ -16665,6 +16665,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-557', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/medasdigital.ts b/packages/assets/src/mainnet/medasdigital.ts index 5f710d050..3dd9fd27c 100644 --- a/packages/assets/src/mainnet/medasdigital.ts +++ b/packages/assets/src/mainnet/medasdigital.ts @@ -13696,6 +13696,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-519', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/assets/src/mainnet/meme.ts b/packages/assets/src/mainnet/meme.ts index c976ea70b..92f3af80a 100644 --- a/packages/assets/src/mainnet/meme.ts +++ b/packages/assets/src/mainnet/meme.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-238', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/microtick.ts b/packages/assets/src/mainnet/microtick.ts index 67e011d76..b8f99912c 100644 --- a/packages/assets/src/mainnet/microtick.ts +++ b/packages/assets/src/mainnet/microtick.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/45610025C9415408B354F29EEF535ADFD94151414305FD3E41BFE121B5CA5790', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/45610025C9415408B354F29EEF535ADFD94151414305FD3E41BFE121B5CA5790', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-39', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-16' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/migaloo.ts b/packages/assets/src/mainnet/migaloo.ts index dc8b0eba1..f7917602b 100644 --- a/packages/assets/src/mainnet/migaloo.ts +++ b/packages/assets/src/mainnet/migaloo.ts @@ -18206,6 +18206,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-642', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -18562,6 +18606,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/F8212542DC9E02CA505856D62EAA36DC88510123A86D7B1533D5C8EE46B055D5', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/F8212542DC9E02CA505856D62EAA36DC88510123A86D7B1533D5C8EE46B055D5', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-14', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-57' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/neutron.ts b/packages/assets/src/mainnet/neutron.ts index c71dac7ee..f94902a0e 100644 --- a/packages/assets/src/mainnet/neutron.ts +++ b/packages/assets/src/mainnet/neutron.ts @@ -19673,6 +19673,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-874', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -20598,6 +20642,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/1D0175F192A23585DC3382310B3F968A46F0EFECB03E31C4E37AD415F5313A10', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/1D0175F192A23585DC3382310B3F968A46F0EFECB03E31C4E37AD415F5313A10', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/nibiru.ts b/packages/assets/src/mainnet/nibiru.ts index 6a9c32d49..3de8fe02a 100644 --- a/packages/assets/src/mainnet/nibiru.ts +++ b/packages/assets/src/mainnet/nibiru.ts @@ -15327,6 +15327,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4FF3122606B4500651AD6728947E8EEAA2341ADCE9E23F13EF63CE479879F80E', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4FF3122606B4500651AD6728947E8EEAA2341ADCE9E23F13EF63CE479879F80E', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-21113', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-139' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/noble.ts b/packages/assets/src/mainnet/noble.ts index 39b6fb00b..0564ce8bc 100644 --- a/packages/assets/src/mainnet/noble.ts +++ b/packages/assets/src/mainnet/noble.ts @@ -18953,6 +18953,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-750', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -19522,6 +19566,49 @@ const assets: AssetList = { } ] }, + { + description: 'Hash is the staking token of the Provenance Blockchain', + denom_units: [ + { + denom: + 'ibc/ADDA7F388EBD91BA9EBE1D996E28902738CED906CA4E8200549C3BF8CDF155A4', + exponent: 0, + aliases: ['nhash'] + }, + { + denom: 'hash', + exponent: 9 + } + ], + base: 'ibc/ADDA7F388EBD91BA9EBE1D996E28902738CED906CA4E8200549C3BF8CDF155A4', + name: 'Hash', + display: 'hash', + symbol: 'HASH', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + }, + coingecko_id: 'provenance-blockchain', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-10', + base_denom: 'nhash', + chain_name: 'provenance' + }, + chain: { + channel_id: 'channel-20' + } + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ @@ -19878,6 +19965,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/B3CC9A05D336D561F2CCF5F2E9A81506AA26DC667F8E583F9CDFBCF906459708', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/B3CC9A05D336D561F2CCF5F2E9A81506AA26DC667F8E583F9CDFBCF906459708', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-45', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-39' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/nois.ts b/packages/assets/src/mainnet/nois.ts index 4da9de802..1eaf4a5c5 100644 --- a/packages/assets/src/mainnet/nois.ts +++ b/packages/assets/src/mainnet/nois.ts @@ -15883,6 +15883,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/14FB852B4D55C8117FE23D8B78BB93AA2D1454E63507DD4E9C519BD9F0683D15', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/14FB852B4D55C8117FE23D8B78BB93AA2D1454E63507DD4E9C519BD9F0683D15', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8277', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-37' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -16192,6 +16236,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/F5C0E0B20FD5D3BB1F6CF5D5DEF697C87F2FCB2547F616B01603B45189084747', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/F5C0E0B20FD5D3BB1F6CF5D5DEF697C87F2FCB2547F616B01603B45189084747', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-58', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-43' + } + } + ] + }, { description: 'The native token of Stargaze', denom_units: [ diff --git a/packages/assets/src/mainnet/nolus.ts b/packages/assets/src/mainnet/nolus.ts index 9998370f7..0a181c597 100644 --- a/packages/assets/src/mainnet/nolus.ts +++ b/packages/assets/src/mainnet/nolus.ts @@ -14929,6 +14929,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-783', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nomic.ts b/packages/assets/src/mainnet/nomic.ts index 96cab073a..407204a97 100644 --- a/packages/assets/src/mainnet/nomic.ts +++ b/packages/assets/src/mainnet/nomic.ts @@ -16309,6 +16309,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-6897', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/nyx.ts b/packages/assets/src/mainnet/nyx.ts index f792b51fa..cf31146b8 100644 --- a/packages/assets/src/mainnet/nyx.ts +++ b/packages/assets/src/mainnet/nyx.ts @@ -14128,6 +14128,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15464', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/odin.ts b/packages/assets/src/mainnet/odin.ts index 61e793353..51c7a0af4 100644 --- a/packages/assets/src/mainnet/odin.ts +++ b/packages/assets/src/mainnet/odin.ts @@ -17111,6 +17111,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/5F0F77462546A71E22B3ACF99A9F0B7507248B1EA13C574DB2AB7F044632F2A0', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-258', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-3' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/omniflixhub.ts b/packages/assets/src/mainnet/omniflixhub.ts index d93ed8a53..49b769146 100644 --- a/packages/assets/src/mainnet/omniflixhub.ts +++ b/packages/assets/src/mainnet/omniflixhub.ts @@ -17134,6 +17134,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-199', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/onomy.ts b/packages/assets/src/mainnet/onomy.ts index 558f40dc9..f09aadcfd 100644 --- a/packages/assets/src/mainnet/onomy.ts +++ b/packages/assets/src/mainnet/onomy.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-525', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/oraichain.ts b/packages/assets/src/mainnet/oraichain.ts index 47f686d72..c766a2af2 100644 --- a/packages/assets/src/mainnet/oraichain.ts +++ b/packages/assets/src/mainnet/oraichain.ts @@ -13825,6 +13825,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4387BDD88ADB37CAB92CF5035A196C4EDC76E08D57869A0A5474E8EACC71EA1B', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4387BDD88ADB37CAB92CF5035A196C4EDC76E08D57869A0A5474E8EACC71EA1B', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-216', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-13' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/osmosis.ts b/packages/assets/src/mainnet/osmosis.ts index bec5fe886..d960ad679 100644 --- a/packages/assets/src/mainnet/osmosis.ts +++ b/packages/assets/src/mainnet/osmosis.ts @@ -16729,6 +16729,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/B61F272C20D301DD6D0C036BDCDF8CD83A95EE594FBDD9977910AE69F58936D3', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/B61F272C20D301DD6D0C036BDCDF8CD83A95EE594FBDD9977910AE69F58936D3', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-782' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/assets/src/mainnet/panacea.ts b/packages/assets/src/mainnet/panacea.ts index 7416f1e16..25193aaa3 100644 --- a/packages/assets/src/mainnet/panacea.ts +++ b/packages/assets/src/mainnet/panacea.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-82', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/passage.ts b/packages/assets/src/mainnet/passage.ts index 7ec1d9b16..dda237a49 100644 --- a/packages/assets/src/mainnet/passage.ts +++ b/packages/assets/src/mainnet/passage.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2494', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/persistence.ts b/packages/assets/src/mainnet/persistence.ts index 25e1e8817..b449dfe31 100644 --- a/packages/assets/src/mainnet/persistence.ts +++ b/packages/assets/src/mainnet/persistence.ts @@ -100,7 +100,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098', + 'ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C', exponent: 0, aliases: ['uakt'] }, @@ -109,7 +109,7 @@ const assets: AssetList = { exponent: 6 } ], - base: 'ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098', + base: 'ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C', name: 'Akash Network', display: 'akt', symbol: 'AKT', @@ -132,12 +132,12 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-6', + channel_id: 'channel-127', base_denom: 'uakt', chain_name: 'akash' }, chain: { - channel_id: 'channel-5' + channel_id: 'channel-213' } } ] @@ -147,7 +147,7 @@ const assets: AssetList = { denom_units: [ { denom: - 'ibc/115F68FBA220A028C6F6ED08EA0C1A9C8C52798B14FB66E6C89D5D8C06A524D4', + 'ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347', exponent: 0, aliases: [ 'ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5' @@ -159,7 +159,7 @@ const assets: AssetList = { } ], type_asset: 'ics20', - base: 'ibc/115F68FBA220A028C6F6ED08EA0C1A9C8C52798B14FB66E6C89D5D8C06A524D4', + base: 'ibc/3F9039B263FEF388106F5B86A28DCE9A3D071D9AC8713C4C5B92BC7D8FC4D347', name: 'Tether USDt', display: 'usdt', symbol: 'USDt', @@ -167,13 +167,13 @@ const assets: AssetList = { { type: 'ibc', counterparty: { - channel_id: 'channel-6', + channel_id: 'channel-127', base_denom: 'ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5', chain_name: 'akash' }, chain: { - channel_id: 'channel-5' + channel_id: 'channel-213' } } ], @@ -18983,6 +18983,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/95B15110C8BA3B330F4E24878A0E67A27CF51E15B69BF9BC023DA71CC3682FAC', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-4', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-6' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'QCK - native token of Quicksilver', denom_units: [ diff --git a/packages/assets/src/mainnet/planq.ts b/packages/assets/src/mainnet/planq.ts index 5a7adb16f..1b6d38eb3 100644 --- a/packages/assets/src/mainnet/planq.ts +++ b/packages/assets/src/mainnet/planq.ts @@ -15844,6 +15844,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-492', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Sei.', denom_units: [ @@ -16153,6 +16197,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/B2D5D8F82E84F0E87B74AAD2FAFCD58181F9FE250B476A73E5F688C99B8828E5', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/B2D5D8F82E84F0E87B74AAD2FAFCD58181F9FE250B476A73E5F688C99B8828E5', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-13', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-59' + } + } + ] + }, { description: 'The native token of SOURCE Chain', denom_units: [ diff --git a/packages/assets/src/mainnet/provenance.ts b/packages/assets/src/mainnet/provenance.ts index 6bb7c0ef7..951ac507f 100644 --- a/packages/assets/src/mainnet/provenance.ts +++ b/packages/assets/src/mainnet/provenance.ts @@ -2,6 +2,181 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { chain_name: 'provenance', assets: [ + { + description: 'The permissioned staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/2478AF3448658796EA944FD3D7A324A532DA8CA9A53F849EAEE1E7AB5ED9448A', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } + ], + base: 'ibc/2478AF3448658796EA944FD3D7A324A532DA8CA9A53F849EAEE1E7AB5ED9448A', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20', + base_denom: 'ustake', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: + 'Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.', + denom_units: [ + { + denom: + 'ibc/37B536E5A81E323BE166B4F7FF3A49C1C65234C05B19A3D8E274C0A05D7BEAA1', + exponent: 0, + aliases: ['ufrienzies'] + }, + { + denom: 'frienzies', + exponent: 6 + } + ], + base: 'ibc/37B536E5A81E323BE166B4F7FF3A49C1C65234C05B19A3D8E274C0A05D7BEAA1', + display: 'frienzies', + name: 'Frienzies', + symbol: 'FRNZ', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20', + base_denom: 'ufrienzies', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-10' + } + } + ] + }, + { + description: 'ATOM token on Noble', + denom_units: [ + { + denom: + 'ibc/ED83D4C7E2BB7F515EFE01F39339583C8BABDC62EFA006AE81185F0BEA9BEC9E', + exponent: 0, + aliases: [ + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0' + ] + }, + { + denom: 'atom', + exponent: 6, + aliases: ['ATOM'] + } + ], + type_asset: 'ics20', + base: 'ibc/ED83D4C7E2BB7F515EFE01F39339583C8BABDC62EFA006AE81185F0BEA9BEC9E', + name: 'Atom Staking Coin', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20', + base_denom: + 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/616E26A85AD20A3DDEAEBDDE7262E3BA9356C557BC15CACEA86768D7D51FA703', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/616E26A85AD20A3DDEAEBDDE7262E3BA9356C557BC15CACEA86768D7D51FA703', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + coingecko_id: 'usd-coin', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20', + base_denom: 'uusdc', + chain_name: 'noble' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ] + }, { description: 'The native token of Osmosis', denom_units: [ @@ -13695,6 +13870,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/BF10AE5DF0897B50B535EF03898E748823410724EF83CADC9519E6150DAEB9B7', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/BF10AE5DF0897B50B535EF03898E748823410724EF83CADC9519E6150DAEB9B7', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-222', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-7' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pundix.ts b/packages/assets/src/mainnet/pundix.ts index e34dcc040..23a2bab63 100644 --- a/packages/assets/src/mainnet/pundix.ts +++ b/packages/assets/src/mainnet/pundix.ts @@ -13782,6 +13782,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12618', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/pylons.ts b/packages/assets/src/mainnet/pylons.ts index 644f01bf3..9d253178f 100644 --- a/packages/assets/src/mainnet/pylons.ts +++ b/packages/assets/src/mainnet/pylons.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/2131CDDEE322464EBC1E8A1B3C6CFC2F235E8D7ABD89E37D686ACAD9B071279B', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2131CDDEE322464EBC1E8A1B3C6CFC2F235E8D7ABD89E37D686ACAD9B071279B', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-17683', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-29' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/quasar.ts b/packages/assets/src/mainnet/quasar.ts index d2e04d2bb..2a5ff3719 100644 --- a/packages/assets/src/mainnet/quasar.ts +++ b/packages/assets/src/mainnet/quasar.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-688', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/quicksilver.ts b/packages/assets/src/mainnet/quicksilver.ts index 0f7dcb523..03d40ada6 100644 --- a/packages/assets/src/mainnet/quicksilver.ts +++ b/packages/assets/src/mainnet/quicksilver.ts @@ -14448,6 +14448,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-522', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/qwoyn.ts b/packages/assets/src/mainnet/qwoyn.ts index 5d9d09280..70648208e 100644 --- a/packages/assets/src/mainnet/qwoyn.ts +++ b/packages/assets/src/mainnet/qwoyn.ts @@ -13845,6 +13845,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-880', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/realio.ts b/packages/assets/src/mainnet/realio.ts index b9d238457..85d6c11b9 100644 --- a/packages/assets/src/mainnet/realio.ts +++ b/packages/assets/src/mainnet/realio.ts @@ -15260,6 +15260,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1424', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/rebus.ts b/packages/assets/src/mainnet/rebus.ts index 5b2fccf60..94d9d3754 100644 --- a/packages/assets/src/mainnet/rebus.ts +++ b/packages/assets/src/mainnet/rebus.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-355', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/regen.ts b/packages/assets/src/mainnet/regen.ts index 19f23c22f..fb35580fb 100644 --- a/packages/assets/src/mainnet/regen.ts +++ b/packages/assets/src/mainnet/regen.ts @@ -15450,6 +15450,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/rizon.ts b/packages/assets/src/mainnet/rizon.ts index 40c39b3ad..d4536a7d8 100644 --- a/packages/assets/src/mainnet/rizon.ts +++ b/packages/assets/src/mainnet/rizon.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-221', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/scorum.ts b/packages/assets/src/mainnet/scorum.ts index 61343b0ea..c61d23386 100644 --- a/packages/assets/src/mainnet/scorum.ts +++ b/packages/assets/src/mainnet/scorum.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-20100', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/secretnetwork.ts b/packages/assets/src/mainnet/secretnetwork.ts index f702eb148..2148124ce 100644 --- a/packages/assets/src/mainnet/secretnetwork.ts +++ b/packages/assets/src/mainnet/secretnetwork.ts @@ -21342,6 +21342,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-88', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/sei.ts b/packages/assets/src/mainnet/sei.ts index f461cc50e..4675428a0 100644 --- a/packages/assets/src/mainnet/sei.ts +++ b/packages/assets/src/mainnet/sei.ts @@ -17495,6 +17495,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-782', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/sentinel.ts b/packages/assets/src/mainnet/sentinel.ts index 745821b10..46ee05d50 100644 --- a/packages/assets/src/mainnet/sentinel.ts +++ b/packages/assets/src/mainnet/sentinel.ts @@ -14112,6 +14112,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-2', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/sge.ts b/packages/assets/src/mainnet/sge.ts index 536988c2d..78d2c771d 100644 --- a/packages/assets/src/mainnet/sge.ts +++ b/packages/assets/src/mainnet/sge.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5485', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shareledger.ts b/packages/assets/src/mainnet/shareledger.ts index 095010f37..201341e5c 100644 --- a/packages/assets/src/mainnet/shareledger.ts +++ b/packages/assets/src/mainnet/shareledger.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-647', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/shentu.ts b/packages/assets/src/mainnet/shentu.ts index 29c8a3295..5f41659ac 100644 --- a/packages/assets/src/mainnet/shentu.ts +++ b/packages/assets/src/mainnet/shentu.ts @@ -13695,6 +13695,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/6DAA6467300DCDA35A00180F7E170C9419BE12E5C0B24118C75BAEA252F0C28C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-146', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-8' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/sifchain.ts b/packages/assets/src/mainnet/sifchain.ts index 8c699c68f..c63f2c31a 100644 --- a/packages/assets/src/mainnet/sifchain.ts +++ b/packages/assets/src/mainnet/sifchain.ts @@ -14338,6 +14338,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/55B7B25D4E3FD713B9D1C3D5911EC0D84B86E9709FE6E261B2EEA5AF69B8B737', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/55B7B25D4E3FD713B9D1C3D5911EC0D84B86E9709FE6E261B2EEA5AF69B8B737', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-47', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-17' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/sommelier.ts b/packages/assets/src/mainnet/sommelier.ts index 09225f5fa..9d92e5a4f 100644 --- a/packages/assets/src/mainnet/sommelier.ts +++ b/packages/assets/src/mainnet/sommelier.ts @@ -17112,6 +17112,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-165', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Stride', denom_units: [ diff --git a/packages/assets/src/mainnet/source.ts b/packages/assets/src/mainnet/source.ts index 051fee0ec..09fb18b3e 100644 --- a/packages/assets/src/mainnet/source.ts +++ b/packages/assets/src/mainnet/source.ts @@ -13696,6 +13696,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-8945', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native EVM, governance and staking token of the Planq Network', diff --git a/packages/assets/src/mainnet/stafihub.ts b/packages/assets/src/mainnet/stafihub.ts index e048eb9e8..9c3baae19 100644 --- a/packages/assets/src/mainnet/stafihub.ts +++ b/packages/assets/src/mainnet/stafihub.ts @@ -15606,6 +15606,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/62FA05109E958D7A623904C6343094E2F306196A8A464D82DA1C59F4C6D03C71', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-5413', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-10' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native staking token of Terra.', denom_units: [ diff --git a/packages/assets/src/mainnet/stargaze.ts b/packages/assets/src/mainnet/stargaze.ts index db717ae26..99b4beef7 100644 --- a/packages/assets/src/mainnet/stargaze.ts +++ b/packages/assets/src/mainnet/stargaze.ts @@ -19255,6 +19255,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-75', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/starname.ts b/packages/assets/src/mainnet/starname.ts index b12867731..0e4f61581 100644 --- a/packages/assets/src/mainnet/starname.ts +++ b/packages/assets/src/mainnet/starname.ts @@ -14026,6 +14026,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/38BEC8B42678213B7E67359033483A3106CBBA10AEB30E0C6C78949ECEA8E5CF', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-15', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-2' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/stride.ts b/packages/assets/src/mainnet/stride.ts index 081a97c39..fbc3a1d9c 100644 --- a/packages/assets/src/mainnet/stride.ts +++ b/packages/assets/src/mainnet/stride.ts @@ -20230,6 +20230,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/DAFC8BED11EEE339CC58F5A3F2CB79D01C503042F401E30888F6C723CEC1037D', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-326', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-5' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', @@ -21155,6 +21199,49 @@ const assets: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/46F456D8F97E31F64DDB97E7F1D477093293D3D6968A889EB8940E03CBA38683', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/46F456D8F97E31F64DDB97E7F1D477093293D3D6968A889EB8940E03CBA38683', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-11', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-149' + } + } + ] + }, { description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain', diff --git a/packages/assets/src/mainnet/teritori.ts b/packages/assets/src/mainnet/teritori.ts index 427419baa..27fffc309 100644 --- a/packages/assets/src/mainnet/teritori.ts +++ b/packages/assets/src/mainnet/teritori.ts @@ -15436,6 +15436,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-362', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/terra.ts b/packages/assets/src/mainnet/terra.ts index 017f09112..80e4f5ae5 100644 --- a/packages/assets/src/mainnet/terra.ts +++ b/packages/assets/src/mainnet/terra.ts @@ -14180,6 +14180,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-72', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/terra2.ts b/packages/assets/src/mainnet/terra2.ts index 5f2b36154..7ed16bf53 100644 --- a/packages/assets/src/mainnet/terra2.ts +++ b/packages/assets/src/mainnet/terra2.ts @@ -21058,6 +21058,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/3B3A71AF0A97761EA6CA6AF2F8BBC4D1C2E03990DB2DC15D77091AB904B2F089', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-251', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-1' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The native token of Secret Network', denom_units: [ diff --git a/packages/assets/src/mainnet/tgrade.ts b/packages/assets/src/mainnet/tgrade.ts index c33673b5f..d7accb83b 100644 --- a/packages/assets/src/mainnet/tgrade.ts +++ b/packages/assets/src/mainnet/tgrade.ts @@ -13877,6 +13877,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-263', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/umee.ts b/packages/assets/src/mainnet/umee.ts index f61cd1a30..6b50b2335 100644 --- a/packages/assets/src/mainnet/umee.ts +++ b/packages/assets/src/mainnet/umee.ts @@ -17187,6 +17187,50 @@ const assets: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-184', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/assets/src/mainnet/unification.ts b/packages/assets/src/mainnet/unification.ts index 351481bb8..0029fd3ac 100644 --- a/packages/assets/src/mainnet/unification.ts +++ b/packages/assets/src/mainnet/unification.ts @@ -14128,6 +14128,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-382', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/vidulum.ts b/packages/assets/src/mainnet/vidulum.ts index 92c9bcd05..c9537bcca 100644 --- a/packages/assets/src/mainnet/vidulum.ts +++ b/packages/assets/src/mainnet/vidulum.ts @@ -13886,6 +13886,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-124', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/mainnet/xpla.ts b/packages/assets/src/mainnet/xpla.ts index 783d72a2e..f27928acc 100644 --- a/packages/assets/src/mainnet/xpla.ts +++ b/packages/assets/src/mainnet/xpla.ts @@ -14230,6 +14230,50 @@ const assets: AssetList = { } } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/4B8A4CB5A751EA1C03079CC7B25D8395B95D503E2CDD3C0149980D45F84B557C', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-1634', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-9' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/assets/src/testnet/assets.ts b/packages/assets/src/testnet/assets.ts index 1b02db2a8..d4f5e21d2 100644 --- a/packages/assets/src/testnet/assets.ts +++ b/packages/assets/src/testnet/assets.ts @@ -9,6 +9,7 @@ import _composabletestnet from './composabletestnet'; import _cosmoshubtestnet from './cosmoshubtestnet'; import _doravotatestnet from './doravotatestnet'; import _dydxtestnet from './dydxtestnet'; +import _elystestnet from './elystestnet'; import _empowertestnet from './empowertestnet'; import _entrypointtestnet from './entrypointtestnet'; import _impacthubtestnet from './impacthubtestnet'; @@ -42,6 +43,7 @@ const assets: AssetList[] = [ _cosmoshubtestnet, _doravotatestnet, _dydxtestnet, + _elystestnet, _empowertestnet, _entrypointtestnet, _impacthubtestnet, diff --git a/packages/assets/src/testnet/cosmoshubtestnet.ts b/packages/assets/src/testnet/cosmoshubtestnet.ts index 06b5b8936..6a4045f48 100644 --- a/packages/assets/src/testnet/cosmoshubtestnet.ts +++ b/packages/assets/src/testnet/cosmoshubtestnet.ts @@ -44,6 +44,198 @@ const assets: AssetList = { } ] }, + { + description: 'The native token of Elys Network', + denom_units: [ + { + denom: + 'ibc/D6D41D0C0E61B1F5AED741F70F16F7A4F1C14DEE7F889D561CDBF4CF2BB99C8D', + exponent: 0, + aliases: ['uelys'] + }, + { + denom: 'melys', + exponent: 3, + aliases: ['millielys'] + }, + { + denom: 'elys', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/D6D41D0C0E61B1F5AED741F70F16F7A4F1C14DEE7F889D561CDBF4CF2BB99C8D', + name: 'Elys Network', + display: 'elys', + symbol: 'ELYS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + }, + coingecko_id: 'elys', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-16', + base_denom: 'uelys', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-3302' + } + } + ] + }, + { + description: 'Eden token definition', + denom_units: [ + { + denom: + 'ibc/D62F9AC7E2AB0D54B4C5A45139673954CCAF1FA217F820D214CC22E85A6761B7', + exponent: 0, + aliases: ['ueden'] + }, + { + denom: 'meden', + exponent: 3, + aliases: ['millieden'] + }, + { + denom: 'eden', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/D62F9AC7E2AB0D54B4C5A45139673954CCAF1FA217F820D214CC22E85A6761B7', + name: 'Eden', + display: 'eden', + symbol: 'EDEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-16', + base_denom: 'ueden', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-3302' + } + } + ] + }, + { + description: 'USDC from Noble', + denom_units: [ + { + denom: + 'ibc/E3D40317461F1D2E4B1E29CD49A252E4AC52CAC9679DAB2F29EA45D113E172C1', + exponent: 0, + aliases: [ + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E3D40317461F1D2E4B1E29CD49A252E4AC52CAC9679DAB2F29EA45D113E172C1', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-16', + base_denom: + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-3302' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/7542747129561B26DA190E90B6CE434432D3038E43CB23F5D67B828AA3E4479F', + exponent: 0, + aliases: [ + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/7542747129561B26DA190E90B6CE434432D3038E43CB23F5D67B828AA3E4479F', + name: 'ATOM on Elys', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-16', + base_denom: + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-3302' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, { description: 'The native staking and governance token of the testnet version of Empower.', diff --git a/packages/assets/src/testnet/elystestnet.ts b/packages/assets/src/testnet/elystestnet.ts new file mode 100644 index 000000000..33452d17a --- /dev/null +++ b/packages/assets/src/testnet/elystestnet.ts @@ -0,0 +1,198 @@ +import { AssetList } from '@chain-registry/types'; +const assets: AssetList = { + chain_name: 'elystestnet', + assets: [ + { + description: + 'The native staking and governance token of the Theta testnet version of the Cosmos Hub.', + denom_units: [ + { + denom: + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + exponent: 0, + aliases: ['uatom'] + }, + { + denom: 'atom', + exponent: 6 + } + ], + base: 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + name: 'Cosmos', + display: 'atom', + symbol: 'ATOM', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-3302', + base_denom: 'uatom', + chain_name: 'cosmoshubtestnet' + }, + chain: { + channel_id: 'channel-16' + } + } + ] + }, + { + description: 'The controlled staking asset for Noble Chain', + denom_units: [ + { + denom: + 'ibc/6F68FCA68B0C4AF34D0C9875541BB993A395D6BAF40A56DB1B105D09C180EB33', + exponent: 0, + aliases: ['ustake'] + }, + { + denom: 'stake', + exponent: 6 + } + ], + base: 'ibc/6F68FCA68B0C4AF34D0C9875541BB993A395D6BAF40A56DB1B105D09C180EB33', + name: 'Stake', + display: 'stake', + symbol: 'STAKE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'ustake', + chain_name: 'nobletestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ] + }, + { + description: + 'Love is a test tokenfactory asset controlled by the Strangelove Team', + denom_units: [ + { + denom: + 'ibc/3BEEAE00FEA32C78523A0D118CF6C05068CF6FF0537325E7297A2187D6C2FCAF', + exponent: 0, + aliases: ['ulove'] + }, + { + denom: 'love', + exponent: 6 + } + ], + base: 'ibc/3BEEAE00FEA32C78523A0D118CF6C05068CF6FF0537325E7297A2187D6C2FCAF', + display: 'love', + name: 'Love', + symbol: 'LOVE', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'ulove', + chain_name: 'nobletestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ] + }, + { + description: 'USD Coin', + denom_units: [ + { + denom: + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + exponent: 0, + aliases: ['uusdc'] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + base: 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + display: 'usdc', + name: 'USD Coin', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'uusdc', + chain_name: 'nobletestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ], + logo_URIs: { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + }, + images: [ + { + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg' + } + ] + }, + { + description: + 'USDLR is a fiat-backed stablecoin issued by Stable. Stable pays DeFi protocols who distribute USDLR.', + denom_units: [ + { + denom: + 'ibc/A8165705390D16D6B6BBECD62308D730C2CAAA8817E0BB5E136F611FB84FCDE3', + exponent: 0, + aliases: ['uusdlr'] + }, + { + denom: 'usdlr', + exponent: 6 + } + ], + base: 'ibc/A8165705390D16D6B6BBECD62308D730C2CAAA8817E0BB5E136F611FB84FCDE3', + display: 'usdlr', + name: 'USDLR by Stable', + symbol: 'USDLR', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-19', + base_denom: 'uusdlr', + chain_name: 'nobletestnet' + }, + chain: { + channel_id: 'channel-12' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nobletestnet/images/usdlr.svg' + } + ] + } + ] +}; +export default assets; diff --git a/packages/assets/src/testnet/index.ts b/packages/assets/src/testnet/index.ts index f23e0906f..c17071fa0 100644 --- a/packages/assets/src/testnet/index.ts +++ b/packages/assets/src/testnet/index.ts @@ -7,6 +7,7 @@ export * as composabletestnet from './composabletestnet'; export * as cosmoshubtestnet from './cosmoshubtestnet'; export * as doravotatestnet from './doravotatestnet'; export * as dydxtestnet from './dydxtestnet'; +export * as elystestnet from './elystestnet'; export * as empowertestnet from './empowertestnet'; export * as entrypointtestnet from './entrypointtestnet'; export * as impacthubtestnet from './impacthubtestnet'; diff --git a/packages/assets/src/testnet/nobletestnet.ts b/packages/assets/src/testnet/nobletestnet.ts index bdddbce7e..a85f05aec 100644 --- a/packages/assets/src/testnet/nobletestnet.ts +++ b/packages/assets/src/testnet/nobletestnet.ts @@ -2,6 +2,198 @@ import { AssetList } from '@chain-registry/types'; const assets: AssetList = { chain_name: 'nobletestnet', assets: [ + { + description: 'The native token of Elys Network', + denom_units: [ + { + denom: + 'ibc/AAA364B0A1B8482ED5415078451C58C907EDE7751F9C4A7F9D0C03181D97DE39', + exponent: 0, + aliases: ['uelys'] + }, + { + denom: 'melys', + exponent: 3, + aliases: ['millielys'] + }, + { + denom: 'elys', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/AAA364B0A1B8482ED5415078451C58C907EDE7751F9C4A7F9D0C03181D97DE39', + name: 'Elys Network', + display: 'elys', + symbol: 'ELYS', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + }, + coingecko_id: 'elys', + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/elys.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: 'uelys', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, + { + description: 'Eden token definition', + denom_units: [ + { + denom: + 'ibc/A9C7A16BEEEE66019AD9A2693806C72521F502714B354324688D025F0DEF19F2', + exponent: 0, + aliases: ['ueden'] + }, + { + denom: 'meden', + exponent: 3, + aliases: ['millieden'] + }, + { + denom: 'eden', + exponent: 6, + aliases: [] + } + ], + base: 'ibc/A9C7A16BEEEE66019AD9A2693806C72521F502714B354324688D025F0DEF19F2', + name: 'Eden', + display: 'eden', + symbol: 'EDEN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: 'ueden', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-19' + } + } + ] + }, + { + description: 'USDC from Noble', + denom_units: [ + { + denom: + 'ibc/43F3DB349524D2EEB9C2E42E00A5004EF77475D53771856E853B555F4FB82E47', + exponent: 0, + aliases: [ + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65' + ] + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/43F3DB349524D2EEB9C2E42E00A5004EF77475D53771856E853B555F4FB82E47', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-19' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/9937AE9EB62A04DDDDF028561F0151F89C20E5C57EB1FF3598B8B7889CDBD5AD', + exponent: 0, + aliases: [ + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4' + ] + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/9937AE9EB62A04DDDDF028561F0151F89C20E5C57EB1FF3598B8B7889CDBD5AD', + name: 'ATOM on Elys', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-12', + base_denom: + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + chain_name: 'elystestnet' + }, + chain: { + channel_id: 'channel-19' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + }, { description: 'The native token of Osmosis', denom_units: [ diff --git a/packages/chain-registry/chain-registry b/packages/chain-registry/chain-registry index 360862e37..ff39d74d8 160000 --- a/packages/chain-registry/chain-registry +++ b/packages/chain-registry/chain-registry @@ -1 +1 @@ -Subproject commit 360862e3710c2106cd89cabf2131455a5d579558 +Subproject commit ff39d74d8e210c75a4f2588faae3abb57308956a diff --git a/packages/chain-registry/src/mainnet/akash/ibc.ts b/packages/chain-registry/src/mainnet/akash/ibc.ts index 9917d050d..073379f52 100644 --- a/packages/chain-registry/src/mainnet/akash/ibc.ts +++ b/packages/chain-registry/src/mainnet/akash/ibc.ts @@ -273,22 +273,22 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'akash', - client_id: '07-tendermint-15', - connection_id: 'connection-8' + client_id: '07-tendermint-188', + connection_id: 'connection-174' }, chain_2: { chain_name: 'persistence', - client_id: '07-tendermint-5', - connection_id: 'connection-4' + client_id: '07-tendermint-169', + connection_id: 'connection-214' }, channels: [ { chain_1: { - channel_id: 'channel-6', + channel_id: 'channel-127', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5', + channel_id: 'channel-213', port_id: 'transfer' }, ordering: 'unordered', diff --git a/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts b/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts index 9917d050d..073379f52 100644 --- a/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/akash/ibc_chain1.ts @@ -273,22 +273,22 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'akash', - client_id: '07-tendermint-15', - connection_id: 'connection-8' + client_id: '07-tendermint-188', + connection_id: 'connection-174' }, chain_2: { chain_name: 'persistence', - client_id: '07-tendermint-5', - connection_id: 'connection-4' + client_id: '07-tendermint-169', + connection_id: 'connection-214' }, channels: [ { chain_1: { - channel_id: 'channel-6', + channel_id: 'channel-127', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5', + channel_id: 'channel-213', port_id: 'transfer' }, ordering: 'unordered', diff --git a/packages/chain-registry/src/mainnet/archway/chain.ts b/packages/chain-registry/src/mainnet/archway/chain.ts index c89c7aa5f..24fd9d9ad 100644 --- a/packages/chain-registry/src/mainnet/archway/chain.ts +++ b/packages/chain-registry/src/mainnet/archway/chain.ts @@ -50,10 +50,6 @@ const info: Chain = { address: 'https://rpc.mainnet.archway.io', provider: 'Archway Foundation' }, - { - address: 'https://rpc-archway.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://archway-mainnet-archive.allthatnode.com:26657', provider: 'All That Node' @@ -184,10 +180,6 @@ const info: Chain = { address: 'https://archway.api.kjnodes.com', provider: 'kjnodes' }, - { - address: 'https://api-archway.cosmos-spaces.cloud', - provider: 'Cosmos Spaces' - }, { address: 'https://api-archway.cryptech.com.ua', provider: 'cryptech' @@ -334,10 +326,6 @@ const info: Chain = { address: 'grpc.archway.stakeup.tech:443', provider: 'StakeUp' }, - { - address: 'grpc-archway.cosmos-spaces.cloud:4820', - provider: 'Cosmos Spaces' - }, { address: 'grpc-archway-mainnet.testnet-pride.com:9096', provider: 'TestnetPride' diff --git a/packages/chain-registry/src/mainnet/aura/chain.ts b/packages/chain-registry/src/mainnet/aura/chain.ts index b89cfbc1e..c28a68ab9 100644 --- a/packages/chain-registry/src/mainnet/aura/chain.ts +++ b/packages/chain-registry/src/mainnet/aura/chain.ts @@ -99,6 +99,10 @@ const info: Chain = { { address: 'https://aura-rpc.palamar.io', provider: 'Palamar' + }, + { + address: 'https://aura.rpc.srv.stakr.space', + provider: 'STAKR.space' } ], rest: [ @@ -157,6 +161,10 @@ const info: Chain = { { address: 'https://aura-api.palamar.io', provider: 'Palamar' + }, + { + address: 'https://aura.api.srv.stakr.space', + provider: 'STAKR.space' } ], grpc: [ @@ -219,6 +227,10 @@ const info: Chain = { { address: 'aura-grpc.palamar.io:443', provider: 'Palamar' + }, + { + address: 'aura.grpc.srv.stakr.space:19090', + provider: 'STAKR.space' } ] }, @@ -269,6 +281,13 @@ const info: Chain = { tx_page: 'https://explorer.safeblock.space/aura/tx/${txHash}', account_page: 'https://explorer.safeblock.space/aura/account/${accountAddress}' + }, + { + kind: 'STAKR.space explorer', + url: 'https://explorer.stakr.space/aura/', + tx_page: 'https://explorer.stakr.space/aura/tx/${txHash}', + account_page: + 'https://explorer.stakr.space/aura/account/${accountAddress}' } ], images: [ diff --git a/packages/chain-registry/src/mainnet/axelar/chain.ts b/packages/chain-registry/src/mainnet/axelar/chain.ts index d6085a8d6..b7027031f 100644 --- a/packages/chain-registry/src/mainnet/axelar/chain.ts +++ b/packages/chain-registry/src/mainnet/axelar/chain.ts @@ -30,7 +30,12 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmos_sdk_version: + 'axelarnetwork/cosmos-sdk v0.45.17-0.20230904150332-37fb903a6c62', + cosmwasm_enabled: true, + cosmwasm_version: 'v0.33.0' + }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.svg' diff --git a/packages/chain-registry/src/mainnet/bitsong/chain.ts b/packages/chain-registry/src/mainnet/bitsong/chain.ts index 8f14793c4..b0d92cdf7 100644 --- a/packages/chain-registry/src/mainnet/bitsong/chain.ts +++ b/packages/chain-registry/src/mainnet/bitsong/chain.ts @@ -11,7 +11,11 @@ const info: Chain = { slip44: 639, daemon_name: 'bitsongd', node_home: '$HOME/.bitsongd', - codebase: {}, + codebase: { + cosmos_sdk_version: 'v0.45.16', + cosmwasm_enabled: true, + cosmwasm_version: 'v0.33.0' + }, fees: { fee_tokens: [ { diff --git a/packages/chain-registry/src/mainnet/dymension/chain.ts b/packages/chain-registry/src/mainnet/dymension/chain.ts index 2217f9636..e84009a63 100644 --- a/packages/chain-registry/src/mainnet/dymension/chain.ts +++ b/packages/chain-registry/src/mainnet/dymension/chain.ts @@ -135,7 +135,7 @@ const info: Chain = { provider: 'Wave' }, { - address: 'https://dym.rpc.cumulo.com.es:443', + address: 'https://archive.rpc.dym.cumulo.com.es:443', provider: 'Cumulo' }, { @@ -245,7 +245,7 @@ const info: Chain = { provider: 'Wave' }, { - address: 'https://dym.api.cumulo.com.es', + address: 'https://api.dym.cumulo.com.es', provider: 'Cumulo' }, { @@ -331,7 +331,7 @@ const info: Chain = { provider: 'Wave' }, { - address: 'dym.grpc.cumulo.com.es:443', + address: 'grpc.dym.cumulo.com.es:443', provider: 'Cumulo' }, { @@ -361,7 +361,7 @@ const info: Chain = { provider: 'Wave' }, { - address: 'https://dym.json-rpc.cumulo.com.es:443', + address: 'https://evm-rpc.dym.cumulo.com.es:443', provider: 'Cumulo' }, { diff --git a/packages/chain-registry/src/mainnet/genesisl1/chain.ts b/packages/chain-registry/src/mainnet/genesisl1/chain.ts index e0faa0dce..a0533cfe8 100644 --- a/packages/chain-registry/src/mainnet/genesisl1/chain.ts +++ b/packages/chain-registry/src/mainnet/genesisl1/chain.ts @@ -8,7 +8,7 @@ const info: Chain = { chain_id: 'genesis_29-2', bech32_prefix: 'genesis', daemon_name: 'genesisd', - node_home: '$HOME/.genesisd', + node_home: '$HOME/.genesis', slip44: 118, fees: { fee_tokens: [ @@ -27,7 +27,9 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmos_sdk_version: '0.46.15' + }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/genesisl1/images/l1.svg' @@ -43,6 +45,16 @@ const info: Chain = { { address: 'https://api.genesisl1.org', provider: 'GenesisL1' + }, + { + address: 'https://1317.genesisl1.org', + provider: 'GenesisL1' + } + ], + 'evm-http-jsonrpc': [ + { + address: 'https://rpc.genesisl1.org', + provider: 'GenesisL1' } ] }, diff --git a/packages/chain-registry/src/mainnet/migaloo/chain.ts b/packages/chain-registry/src/mainnet/migaloo/chain.ts index c20d1c2ef..265430898 100644 --- a/packages/chain-registry/src/mainnet/migaloo/chain.ts +++ b/packages/chain-registry/src/mainnet/migaloo/chain.ts @@ -35,9 +35,9 @@ const info: Chain = { svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.svg' }, codebase: { - cosmos_sdk_version: '0.46.15', + cosmos_sdk_version: 'v0.47.7', cosmwasm_enabled: true, - cosmwasm_version: 'v0.30.1-0.20230320091624-f5072b9b04a6' + cosmwasm_version: 'v0.45.0' }, apis: { rpc: [ diff --git a/packages/chain-registry/src/mainnet/neutron/ibc.ts b/packages/chain-registry/src/mainnet/neutron/ibc.ts index df971b412..5c35d0126 100644 --- a/packages/chain-registry/src/mainnet/neutron/ibc.ts +++ b/packages/chain-registry/src/mainnet/neutron/ibc.ts @@ -448,6 +448,24 @@ const info: IBCInfo[] = [ status: 'live', preferred: true } + }, + { + chain_1: { + channel_id: 'channel-1559', + port_id: + 'wasm.neutron14cwv7d4lwc69zrjrzywwh8c9327m8dpngpq52f5kgqephhgrjc2s9ry3eu' + }, + chain_2: { + channel_id: 'channel-48', + port_id: + 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + }, + ordering: 'unordered', + version: 'nois-v7', + tags: { + status: 'live', + preferred: true + } } ] }, diff --git a/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts index f055429c6..efa013bb0 100644 --- a/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/neutron/ibc_chain1.ts @@ -59,6 +59,24 @@ const info: IBCInfo[] = [ status: 'live', preferred: true } + }, + { + chain_1: { + channel_id: 'channel-1559', + port_id: + 'wasm.neutron14cwv7d4lwc69zrjrzywwh8c9327m8dpngpq52f5kgqephhgrjc2s9ry3eu' + }, + chain_2: { + channel_id: 'channel-48', + port_id: + 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + }, + ordering: 'unordered', + version: 'nois-v7', + tags: { + status: 'live', + preferred: true + } } ] }, diff --git a/packages/chain-registry/src/mainnet/nibiru/chain.ts b/packages/chain-registry/src/mainnet/nibiru/chain.ts index 4288d70ee..0ca0cde97 100644 --- a/packages/chain-registry/src/mainnet/nibiru/chain.ts +++ b/packages/chain-registry/src/mainnet/nibiru/chain.ts @@ -64,6 +64,10 @@ const info: Chain = { { address: 'https://rpc.nibiru.silentvalidator.com', provider: 'silent' + }, + { + address: 'https://nibiru.rpc.liveraven.net', + provider: 'LiveRaveN' } ], rest: [ @@ -86,6 +90,10 @@ const info: Chain = { { address: 'https://nibiru-api.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://nibiru.api.liveraven.net', + provider: 'LiveRaveN' } ], grpc: [ @@ -108,6 +116,10 @@ const info: Chain = { { address: 'https://nibiru-grpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'nibiru.grpc.liveraven.net:443', + provider: 'LiveRaveN' } ] }, @@ -124,6 +136,13 @@ const info: Chain = { tx_page: 'https://explorer.nodestake.org/nibiru/tx/${txHash}', account_page: 'https://explorer.nodestake.org/nibiru/account/${accountAddress}' + }, + { + kind: 'LiveRaveN', + url: 'https://mainnet.explorer.liveraven.net/nibiru', + tx_page: 'https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}', + account_page: + 'https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}' } ], images: [ diff --git a/packages/chain-registry/src/mainnet/noble/ibc.ts b/packages/chain-registry/src/mainnet/noble/ibc.ts index 9985ef444..049872713 100644 --- a/packages/chain-registry/src/mainnet/noble/ibc.ts +++ b/packages/chain-registry/src/mainnet/noble/ibc.ts @@ -651,6 +651,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-30', + connection_id: 'connection-37' + }, + chain_2: { + chain_name: 'provenance', + client_id: '07-tendermint-36', + connection_id: 'connection-13' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-20', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts index 37f12a1ee..8e0d75343 100644 --- a/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts +++ b/packages/chain-registry/src/mainnet/noble/ibc_chain1.ts @@ -94,6 +94,37 @@ const info: IBCInfo[] = [ } ] }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-30', + connection_id: 'connection-37' + }, + chain_2: { + chain_name: 'provenance', + client_id: '07-tendermint-36', + connection_id: 'connection-13' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-20', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/nois/ibc.ts b/packages/chain-registry/src/mainnet/nois/ibc.ts index 45e82405d..16b08af35 100644 --- a/packages/chain-registry/src/mainnet/nois/ibc.ts +++ b/packages/chain-registry/src/mainnet/nois/ibc.ts @@ -223,6 +223,24 @@ const info: IBCInfo[] = [ status: 'live', preferred: true } + }, + { + chain_1: { + channel_id: 'channel-1559', + port_id: + 'wasm.neutron14cwv7d4lwc69zrjrzywwh8c9327m8dpngpq52f5kgqephhgrjc2s9ry3eu' + }, + chain_2: { + channel_id: 'channel-48', + port_id: + 'wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp' + }, + ordering: 'unordered', + version: 'nois-v7', + tags: { + status: 'live', + preferred: true + } } ] }, diff --git a/packages/chain-registry/src/mainnet/omniflixhub/chain.ts b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts index 71f2b4afc..3a812b92e 100644 --- a/packages/chain-registry/src/mainnet/omniflixhub/chain.ts +++ b/packages/chain-registry/src/mainnet/omniflixhub/chain.ts @@ -100,6 +100,10 @@ const info: Chain = { { address: 'https://omniflix-rpc.publicnode.com:443', provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'https://mainnet.omniflix.rpc.srv.stakr.space', + provider: 'STAKR.space' } ], rest: [ @@ -158,6 +162,10 @@ const info: Chain = { { address: 'https://omniflix-rest.publicnode.com', provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'https://mainnet.omniflix.api.srv.stakr.space', + provider: 'STAKR.space' } ], grpc: [ @@ -208,6 +216,10 @@ const info: Chain = { { address: 'omniflix-grpc.publicnode.com:443', provider: 'Allnodes ⚡️ Nodes & Staking' + }, + { + address: 'mainnet.omniflix.grpc.stakr.space:39090', + provider: 'STAKR.space' } ] }, @@ -232,6 +244,13 @@ const info: Chain = { tx_page: 'https://atomscan.com/omniflixhub/transactions/${txHash}', account_page: 'https://atomscan.com/omniflixhub/accounts/${accountAddress}' + }, + { + kind: 'STAKR.space explorer', + url: 'https://explorer.stakr.space/omniflix/', + tx_page: 'https://explorer.stakr.space/omniflix/tx/${txHash}', + account_page: + 'https://explorer.stakr.space/omniflix/account/${accountAddress}' } ], images: [ diff --git a/packages/chain-registry/src/mainnet/oraichain/chain.ts b/packages/chain-registry/src/mainnet/oraichain/chain.ts index a9fcad701..f4cbb4860 100644 --- a/packages/chain-registry/src/mainnet/oraichain/chain.ts +++ b/packages/chain-registry/src/mainnet/oraichain/chain.ts @@ -30,7 +30,10 @@ const info: Chain = { } ] }, - codebase: {}, + codebase: { + cosmwasm_enabled: true, + cosmwasm_version: '0.30.2' + }, logo_URIs: { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.png', svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai.svg' @@ -64,6 +67,10 @@ const info: Chain = { { address: 'https://mainnet-orai-rpc.konsortech.xyz', provider: 'KonsorTech' + }, + { + address: 'https://rpc.orai.mortysnode.nl', + provider: "Morty's Nodes" } ], rest: [ diff --git a/packages/chain-registry/src/mainnet/osmosis/assets.ts b/packages/chain-registry/src/mainnet/osmosis/assets.ts index e410e0770..19e7b9ad3 100644 --- a/packages/chain-registry/src/mainnet/osmosis/assets.ts +++ b/packages/chain-registry/src/mainnet/osmosis/assets.ts @@ -14140,6 +14140,51 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'migaloo', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark', + channel_id: 'channel-5' + }, + chain: { + channel_id: 'channel-642', + path: 'transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/persistence/ibc.ts b/packages/chain-registry/src/mainnet/persistence/ibc.ts index f5667fb60..e9c8f94a6 100644 --- a/packages/chain-registry/src/mainnet/persistence/ibc.ts +++ b/packages/chain-registry/src/mainnet/persistence/ibc.ts @@ -35,22 +35,22 @@ const info: IBCInfo[] = [ $schema: '../ibc_data.schema.json', chain_1: { chain_name: 'akash', - client_id: '07-tendermint-15', - connection_id: 'connection-8' + client_id: '07-tendermint-188', + connection_id: 'connection-174' }, chain_2: { chain_name: 'persistence', - client_id: '07-tendermint-5', - connection_id: 'connection-4' + client_id: '07-tendermint-169', + connection_id: 'connection-214' }, channels: [ { chain_1: { - channel_id: 'channel-6', + channel_id: 'channel-127', port_id: 'transfer' }, chain_2: { - channel_id: 'channel-5', + channel_id: 'channel-213', port_id: 'transfer' }, ordering: 'unordered', diff --git a/packages/chain-registry/src/mainnet/provenance/ibc.ts b/packages/chain-registry/src/mainnet/provenance/ibc.ts index 77f05a84d..ef73e77f0 100644 --- a/packages/chain-registry/src/mainnet/provenance/ibc.ts +++ b/packages/chain-registry/src/mainnet/provenance/ibc.ts @@ -1,5 +1,36 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'noble', + client_id: '07-tendermint-30', + connection_id: 'connection-37' + }, + chain_2: { + chain_name: 'provenance', + client_id: '07-tendermint-36', + connection_id: 'connection-13' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-20', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-10', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live', + preferred: true + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/mainnet/sei/assets.ts b/packages/chain-registry/src/mainnet/sei/assets.ts index cb0411f0b..66f52e868 100644 --- a/packages/chain-registry/src/mainnet/sei/assets.ts +++ b/packages/chain-registry/src/mainnet/sei/assets.ts @@ -212,6 +212,32 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oozaru.png' } ] + }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + exponent: 0 + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ] } ] }; diff --git a/packages/chain-registry/src/mainnet/zetachain/chain.ts b/packages/chain-registry/src/mainnet/zetachain/chain.ts index c5d2dd6b0..6d395baa0 100644 --- a/packages/chain-registry/src/mainnet/zetachain/chain.ts +++ b/packages/chain-registry/src/mainnet/zetachain/chain.ts @@ -45,6 +45,10 @@ const info: Chain = { { address: 'https://zetachain-rpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://rpc.zetachain.nodestake.org', + provider: 'NodeStake' } ], rest: [ @@ -59,12 +63,20 @@ const info: Chain = { { address: 'https://zetachain-api.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://api.zetachain.nodestake.org', + provider: 'NodeStake' } ], grpc: [ { address: 'https://zetachain-grpc.lavenderfive.com:443', provider: 'Lavender.Five Nodes 🐝' + }, + { + address: 'https://grpc.zetachain.nodestake.org:443', + provider: 'NodeStake' } ] }, @@ -78,6 +90,11 @@ const info: Chain = { kind: 'BlockScout', url: 'https://zetachain.blockscout.com/', tx_page: 'https://zetachain.blockscout.com/tx/${txHash}' + }, + { + kind: 'NodeStake Explorer', + url: 'https://explorer.nodestake.org/zetachain', + tx_page: 'https://explorer.nodestake.org/zetachain/tx/${txHash}' } ] }; diff --git a/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts b/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts index 05e677db6..161290e52 100644 --- a/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts +++ b/packages/chain-registry/src/testnet/cascadiatestnet/chain.ts @@ -66,10 +66,6 @@ const info: Chain = { { address: 'https://rpc-test.cascadia.hexnodes.co:443', provider: 'Hexnodes' - }, - { - address: 'https://cascadia.rpc.liveraven.net:443', - provider: 'LiveRaveN' } ], grpc: [ @@ -88,10 +84,6 @@ const info: Chain = { { address: 'grpc-test.cascadia.hexnodes.co:19090', provider: 'Hexnodes' - }, - { - address: 'cascadia.grpc.liveraven.net:443', - provider: 'LiveRaveN' } ], rest: [ @@ -110,10 +102,6 @@ const info: Chain = { { address: 'https://lcd-test.cascadia.hexnodes.co', provider: 'Hexnodes' - }, - { - address: 'https://cascadia.api.liveraven.net:443', - provider: 'LiveRaveN' } ] }, diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts index f1fcf288a..68798203f 100644 --- a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc.ts @@ -1,5 +1,35 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-2522', + connection_id: 'connection-2881' + }, + chain_2: { + chain_name: 'elystestnet', + client_id: '07-tendermint-19', + connection_id: 'connection-17' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3302', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-16', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts index 83fbde92a..3fa90f2ee 100644 --- a/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts +++ b/packages/chain-registry/src/testnet/cosmoshubtestnet/ibc_chain1.ts @@ -1,5 +1,35 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-2522', + connection_id: 'connection-2881' + }, + chain_2: { + chain_name: 'elystestnet', + client_id: '07-tendermint-19', + connection_id: 'connection-17' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3302', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-16', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/chain-registry/src/testnet/cosstestnet/chain.ts b/packages/chain-registry/src/testnet/cosstestnet/chain.ts index f2adcc499..ebb9e3d9f 100644 --- a/packages/chain-registry/src/testnet/cosstestnet/chain.ts +++ b/packages/chain-registry/src/testnet/cosstestnet/chain.ts @@ -36,21 +36,13 @@ const info: Chain = { apis: { rpc: [ { - address: 'https://rpc-coss-node-1.coss.ink', - provider: 'COSS' - }, - { - address: 'https://rpc-coss-node-2.coss.ink/', + address: 'https://coss-testnet-rpc.coss.ink', provider: 'COSS' } ], rest: [ { - address: 'https://rest-coss-node-1.coss.ink', - provider: 'COSS' - }, - { - address: 'https://rest-coss-node-2.coss.ink', + address: 'https://coss-testnet-rest.coss.ink', provider: 'COSS' } ] diff --git a/packages/chain-registry/src/testnet/elystestnet/assets.ts b/packages/chain-registry/src/testnet/elystestnet/assets.ts index e32fcb615..dd2d1def5 100644 --- a/packages/chain-registry/src/testnet/elystestnet/assets.ts +++ b/packages/chain-registry/src/testnet/elystestnet/assets.ts @@ -67,6 +67,99 @@ const info: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/elystestnet/images/eden.png' } ] + }, + { + description: 'USDC from Noble', + denom_units: [ + { + denom: + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + exponent: 0 + }, + { + denom: 'usdc', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + name: 'Noble USD Coin', + display: 'usdc', + symbol: 'USDC', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'nobletestnet', + base_denom: 'uusdc', + channel_id: 'channel-19' + }, + chain: { + channel_id: 'channel-12', + path: 'transfer/channel-12/uusdc' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'noble', + base_denom: 'uusdc' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg' + } + }, + { + denom_units: [ + { + denom: + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + exponent: 0 + }, + { + denom: 'atom', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + name: 'ATOM on Elys', + display: 'atom', + symbol: 'ATOM', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'cosmoshubtestnet', + base_denom: 'uatom', + channel_id: 'channel-3302' + }, + chain: { + channel_id: 'channel-16', + path: 'transfer/channel-16/uatom' + } + } + ], + images: [ + { + image_sync: { + chain_name: 'cosmoshub', + base_denom: 'uatom' + }, + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png', + svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg' + } } ] }; diff --git a/packages/chain-registry/src/testnet/elystestnet/chain.ts b/packages/chain-registry/src/testnet/elystestnet/chain.ts index 43a103106..f80babafb 100644 --- a/packages/chain-registry/src/testnet/elystestnet/chain.ts +++ b/packages/chain-registry/src/testnet/elystestnet/chain.ts @@ -21,6 +21,30 @@ const info: Chain = { time: '1209600s' } }, + fees: { + fee_tokens: [ + { + denom: 'uelys', + low_gas_price: 10000, + average_gas_price: 25000, + high_gas_price: 30000 + }, + { + denom: + 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65', + low_gas_price: 10000, + average_gas_price: 25000, + high_gas_price: 30000 + }, + { + denom: + 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4', + low_gas_price: 10000, + average_gas_price: 25000, + high_gas_price: 30000 + } + ] + }, codebase: { cosmos_sdk_version: 'v0.47', cosmwasm_enabled: false diff --git a/packages/chain-registry/src/testnet/elystestnet/ibc.ts b/packages/chain-registry/src/testnet/elystestnet/ibc.ts new file mode 100644 index 000000000..4dae4c513 --- /dev/null +++ b/packages/chain-registry/src/testnet/elystestnet/ibc.ts @@ -0,0 +1,64 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'cosmoshubtestnet', + client_id: '07-tendermint-2522', + connection_id: 'connection-2881' + }, + chain_2: { + chain_name: 'elystestnet', + client_id: '07-tendermint-19', + connection_id: 'connection-17' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-3302', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-16', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'elystestnet', + client_id: '07-tendermint-9', + connection_id: 'connection-12' + }, + chain_2: { + chain_name: 'nobletestnet', + client_id: '07-tendermint-28', + connection_id: 'connection-26' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-12', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/testnet/elystestnet/ibc_chain1.ts b/packages/chain-registry/src/testnet/elystestnet/ibc_chain1.ts new file mode 100644 index 000000000..2f4c8bc9c --- /dev/null +++ b/packages/chain-registry/src/testnet/elystestnet/ibc_chain1.ts @@ -0,0 +1,34 @@ +import { IBCInfo } from '@chain-registry/types'; +const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'elystestnet', + client_id: '07-tendermint-9', + connection_id: 'connection-12' + }, + chain_2: { + chain_name: 'nobletestnet', + client_id: '07-tendermint-28', + connection_id: 'connection-26' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-12', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + } +]; +export default info; diff --git a/packages/chain-registry/src/testnet/elystestnet/index.ts b/packages/chain-registry/src/testnet/elystestnet/index.ts index 40bf3856e..af8a2d557 100644 --- a/packages/chain-registry/src/testnet/elystestnet/index.ts +++ b/packages/chain-registry/src/testnet/elystestnet/index.ts @@ -1,5 +1,9 @@ import _assets from './assets'; import _chain from './chain'; +import _ibc from './ibc'; +import _ibc_chain1 from './ibc_chain1'; export const assets = _assets; export const chain = _chain; +export const ibc = _ibc; +export const ibc_chain1 = _ibc_chain1; diff --git a/packages/chain-registry/src/testnet/ibc.ts b/packages/chain-registry/src/testnet/ibc.ts index d59a12285..16887d181 100644 --- a/packages/chain-registry/src/testnet/ibc.ts +++ b/packages/chain-registry/src/testnet/ibc.ts @@ -8,6 +8,7 @@ import * as _chain4energytestnet from './chain4energytestnet'; import * as _composabletestnet from './composabletestnet'; import * as _cosmoshubtestnet from './cosmoshubtestnet'; import * as _doravotatestnet from './doravotatestnet'; +import * as _elystestnet from './elystestnet'; import * as _empowertestnet from './empowertestnet'; import * as _entrypointtestnet from './entrypointtestnet'; import * as _impacthubtestnet from './impacthubtestnet'; @@ -33,6 +34,7 @@ const ibc: IBCInfo[] = [ ..._composabletestnet.ibc_chain1, ..._cosmoshubtestnet.ibc_chain1, ..._doravotatestnet.ibc_chain1, + ..._elystestnet.ibc_chain1, ..._empowertestnet.ibc_chain1, ..._entrypointtestnet.ibc_chain1, ..._impacthubtestnet.ibc_chain1, diff --git a/packages/chain-registry/src/testnet/nobletestnet/ibc.ts b/packages/chain-registry/src/testnet/nobletestnet/ibc.ts index 59d2d05c1..776cab4a3 100644 --- a/packages/chain-registry/src/testnet/nobletestnet/ibc.ts +++ b/packages/chain-registry/src/testnet/nobletestnet/ibc.ts @@ -1,5 +1,35 @@ import { IBCInfo } from '@chain-registry/types'; const info: IBCInfo[] = [ + { + $schema: '../ibc_data.schema.json', + chain_1: { + chain_name: 'elystestnet', + client_id: '07-tendermint-9', + connection_id: 'connection-12' + }, + chain_2: { + chain_name: 'nobletestnet', + client_id: '07-tendermint-28', + connection_id: 'connection-26' + }, + channels: [ + { + chain_1: { + channel_id: 'channel-12', + port_id: 'transfer' + }, + chain_2: { + channel_id: 'channel-19', + port_id: 'transfer' + }, + ordering: 'unordered', + version: 'ics20-1', + tags: { + status: 'live' + } + } + ] + }, { $schema: '../ibc_data.schema.json', chain_1: { diff --git a/packages/juno/src/asset_list.ts b/packages/juno/src/asset_list.ts index ef1b58493..9d618c89f 100644 --- a/packages/juno/src/asset_list.ts +++ b/packages/juno/src/asset_list.ts @@ -19392,6 +19392,50 @@ const asset_list: AssetList = { } ] }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + exponent: 0, + aliases: [ + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/96894C019DD4080673621D4FB3F6C3A1A1B0354956B3472C1037FBE951B5CCDE', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-42', + base_denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + chain_name: 'osmosis' + }, + chain: { + channel_id: 'channel-0' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] + }, { description: 'The XPRT token is primarily a governance token for the Persistence chain.', diff --git a/packages/osmosis/src/asset_list.ts b/packages/osmosis/src/asset_list.ts index ddfab6f7a..8a3cb2410 100644 --- a/packages/osmosis/src/asset_list.ts +++ b/packages/osmosis/src/asset_list.ts @@ -16729,6 +16729,49 @@ const asset_list: AssetList = { } ] }, + { + description: 'The Original Meme Coin on SEI Network', + denom_units: [ + { + denom: + 'ibc/B61F272C20D301DD6D0C036BDCDF8CD83A95EE594FBDD9977910AE69F58936D3', + exponent: 0, + aliases: [ + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed' + ] + }, + { + denom: 'SEIYAN', + exponent: 6 + } + ], + base: 'ibc/B61F272C20D301DD6D0C036BDCDF8CD83A95EE594FBDD9977910AE69F58936D3', + name: 'SEIYAN', + display: 'SEIYAN', + symbol: 'SEIYAN', + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SEIYAN.png' + } + ], + traces: [ + { + type: 'ibc', + counterparty: { + channel_id: 'channel-0', + base_denom: + 'sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed', + chain_name: 'sei' + }, + chain: { + channel_id: 'channel-782' + } + } + ] + }, { description: 'DVPN is the native token of the Sentinel Hub.', denom_units: [ diff --git a/packages/osmosis/src/assets.ts b/packages/osmosis/src/assets.ts index dbdf51415..ded7860ea 100644 --- a/packages/osmosis/src/assets.ts +++ b/packages/osmosis/src/assets.ts @@ -14140,6 +14140,51 @@ const assets: AssetList = { png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png' } ] + }, + { + description: 'SHARK is the apex price prediction market within Cosmos.', + denom_units: [ + { + denom: + 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + exponent: 0, + aliases: [ + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + ] + }, + { + denom: 'SHARK', + exponent: 6 + } + ], + type_asset: 'ics20', + base: 'ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834', + name: 'SHARK', + display: 'SHARK', + symbol: 'SHARK', + traces: [ + { + type: 'ibc', + counterparty: { + chain_name: 'migaloo', + base_denom: + 'factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark', + channel_id: 'channel-5' + }, + chain: { + channel_id: 'channel-642', + path: 'transfer/channel-642/factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark' + } + } + ], + logo_URIs: { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + }, + images: [ + { + png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png' + } + ] } ] }; From b922c9d5141655b92bdae8d22e1eabb92edfd8ec Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 18:49:03 +0800 Subject: [PATCH 45/54] feat: add new utils --- packages/utils/src/assets.ts | 82 +++++++++++++++++++++++++++------ packages/utils/src/calc.ts | 88 ++++++++++++++++++++---------------- packages/utils/src/chains.ts | 39 ++++++++++++++-- 3 files changed, 153 insertions(+), 56 deletions(-) diff --git a/packages/utils/src/assets.ts b/packages/utils/src/assets.ts index 9de010d83..3cfcd3378 100644 --- a/packages/utils/src/assets.ts +++ b/packages/utils/src/assets.ts @@ -3,6 +3,20 @@ import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; export type Denom = AssetDenomUnit['denom']; export type Exponent = AssetDenomUnit['exponent']; +export const customFind = ( + array: T[], + filterFn: (item: T) => boolean +): T | undefined => { + const filteredItems = array.filter(filterFn); + const filterCount = filteredItems.length; + + if (filterCount > 1) { + throw new Error(`Ambiguity Error: ${filterCount} items found.`); + } + + return filteredItems[0]; +}; + const getAssetByKeyValue = ( assets: AssetList[], key: keyof Asset, @@ -13,19 +27,7 @@ const getAssetByKeyValue = ( .filter(({ chain_name }) => !chainName || chain_name === chainName) .flatMap(({ assets }) => assets); - const matchingAssets = filteredAssets.filter((asset) => asset[key] === value); - - if (matchingAssets.length === 0) { - return undefined; - } - - if (matchingAssets.length > 1) { - throw new Error( - `Ambiguity: ${matchingAssets.length} assets found for ${key}: ${value}` - ); - } - - return matchingAssets[0]; + return customFind(filteredAssets, (asset) => asset[key] === value); }; export const getAssetByDenom = ( @@ -126,3 +128,57 @@ export const getExponentBySymbol = ( const asset = getAssetBySymbol(assets, symbol, chainName); return asset ? getExponentFromAsset(asset) : undefined; }; + +export const getNativeTokenByChainName = ( + assets: AssetList[], + chainName: string +): Asset | undefined => { + const assetList = customFind( + assets, + (assetList) => + assetList.chain_name === chainName && + !assetList.assets[0].base.startsWith('ibc/') + ); + + return assetList?.assets[0]; +}; + +export const getTokenLogoByDenom = ( + assets: AssetList[], + denom: Denom, + chainName?: string +): string | undefined => { + const asset = getAssetByDenom(assets, denom, chainName); + return Object.values(asset?.logo_URIs || {})[0]; +}; + +export const getChainLogo = ( + assets: AssetList[], + chainName: string +): string | undefined => { + const nativeToken = getNativeTokenByChainName(assets, chainName); + return Object.values(nativeToken?.logo_URIs || {})[0]; +}; + +export const getTokenNameByDenom = ( + assets: AssetList[], + denom: Denom, + chainName?: string +): string | undefined => { + const asset = getAssetByDenom(assets, denom, chainName); + return asset?.name; +}; + +export const getChainNameByDenom = (assets: AssetList[], denom: Denom) => { + const isIbcDenom = denom.startsWith('ibc/'); + + if (isIbcDenom) { + const asset = getAssetByDenom(assets, denom); + return asset?.traces?.find((t) => t.type === 'ibc')?.counterparty + ?.chain_name; + } + + return customFind(assets, (assetList) => + assetList.assets.some((asset) => asset.base === denom) + )?.chain_name; +}; diff --git a/packages/utils/src/calc.ts b/packages/utils/src/calc.ts index 98bbbe0dc..420220c5b 100644 --- a/packages/utils/src/calc.ts +++ b/packages/utils/src/calc.ts @@ -2,25 +2,24 @@ import { AssetList } from '@chain-registry/types'; import BigNumber from 'bignumber.js'; import { Denom, - getDenomByCoinGeckoId, getAssetBySymbol, getExponentFromAsset, - getExponentBySymbol + getDenomByCoinGeckoId } from './assets'; -export interface CoinGeckoUSD { +export interface CoinGeckoUSDPrice { usd: number; } -export interface PriceHash { +export interface DenomPriceMap { [key: Denom]: number; } -export const convertCoinGeckoPricesToDenomPriceMap = ( +export const mapCoinGeckoPricesToDenoms = ( assets: AssetList[], - prices: Record -): PriceHash => { - return Object.keys(prices).reduce((res: PriceHash, geckoId) => { + prices: Record +): DenomPriceMap => { + return Object.keys(prices).reduce((res: DenomPriceMap, geckoId) => { const denom = getDenomByCoinGeckoId(assets, geckoId); if (!denom) { throw new Error(`No denom found for CoinGecko ID: ${geckoId}`); @@ -30,17 +29,15 @@ export const convertCoinGeckoPricesToDenomPriceMap = ( }, {}); }; -export const noDecimals = (num: number | string): string => { - return new BigNumber(num).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); +export const roundDown = (value: number | string): string => { + return new BigNumber(value).decimalPlaces(0, BigNumber.ROUND_DOWN).toString(); }; -export const convertBaseUnitsToDollarValue = ( +const getAssetInfo = ( assets: AssetList[], - prices: PriceHash, symbol: string, - amount: string | number, chainName?: string -): string => { +) => { const asset = getAssetBySymbol(assets, symbol, chainName); const denom = asset?.base; const exponent = asset ? getExponentFromAsset(asset) : undefined; @@ -49,44 +46,57 @@ export const convertBaseUnitsToDollarValue = ( throw new Error(`No denom or exponent found for symbol: ${symbol}`); } - return new BigNumber(amount) - .shiftedBy(-exponent) - .multipliedBy(prices[denom]) - .toString(); + return { denom, exponent }; }; -export const convertDollarValueToDenomUnits = ( +const shiftDecimalPlaces = ( + amount: string | number, + exponent: number, + direction: 1 | -1 = 1 +) => { + return new BigNumber(amount).shiftedBy(exponent * direction).toString(); +}; + +export const convertBaseUnitToDollarValue = ( assets: AssetList[], - prices: PriceHash, + prices: DenomPriceMap, symbol: string, - value: string | number, + amount: string | number, chainName?: string ): string => { - const asset = getAssetBySymbol(assets, symbol, chainName); - const denom = asset?.base; - const exponent = asset ? getExponentFromAsset(asset) : undefined; - - if (!denom || !exponent) { - throw new Error(`No denom or exponent found for symbol: ${symbol}`); - } + const { denom, exponent } = getAssetInfo(assets, symbol, chainName); + const baseAmount = shiftDecimalPlaces(amount, exponent, -1); + return new BigNumber(baseAmount).multipliedBy(prices[denom]).toString(); +}; - return new BigNumber(value) - .dividedBy(prices[denom]) - .shiftedBy(exponent) - .toString(); +export const convertDollarValueToBaseUnit = ( + assets: AssetList[], + prices: DenomPriceMap, + symbol: string, + value: string | number, + chainName?: string +): string => { + const { denom, exponent } = getAssetInfo(assets, symbol, chainName); + const baseAmount = new BigNumber(value).dividedBy(prices[denom]).toString(); + return roundDown(shiftDecimalPlaces(baseAmount, exponent)); }; -export const convertBaseUnitsToDisplayUnits = ( +export const convertBaseUnitToDisplayUnit = ( assets: AssetList[], symbol: string, amount: string | number, chainName?: string ): string => { - const exponent = getExponentBySymbol(assets, symbol, chainName); - - if (!exponent) { - throw new Error(`No exponent found for symbol: ${symbol}`); - } + const { exponent } = getAssetInfo(assets, symbol, chainName); + return shiftDecimalPlaces(amount, exponent, -1); +}; - return new BigNumber(amount).shiftedBy(-exponent).toString(); +export const convertDisplayUnitToBaseUnit = ( + assets: AssetList[], + symbol: string, + amount: string | number, + chainName?: string +): string => { + const { exponent } = getAssetInfo(assets, symbol, chainName); + return roundDown(shiftDecimalPlaces(amount, exponent)); }; diff --git a/packages/utils/src/chains.ts b/packages/utils/src/chains.ts index 8e61bbf84..954fc1ecf 100644 --- a/packages/utils/src/chains.ts +++ b/packages/utils/src/chains.ts @@ -1,9 +1,40 @@ import { Chain } from '@chain-registry/types'; +import { customFind } from './assets'; -export const getGasPriceStep = (chain: Chain) => { +export const getGasPriceRangesFromChain = (chain: Chain) => { + const feeToken = chain.fees?.fee_tokens?.[0]; return { - low: chain.fees?.fee_tokens?.[0]?.low_gas_price ?? 0.01, - average: chain.fees?.fee_tokens?.[0]?.average_gas_price ?? 0.025, - high: chain.fees?.fee_tokens?.[0]?.high_gas_price ?? 0.04 + low: feeToken?.low_gas_price ?? 0.01, + average: feeToken?.average_gas_price ?? 0.025, + high: feeToken?.high_gas_price ?? 0.04 }; }; + +export const getChainByChainName = (chains: Chain[], chainName: string) => { + return customFind(chains, (chain) => chain.chain_name === chainName); +}; + +export const getChainByChainId = (chains: Chain[], chainId: string) => { + return customFind(chains, (chain) => chain.chain_id === chainId); +}; + +export const getChainNameByChainId = (chains: Chain[], chainId: string) => { + return getChainByChainId(chains, chainId)?.chain_name; +}; + +export const getChainIdByChainName = (chains: Chain[], chainName: string) => { + return getChainByChainName(chains, chainName)?.chain_id; +}; + +export const getChainGasPriceRanges = (chains: Chain[], chainName: string) => { + const chain = getChainByChainName(chains, chainName); + return chain ? getGasPriceRangesFromChain(chain) : undefined; +}; + +export const getChainPrettyName = (chains: Chain[], chainName: string) => { + return getChainByChainName(chains, chainName)?.pretty_name; +}; + +export const getChainBech32Prefix = (chains: Chain[], chainName: string) => { + return getChainByChainName(chains, chainName)?.bech32_prefix; +}; From c4895a469bed3cbe12305de2a99a1004f66efc25 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 18:49:40 +0800 Subject: [PATCH 46/54] feat: add tests for new utils --- .../utils/__tests__/asset-list-util.test.js | 124 --------------- packages/utils/__tests__/assets.test.js | 145 ++++++++++++++++++ packages/utils/__tests__/calc.test.js | 72 +++++++++ packages/utils/__tests__/chains.test.js | 72 +++++++++ 4 files changed, 289 insertions(+), 124 deletions(-) delete mode 100644 packages/utils/__tests__/asset-list-util.test.js create mode 100644 packages/utils/__tests__/assets.test.js create mode 100644 packages/utils/__tests__/calc.test.js create mode 100644 packages/utils/__tests__/chains.test.js diff --git a/packages/utils/__tests__/asset-list-util.test.js b/packages/utils/__tests__/asset-list-util.test.js deleted file mode 100644 index 3440864e7..000000000 --- a/packages/utils/__tests__/asset-list-util.test.js +++ /dev/null @@ -1,124 +0,0 @@ -import assets from '../../../__fixtures__/assets.json'; -import { - convertBaseUnitsToDisplayUnits, - convertBaseUnitsToDollarValue, - convertCoinGeckoPricesToDenomPriceMap, - convertDollarValueToDenomUnits, - getAssetByDenom, - getDenomBySymbol, - getCoinGeckoIdByDenom, - getDenomByCoinGeckoId, - getExponentByDenom, - getSymbolByDenom, - noDecimals -} from '../src'; - -describe('tests for asset-list-util', () => { - const osmosisAssetList = assets.filter( - ({ chain_name }) => chain_name === 'osmosis' - ); - - it('getAssetByDenom', () => { - expect(() => getAssetByDenom(assets, 'uosmo')).toThrow(); - const asset = getAssetByDenom(assets, 'uosmo', 'osmosis'); - expect(asset.base).toEqual('uosmo'); - }); - - it('getDenomByCoinGeckoId', () => { - const denom1 = getDenomByCoinGeckoId(assets, 'jackal'); - expect(denom1).toEqual('ujkl'); - const denom2 = getDenomByCoinGeckoId(assets, 'stargaze', 'stargaze'); - expect(denom2).toEqual('ustars'); - }); - - it('getSymbolByDenom', () => { - const denom1 = getSymbolByDenom(assets, 'swth'); - expect(denom1).toEqual('SWTH'); - const denom2 = getSymbolByDenom(assets, 'uusdc', 'axelar'); - expect(denom2).toEqual('USDC'); - }); - - it('getDenomBySymbol', () => { - const denom1 = getDenomBySymbol(assets, 'OCTA'); - expect(denom1).toEqual('uocta'); - const denom2 = getDenomBySymbol(assets, 'NOM', 'nomic'); - expect(denom2).toEqual('unom'); - }); - - it('getExponentByDenom', () => { - const exponent = getExponentByDenom(assets, 'uosmo', 'osmosis'); - expect(exponent).toEqual(6); - }); - - it('convertCoinGeckoPricesToDenomPriceMap', () => { - const priceMap = convertCoinGeckoPricesToDenomPriceMap(osmosisAssetList, { - osmosis: { - usd: 0.498124 - } - }); - expect(priceMap.uosmo).toEqual(0.498124); - }); - - it('noDecimals', () => { - const re1 = noDecimals(1.12); - expect(re1).toEqual('1'); - const re2 = noDecimals(1.67); - expect(re2).toEqual('1'); - }); - - it('convertBaseUnitsToDollarValue', () => { - const value = convertBaseUnitsToDollarValue( - osmosisAssetList, - { uosmo: 1 }, - 'OSMO', - 5 - ); - expect(value).toEqual('0.000005'); - }); - - it('convertDollarValueToDenomUnits', () => { - const value = convertDollarValueToDenomUnits( - osmosisAssetList, - { uosmo: 1 }, - 'OSMO', - 0.00001 - ); - expect(value).toEqual('10'); - }); - - it('convertBaseUnitsToDisplayUnits', () => { - const value = convertBaseUnitsToDisplayUnits(osmosisAssetList, 'OSMO', 99); - expect(value).toEqual('0.000099'); - }); -}); - -describe('getCoinGeckoIdByDenom', () => { - it('uosmo coingecko id', () => { - const id = getCoinGeckoIdByDenom(assets, 'uosmo'); - expect(id).toEqual('osmosis'); - }); - - it('ujkl coingecko id on testnet', () => { - const id = getCoinGeckoIdByDenom(assets, 'ujkl', { - allowTestnet: true, - excludedChainNames: ['jackal'] - }); - expect(id).toEqual('jackal'); - }); - - it('uluna coingecko id on terra2', () => { - const id = getCoinGeckoIdByDenom(assets, 'uluna', { - excludedChainNames: ['terra'] - }); - expect(id).toEqual('terra-luna-2'); - }); - - it('uusdc coingecko id without traces', () => { - const id = getCoinGeckoIdByDenom(assets, 'uusdcc', { - customAssetFilter(asset) { - return !asset.traces; - } - }); - expect(id).toBeUndefined(); - }); -}); diff --git a/packages/utils/__tests__/assets.test.js b/packages/utils/__tests__/assets.test.js new file mode 100644 index 000000000..57bddb2cc --- /dev/null +++ b/packages/utils/__tests__/assets.test.js @@ -0,0 +1,145 @@ +import assets from '../../../__fixtures__/assets.json'; +import { + getAssetByDenom, + getDenomBySymbol, + getCoinGeckoIdByDenom, + getDenomByCoinGeckoId, + getExponentByDenom, + getSymbolByDenom, + getAssetBySymbol, + getChainLogo, + getChainNameByDenom, + getExponentBySymbol, + getNativeTokenByChainName, + getTokenLogoByDenom, + getTokenNameByDenom +} from '../src/assets'; + +describe('tests for assets utils', () => { + it('getAssetByDenom', () => { + expect(() => getAssetByDenom(assets, 'uosmo')).toThrow(); + const asset = getAssetByDenom(assets, 'uosmo', 'osmosis'); + expect(asset.base).toEqual('uosmo'); + }); + + it('getAssetBySymbol', () => { + expect(getAssetBySymbol([], 'ATOM')).toBeUndefined(); + const asset1 = getAssetBySymbol(assets, 'DVPN'); + expect(asset1.base).toEqual('udvpn'); + const asset2 = getAssetBySymbol(assets, 'SOMM'); + expect(asset2.base).toEqual('usomm'); + }); + + it('getChainLogo', () => { + const logo1 = getChainLogo(assets, 'comdex'); + expect(logo1).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png' + ); + const logo2 = getChainLogo(assets, 'cosmoshub'); + expect(logo2).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png' + ); + }); + + it('getChainNameByDenom', () => { + const chain1 = getChainNameByDenom(assets, 'ucmdx'); + expect(chain1).toEqual('comdex'); + expect(() => getChainNameByDenom(assets, 'uatom')).toThrow(); + }); + + it('getDenomByCoinGeckoId', () => { + const denom1 = getDenomByCoinGeckoId(assets, 'jackal'); + expect(denom1).toEqual('ujkl'); + const denom2 = getDenomByCoinGeckoId(assets, 'stargaze', 'stargaze'); + expect(denom2).toEqual('ustars'); + }); + + it('getSymbolByDenom', () => { + const denom1 = getSymbolByDenom(assets, 'swth'); + expect(denom1).toEqual('SWTH'); + const denom2 = getSymbolByDenom(assets, 'uusdc', 'axelar'); + expect(denom2).toEqual('USDC'); + }); + + it('getDenomBySymbol', () => { + const denom1 = getDenomBySymbol(assets, 'OCTA'); + expect(denom1).toEqual('uocta'); + const denom2 = getDenomBySymbol(assets, 'NOM', 'nomic'); + expect(denom2).toEqual('unom'); + }); + + it('getExponentByDenom', () => { + const exponent = getExponentByDenom(assets, 'uosmo', 'osmosis'); + expect(exponent).toEqual(6); + }); + + it('getExponentBySymbol', () => { + const exponent = getExponentBySymbol(assets, 'OCTA'); + expect(exponent).toEqual(6); + expect(() => getExponentBySymbol(assets, 'ATOM')).toThrow(); + const exponent2 = getExponentBySymbol(assets, 'ATOM', 'cosmoshub'); + expect(exponent2).toEqual(6); + }); + + it('getNativeTokenByChainName', () => { + const nativeToken = getNativeTokenByChainName(assets, 'osmosis'); + expect(nativeToken.base).toEqual('uosmo'); + const nativeToken2 = getNativeTokenByChainName(assets, 'juno'); + expect(nativeToken2.base).toEqual('ujuno'); + }); + + it('getTokenLogoByDenom', () => { + const logo = getTokenLogoByDenom(assets, 'uosmo', 'osmosis'); + expect(logo).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png' + ); + expect(() => getTokenLogoByDenom(assets, 'uatom')).toThrow(); + const logo2 = getTokenLogoByDenom(assets, 'uatom', 'cosmoshub'); + expect(logo2).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png' + ); + const logo3 = getTokenLogoByDenom(assets, 'ubcre'); + expect(logo3).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png' + ); + }); + + it('getTokenNameByDenom', () => { + expect(() => getTokenNameByDenom(assets, 'uatom')).toThrow(); + const name = getTokenNameByDenom(assets, 'uatom', 'cosmoshub'); + expect(name).toEqual('Cosmos'); + const name2 = getTokenNameByDenom(assets, 'ubcre'); + expect(name2).toEqual('Bonded Crescent'); + }); +}); + +describe('getCoinGeckoIdByDenom', () => { + it('uosmo coingecko id', () => { + const id = getCoinGeckoIdByDenom(assets, 'uosmo'); + expect(id).toEqual('osmosis'); + }); + + it('ujkl coingecko id on testnet', () => { + const id = getCoinGeckoIdByDenom(assets, 'ujkl', { + allowTestnet: true, + excludedChainNames: ['jackal'] + }); + expect(id).toEqual('jackal'); + }); + + it('uluna coingecko id on terra2', () => { + const id = getCoinGeckoIdByDenom(assets, 'uluna', { + excludedChainNames: ['terra'] + }); + expect(id).toEqual('terra-luna-2'); + }); + + it('uusdc coingecko id without traces', () => { + const id = getCoinGeckoIdByDenom(assets, 'uusdcc', { + customAssetFilter(asset) { + return !asset.traces; + } + }); + expect(id).toBeUndefined(); + }); +}); diff --git a/packages/utils/__tests__/calc.test.js b/packages/utils/__tests__/calc.test.js new file mode 100644 index 000000000..fb1722191 --- /dev/null +++ b/packages/utils/__tests__/calc.test.js @@ -0,0 +1,72 @@ +import assets from '../../../__fixtures__/assets.json'; +import { + roundDown, + mapCoinGeckoPricesToDenoms, + convertBaseUnitToDisplayUnit, + convertBaseUnitToDollarValue, + convertDollarValueToBaseUnit, + convertDisplayUnitToBaseUnit +} from '../src/calc'; + +const osmosisAssets = assets.filter( + ({ chain_name }) => chain_name === 'osmosis' +); + +const coinGeckoPrices = { + osmosis: { + usd: 0.498124 + }, + ion: { + usd: 0.321456 + } +}; + +describe('tests for calc utils', () => { + it('roundDown', () => { + const re1 = roundDown(1.12); + expect(re1).toEqual('1'); + const re2 = roundDown(1.67); + expect(re2).toEqual('1'); + }); + + it('mapCoinGeckoPricesToDenoms', () => { + const priceMap = mapCoinGeckoPricesToDenoms(osmosisAssets, coinGeckoPrices); + expect(priceMap.uosmo).toEqual(0.498124); + expect(priceMap.uion).toEqual(0.321456); + }); + + it('convertBaseUnitToDollarValue', () => { + const priceMap = mapCoinGeckoPricesToDenoms(osmosisAssets, coinGeckoPrices); + const value = convertBaseUnitToDollarValue( + osmosisAssets, + priceMap, + 'OSMO', + 5000000 + ); + expect(value).toEqual('2.49062'); + }); + + it('convertDollarValueToBaseUnit', () => { + const priceMap = mapCoinGeckoPricesToDenoms(osmosisAssets, coinGeckoPrices); + const value = convertDollarValueToBaseUnit( + osmosisAssets, + priceMap, + 'OSMO', + 100 + ); + expect(value).toEqual('200753226'); + }); + + it('convertBaseUnitToDisplayUnit', () => { + const value = convertBaseUnitToDisplayUnit(osmosisAssets, 'OSMO', 329823); + expect(value).toEqual('0.329823'); + expect(() => + convertBaseUnitToDisplayUnit(osmosisAssets, 'ATOM', 100) + ).toThrow(); + }); + + it('convertDisplayUnitToBaseUnit', () => { + const value = convertDisplayUnitToBaseUnit(osmosisAssets, 'OSMO', 0.00009944); + expect(value).toEqual('99'); + }); +}); diff --git a/packages/utils/__tests__/chains.test.js b/packages/utils/__tests__/chains.test.js new file mode 100644 index 000000000..e662a692f --- /dev/null +++ b/packages/utils/__tests__/chains.test.js @@ -0,0 +1,72 @@ +import chains from '../../../__fixtures__/chains.json'; +import { + getChainByChainName, + getChainByChainId, + getChainIdByChainName, + getChainNameByChainId, + getChainGasPriceRanges, + getChainPrettyName, + getChainBech32Prefix +} from '../src/chains'; + +describe('tests for chains utils', () => { + it('getChainByChainName', () => { + const chain = getChainByChainName(chains, 'osmosis'); + expect(chain.chain_name).toEqual('osmosis'); + const chain2 = getChainByChainName(chains, 'cosmoshub'); + expect(chain2.chain_name).toEqual('cosmoshub'); + const chain3 = getChainByChainName(chains, 'testchain'); + expect(chain3).toBeUndefined(); + expect(() => + getChainByChainName([...chains, ...chains], 'osmosis') + ).toThrow(); + }); + + it('getChainByChainId', () => { + const chain = getChainByChainId(chains, 'osmosis-1'); + expect(chain.chain_name).toEqual('osmosis'); + const chain2 = getChainByChainId(chains, 'cosmoshub-4'); + expect(chain2.chain_name).toEqual('cosmoshub'); + }); + + it('getChainIdByChainName', () => { + const chainId = getChainIdByChainName(chains, 'osmosis'); + expect(chainId).toEqual('osmosis-1'); + const chainId2 = getChainIdByChainName(chains, 'cosmoshub'); + expect(chainId2).toEqual('cosmoshub-4'); + }); + + it('getChainNameByChainId', () => { + const chainName = getChainNameByChainId(chains, 'osmosis-1'); + expect(chainName).toEqual('osmosis'); + const chainName2 = getChainNameByChainId(chains, 'cosmoshub-4'); + expect(chainName2).toEqual('cosmoshub'); + }); + + it('getChainGasPriceRanges', () => { + const gasPriceRanges = getChainGasPriceRanges(chains, 'osmosis'); + expect(gasPriceRanges.average).toEqual(0.025); + const gasPriceRanges2 = getChainGasPriceRanges(chains, 'tgrade'); + expect(gasPriceRanges2.high).toEqual(0.1); + const gasPriceRanges3 = getChainGasPriceRanges(chains, 'juno'); + expect(gasPriceRanges3.low).toEqual(0.01); + }); + + it('getChainPrettyName', () => { + const prettyName = getChainPrettyName(chains, 'osmosis'); + expect(prettyName).toEqual('Osmosis'); + const prettyName2 = getChainPrettyName(chains, 'cosmoshub'); + expect(prettyName2).toEqual('Cosmos Hub'); + const prettyName3 = getChainPrettyName(chains, 'testchain'); + expect(prettyName3).toBeUndefined(); + }); + + it('getChainBech32Prefix', () => { + const bech32Prefix = getChainBech32Prefix(chains, 'osmosis'); + expect(bech32Prefix).toEqual('osmo'); + const bech32Prefix2 = getChainBech32Prefix(chains, 'cosmoshub'); + expect(bech32Prefix2).toEqual('cosmos'); + const bech32Prefix3 = getChainBech32Prefix(chains, 'injective'); + expect(bech32Prefix3).toEqual('inj'); + }); +}); From 05370552b73b1e84da952544a34239c7bdefc766 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 18:54:54 +0800 Subject: [PATCH 47/54] fix: update types --- packages/utils/types/asset-list-util.d.ts | 27 ----------- packages/utils/types/assets.d.ts | 25 +++++++++++ packages/utils/types/calc.d.ts | 14 ++++++ packages/utils/types/chains.d.ts | 17 +++++++ packages/utils/types/fees.d.ts | 6 --- packages/utils/types/{utils.d.ts => ibc.d.ts} | 17 ++++--- packages/utils/types/index.d.ts | 7 +-- packages/utils/types/registry.d.ts | 45 ------------------- 8 files changed, 70 insertions(+), 88 deletions(-) delete mode 100644 packages/utils/types/asset-list-util.d.ts create mode 100644 packages/utils/types/assets.d.ts create mode 100644 packages/utils/types/calc.d.ts create mode 100644 packages/utils/types/chains.d.ts delete mode 100644 packages/utils/types/fees.d.ts rename packages/utils/types/{utils.d.ts => ibc.d.ts} (88%) delete mode 100644 packages/utils/types/registry.d.ts diff --git a/packages/utils/types/asset-list-util.d.ts b/packages/utils/types/asset-list-util.d.ts deleted file mode 100644 index d7f7fbf44..000000000 --- a/packages/utils/types/asset-list-util.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; -export type CoinDenom = AssetDenomUnit['denom']; -export type Exponent = AssetDenomUnit['exponent']; -export interface CoinGeckoUSD { - usd: number; -} -export interface PriceHash { - [key: CoinDenom]: number; -} -export declare function getAssetByDenom(assets: AssetList[], denom: CoinDenom, chainName?: string): Asset; -export declare function getDenomByCoinGeckoId(assets: AssetList[], coinGeckoId: string, chainName?: string): CoinDenom; -type GetCoinGeckoIdByDenomOptions = { - chainName?: string; - allowTestnet?: boolean; - customAssetFilter?: (asset: Asset) => boolean; - excludedChainNames?: string[]; -}; -export declare function getCoinGeckoIdByDenom(assets: AssetList[], denom: CoinDenom, { chainName, allowTestnet, customAssetFilter, excludedChainNames }?: GetCoinGeckoIdByDenomOptions): string | null; -export declare function getSymbolByChainDenom(assets: AssetList[], denom: CoinDenom, chainName?: string): string; -export declare function getChainDenomBySymbol(assets: AssetList[], symbol: string, chainName?: string): CoinDenom; -export declare function getExponentByDenom(assets: AssetList[], denom: CoinDenom, chainName?: string): Exponent; -export declare function convertCoinGeckoPricesToDenomPriceMap(assets: AssetList[], prices: Record): PriceHash; -export declare function noDecimals(num: number | string): string; -export declare function convertBaseUnitsToDollarValue(assets: AssetList[], prices: PriceHash, symbol: string, amount: string | number, chainName?: string): string; -export declare function convertDollarValueToDenomUnits(assets: AssetList[], prices: PriceHash, symbol: string, value: string | number, chainName?: string): string; -export declare function convertBaseUnitsToDisplayUnits(assets: AssetList[], symbol: string, amount: string | number, chainName?: string): string; -export {}; diff --git a/packages/utils/types/assets.d.ts b/packages/utils/types/assets.d.ts new file mode 100644 index 000000000..ba45db85a --- /dev/null +++ b/packages/utils/types/assets.d.ts @@ -0,0 +1,25 @@ +import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; +export type Denom = AssetDenomUnit['denom']; +export type Exponent = AssetDenomUnit['exponent']; +export declare const customFind: (array: T[], filterFn: (item: T) => boolean) => T | undefined; +export declare const getAssetByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => Asset | undefined; +export declare const getAssetBySymbol: (assets: AssetList[], symbol: string, chainName?: string) => Asset | undefined; +export declare const getDenomByCoinGeckoId: (assets: AssetList[], coinGeckoId: string, chainName?: string) => Denom | undefined; +type GetCoinGeckoIdByDenomOptions = { + chainName?: string; + allowTestnet?: boolean; + customAssetFilter?: (asset: Asset) => boolean; + excludedChainNames?: string[]; +}; +export declare const getCoinGeckoIdByDenom: (assets: AssetList[], denom: Denom, { chainName, allowTestnet, customAssetFilter, excludedChainNames }?: GetCoinGeckoIdByDenomOptions) => string | undefined; +export declare const getSymbolByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => string | undefined; +export declare const getDenomBySymbol: (assets: AssetList[], symbol: string, chainName?: string) => Denom | undefined; +export declare const getExponentFromAsset: (asset: Asset) => number | undefined; +export declare const getExponentByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => Exponent | undefined; +export declare const getExponentBySymbol: (assets: AssetList[], symbol: string, chainName?: string) => Exponent | undefined; +export declare const getNativeTokenByChainName: (assets: AssetList[], chainName: string) => Asset | undefined; +export declare const getTokenLogoByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => string | undefined; +export declare const getChainLogo: (assets: AssetList[], chainName: string) => string | undefined; +export declare const getTokenNameByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => string | undefined; +export declare const getChainNameByDenom: (assets: AssetList[], denom: Denom) => string | undefined; +export {}; diff --git a/packages/utils/types/calc.d.ts b/packages/utils/types/calc.d.ts new file mode 100644 index 000000000..6e464daef --- /dev/null +++ b/packages/utils/types/calc.d.ts @@ -0,0 +1,14 @@ +import { AssetList } from '@chain-registry/types'; +import { Denom } from './assets'; +export interface CoinGeckoUSDPrice { + usd: number; +} +export interface DenomPriceMap { + [key: Denom]: number; +} +export declare const mapCoinGeckoPricesToDenoms: (assets: AssetList[], prices: Record) => DenomPriceMap; +export declare const roundDown: (value: number | string) => string; +export declare const convertBaseUnitToDollarValue: (assets: AssetList[], prices: DenomPriceMap, symbol: string, amount: string | number, chainName?: string) => string; +export declare const convertDollarValueToBaseUnit: (assets: AssetList[], prices: DenomPriceMap, symbol: string, value: string | number, chainName?: string) => string; +export declare const convertBaseUnitToDisplayUnit: (assets: AssetList[], symbol: string, amount: string | number, chainName?: string) => string; +export declare const convertDisplayUnitToBaseUnit: (assets: AssetList[], symbol: string, amount: string | number, chainName?: string) => string; diff --git a/packages/utils/types/chains.d.ts b/packages/utils/types/chains.d.ts new file mode 100644 index 000000000..583f2c522 --- /dev/null +++ b/packages/utils/types/chains.d.ts @@ -0,0 +1,17 @@ +import { Chain } from '@chain-registry/types'; +export declare const getGasPriceRangesFromChain: (chain: Chain) => { + low: number; + average: number; + high: number; +}; +export declare const getChainByChainName: (chains: Chain[], chainName: string) => Chain | undefined; +export declare const getChainByChainId: (chains: Chain[], chainId: string) => Chain | undefined; +export declare const getChainNameByChainId: (chains: Chain[], chainId: string) => string | undefined; +export declare const getChainIdByChainName: (chains: Chain[], chainName: string) => string | undefined; +export declare const getChainGasPriceRanges: (chains: Chain[], chainName: string) => { + low: number; + average: number; + high: number; +} | undefined; +export declare const getChainPrettyName: (chains: Chain[], chainName: string) => string | undefined; +export declare const getChainBech32Prefix: (chains: Chain[], chainName: string) => string | undefined; diff --git a/packages/utils/types/fees.d.ts b/packages/utils/types/fees.d.ts deleted file mode 100644 index b83753772..000000000 --- a/packages/utils/types/fees.d.ts +++ /dev/null @@ -1,6 +0,0 @@ -import { Chain } from '@chain-registry/types'; -export declare const getGasPriceStep: (chain: Chain) => { - low: number; - average: number; - high: number; -}; diff --git a/packages/utils/types/utils.d.ts b/packages/utils/types/ibc.d.ts similarity index 88% rename from packages/utils/types/utils.d.ts rename to packages/utils/types/ibc.d.ts index b3a1fa277..a6951c4c9 100644 --- a/packages/utils/types/utils.d.ts +++ b/packages/utils/types/ibc.d.ts @@ -15,8 +15,8 @@ export declare const getTransferChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object; -}; + tags?: object | undefined; +} | undefined; export declare const getNonTransferChannel: (info: IBCInfo) => { chain_1: { channel_id: string; @@ -28,8 +28,8 @@ export declare const getNonTransferChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object; -}; + tags?: object | undefined; +} | undefined; export declare const getWasmChannel: (info: IBCInfo) => { chain_1: { channel_id: string; @@ -41,8 +41,8 @@ export declare const getWasmChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object; -}; + tags?: object | undefined; +} | undefined; export declare const getIbcAssetPath: (ibc: IBCInfo[], chain: string, counterparty: string, assets: AssetList[], base: string) => any; export declare const getIbcDenomByBase: (ibc: IBCInfo[], chain: string, counterparty: string, assets: AssetList[], base: string) => string; export declare const getIbcAssets: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => { @@ -53,4 +53,7 @@ export declare const getCw20Assets: (chainName: string, ibc: IBCInfo[], assets: chain_name: string; assets: any; }[]; -export declare const getAssetLists: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => any[]; +export declare const getAssetLists: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => { + chain_name: string; + assets: any; +}; diff --git a/packages/utils/types/index.d.ts b/packages/utils/types/index.d.ts index a69a051c9..3e2729aff 100644 --- a/packages/utils/types/index.d.ts +++ b/packages/utils/types/index.d.ts @@ -1,3 +1,4 @@ -export * from './asset-list-util'; -export * from './fees'; -export * from './utils'; +export * from './ibc'; +export * from './calc'; +export * from './chains'; +export * from './assets'; diff --git a/packages/utils/types/registry.d.ts b/packages/utils/types/registry.d.ts deleted file mode 100644 index 5c130dd86..000000000 --- a/packages/utils/types/registry.d.ts +++ /dev/null @@ -1,45 +0,0 @@ -import { AssetList, Chain, ChainRegistry, IBCInfo } from '@chain-registry/types'; -export interface ChainRegistryFetcherOptions { - assetLists?: AssetList[]; - chains?: Chain[]; - ibcData?: IBCInfo[]; - urls?: string[]; -} -export interface ChainInfoOptions { - chain_name: string; - fetcher: ChainRegistryFetcher; -} -export declare class ChainInfo { - chain_name: string; - fetcher: ChainRegistryFetcher; - protected _asset_list: AssetList; - protected _asset_lists: AssetList[]; - protected _chain: Chain; - protected _ibc_data: IBCInfo[]; - constructor(options: ChainInfoOptions); - refresh(): void; - get nativeAssetLists(): AssetList; - get chain(): Chain; - get assetLists(): any[]; -} -export declare class ChainRegistryFetcher implements ChainRegistry { - protected _asset_lists: AssetList[]; - protected _chains: Chain[]; - protected _ibc_data: IBCInfo[]; - urls: string[]; - constructor(options?: ChainRegistryFetcherOptions); - get assetLists(): AssetList[]; - getChainAssetList(chainName: string): AssetList; - getGeneratedAssetLists(chainName: string): AssetList[]; - get chains(): Chain[]; - getChain(chainName: string): Chain; - get ibcData(): IBCInfo[]; - getChainIbcData(chainName: string): IBCInfo[]; - getChainInfo(chainName: string): ChainInfo; - upsertChain(data: Chain): void; - updateAssetList(data: AssetList): void; - upsertIbcData(data: IBCInfo): void; - update(data: Chain | AssetList | IBCInfo): void; - fetch(url: any): Promise; - fetchUrls(): Promise; -} From facf128001020e1221f1f1f3e8b31999c2a2408c Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 19:47:06 +0800 Subject: [PATCH 48/54] fix: update utils in cosmostation --- packages/cosmostation/src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/cosmostation/src/index.ts b/packages/cosmostation/src/index.ts index 2721f545c..33dd2b196 100644 --- a/packages/cosmostation/src/index.ts +++ b/packages/cosmostation/src/index.ts @@ -1,5 +1,5 @@ import { Asset, AssetList, Chain } from '@chain-registry/types'; -import { getGasPriceStep } from '@chain-registry/utils'; +import { getGasPriceRangesFromChain } from '@chain-registry/utils'; import { AddChainParams } from '@cosmostation/extension-client/types/message'; const getRest = (chain: Chain): string => chain.apis?.rest[0]?.address; @@ -50,7 +50,7 @@ export const chainRegistryChainToCosmostation = ( currencies.find((currency) => stakingDenoms.includes(currency.baseDenom)) ?? currencies[0]; - const gasPriceStep = getGasPriceStep(chain); + const gasPriceRanges = getGasPriceRangesFromChain(chain); const chainInfo: AddChainParams = { chainId: chain.chain_id, @@ -64,8 +64,8 @@ export const chainRegistryChainToCosmostation = ( coinGeckoId: currencies[0].coinGeckoId, gasRate: { // optional (default: { average: '0.025', low: '0.0025', tiny: '0.00025' }) - average: gasPriceStep.average.toString(), - low: gasPriceStep.low.toString(), + average: gasPriceRanges.average.toString(), + low: gasPriceRanges.low.toString(), tiny: '0.00025' } // TODO implement type From 095175aaa08cbde99052b0bd87e2173c871632f0 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 21:31:08 +0800 Subject: [PATCH 49/54] fix: add explicit return types --- packages/utils/src/assets.ts | 7 ++++-- packages/utils/src/chains.ts | 43 ++++++++++++++++++++++++++------ packages/utils/tsconfig.json | 3 +-- packages/utils/types/assets.d.ts | 2 +- packages/utils/types/chains.d.ts | 11 +++----- packages/utils/types/ibc.d.ts | 17 ++++++------- 6 files changed, 53 insertions(+), 30 deletions(-) diff --git a/packages/utils/src/assets.ts b/packages/utils/src/assets.ts index 3cfcd3378..9ce0556c8 100644 --- a/packages/utils/src/assets.ts +++ b/packages/utils/src/assets.ts @@ -106,7 +106,7 @@ export const getDenomBySymbol = ( return getAssetByKeyValue(assets, 'symbol', symbol, chainName)?.base; }; -export const getExponentFromAsset = (asset: Asset) => { +export const getExponentFromAsset = (asset: Asset): number | undefined => { return asset.denom_units.find(({ denom }) => denom === asset.display) ?.exponent; }; @@ -169,7 +169,10 @@ export const getTokenNameByDenom = ( return asset?.name; }; -export const getChainNameByDenom = (assets: AssetList[], denom: Denom) => { +export const getChainNameByDenom = ( + assets: AssetList[], + denom: Denom +): string | undefined => { const isIbcDenom = denom.startsWith('ibc/'); if (isIbcDenom) { diff --git a/packages/utils/src/chains.ts b/packages/utils/src/chains.ts index 954fc1ecf..95112e44d 100644 --- a/packages/utils/src/chains.ts +++ b/packages/utils/src/chains.ts @@ -1,7 +1,13 @@ import { Chain } from '@chain-registry/types'; import { customFind } from './assets'; -export const getGasPriceRangesFromChain = (chain: Chain) => { +export interface GasPriceRanges { + low: number; + average: number; + high: number; +} + +export const getGasPriceRangesFromChain = (chain: Chain): GasPriceRanges => { const feeToken = chain.fees?.fee_tokens?.[0]; return { low: feeToken?.low_gas_price ?? 0.01, @@ -10,31 +16,52 @@ export const getGasPriceRangesFromChain = (chain: Chain) => { }; }; -export const getChainByChainName = (chains: Chain[], chainName: string) => { +export const getChainByChainName = ( + chains: Chain[], + chainName: string +): Chain | undefined => { return customFind(chains, (chain) => chain.chain_name === chainName); }; -export const getChainByChainId = (chains: Chain[], chainId: string) => { +export const getChainByChainId = ( + chains: Chain[], + chainId: string +): Chain | undefined => { return customFind(chains, (chain) => chain.chain_id === chainId); }; -export const getChainNameByChainId = (chains: Chain[], chainId: string) => { +export const getChainNameByChainId = ( + chains: Chain[], + chainId: string +): string | undefined => { return getChainByChainId(chains, chainId)?.chain_name; }; -export const getChainIdByChainName = (chains: Chain[], chainName: string) => { +export const getChainIdByChainName = ( + chains: Chain[], + chainName: string +): string | undefined => { return getChainByChainName(chains, chainName)?.chain_id; }; -export const getChainGasPriceRanges = (chains: Chain[], chainName: string) => { +export const getChainGasPriceRanges = ( + chains: Chain[], + chainName: string +): GasPriceRanges | undefined => { const chain = getChainByChainName(chains, chainName); return chain ? getGasPriceRangesFromChain(chain) : undefined; }; -export const getChainPrettyName = (chains: Chain[], chainName: string) => { +export const getChainPrettyName = ( + chains: Chain[], + chainName: string +): string | undefined => { return getChainByChainName(chains, chainName)?.pretty_name; }; -export const getChainBech32Prefix = (chains: Chain[], chainName: string) => { +export const getChainBech32Prefix = ( + chains: Chain[], + chainName: string +): string | undefined => { return getChainByChainName(chains, chainName)?.bech32_prefix; }; diff --git a/packages/utils/tsconfig.json b/packages/utils/tsconfig.json index 4de92bd6e..ae41eba22 100644 --- a/packages/utils/tsconfig.json +++ b/packages/utils/tsconfig.json @@ -7,8 +7,7 @@ "declaration": true, "declarationDir": "./types", "emitDeclarationOnly": true, - "isolatedModules": true, - "strict": true + "isolatedModules": true }, "include": ["src/**/*"], "exclude": ["node_modules"] diff --git a/packages/utils/types/assets.d.ts b/packages/utils/types/assets.d.ts index ba45db85a..fc4879176 100644 --- a/packages/utils/types/assets.d.ts +++ b/packages/utils/types/assets.d.ts @@ -1,7 +1,7 @@ import { Asset, AssetDenomUnit, AssetList } from '@chain-registry/types'; export type Denom = AssetDenomUnit['denom']; export type Exponent = AssetDenomUnit['exponent']; -export declare const customFind: (array: T[], filterFn: (item: T) => boolean) => T | undefined; +export declare const customFind: (array: T[], filterFn: (item: T) => boolean) => T; export declare const getAssetByDenom: (assets: AssetList[], denom: Denom, chainName?: string) => Asset | undefined; export declare const getAssetBySymbol: (assets: AssetList[], symbol: string, chainName?: string) => Asset | undefined; export declare const getDenomByCoinGeckoId: (assets: AssetList[], coinGeckoId: string, chainName?: string) => Denom | undefined; diff --git a/packages/utils/types/chains.d.ts b/packages/utils/types/chains.d.ts index 583f2c522..e1116c00a 100644 --- a/packages/utils/types/chains.d.ts +++ b/packages/utils/types/chains.d.ts @@ -1,17 +1,14 @@ import { Chain } from '@chain-registry/types'; -export declare const getGasPriceRangesFromChain: (chain: Chain) => { +export interface GasPriceRanges { low: number; average: number; high: number; -}; +} +export declare const getGasPriceRangesFromChain: (chain: Chain) => GasPriceRanges; export declare const getChainByChainName: (chains: Chain[], chainName: string) => Chain | undefined; export declare const getChainByChainId: (chains: Chain[], chainId: string) => Chain | undefined; export declare const getChainNameByChainId: (chains: Chain[], chainId: string) => string | undefined; export declare const getChainIdByChainName: (chains: Chain[], chainName: string) => string | undefined; -export declare const getChainGasPriceRanges: (chains: Chain[], chainName: string) => { - low: number; - average: number; - high: number; -} | undefined; +export declare const getChainGasPriceRanges: (chains: Chain[], chainName: string) => GasPriceRanges | undefined; export declare const getChainPrettyName: (chains: Chain[], chainName: string) => string | undefined; export declare const getChainBech32Prefix: (chains: Chain[], chainName: string) => string | undefined; diff --git a/packages/utils/types/ibc.d.ts b/packages/utils/types/ibc.d.ts index a6951c4c9..b3a1fa277 100644 --- a/packages/utils/types/ibc.d.ts +++ b/packages/utils/types/ibc.d.ts @@ -15,8 +15,8 @@ export declare const getTransferChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object | undefined; -} | undefined; + tags?: object; +}; export declare const getNonTransferChannel: (info: IBCInfo) => { chain_1: { channel_id: string; @@ -28,8 +28,8 @@ export declare const getNonTransferChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object | undefined; -} | undefined; + tags?: object; +}; export declare const getWasmChannel: (info: IBCInfo) => { chain_1: { channel_id: string; @@ -41,8 +41,8 @@ export declare const getWasmChannel: (info: IBCInfo) => { }; ordering: string; version: string; - tags?: object | undefined; -} | undefined; + tags?: object; +}; export declare const getIbcAssetPath: (ibc: IBCInfo[], chain: string, counterparty: string, assets: AssetList[], base: string) => any; export declare const getIbcDenomByBase: (ibc: IBCInfo[], chain: string, counterparty: string, assets: AssetList[], base: string) => string; export declare const getIbcAssets: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => { @@ -53,7 +53,4 @@ export declare const getCw20Assets: (chainName: string, ibc: IBCInfo[], assets: chain_name: string; assets: any; }[]; -export declare const getAssetLists: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => { - chain_name: string; - assets: any; -}; +export declare const getAssetLists: (chainName: string, ibc: IBCInfo[], assets: AssetList[]) => any[]; From 61dff01c003267ef7638659a16ef1429feb95cab Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Mon, 18 Mar 2024 22:30:49 +0800 Subject: [PATCH 50/54] chore(release): publish - @chain-registry/assets@1.32.0 - chain-registry@1.31.0 - @chain-registry/cosmostation@1.34.0 - @chain-registry/juno@1.32.0 - @chain-registry/keplr@1.36.0 - @chain-registry/osmosis@1.32.0 --- packages/assets/CHANGELOG.md | 8 ++++++++ packages/assets/package.json | 4 ++-- packages/chain-registry/CHANGELOG.md | 8 ++++++++ packages/chain-registry/package.json | 2 +- packages/cosmostation/CHANGELOG.md | 8 ++++++++ packages/cosmostation/package.json | 4 ++-- packages/juno/CHANGELOG.md | 8 ++++++++ packages/juno/package.json | 4 ++-- packages/keplr/CHANGELOG.md | 8 ++++++++ packages/keplr/package.json | 4 ++-- packages/osmosis/CHANGELOG.md | 8 ++++++++ packages/osmosis/package.json | 4 ++-- 12 files changed, 59 insertions(+), 11 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 51827f5fc..63fe38298 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.31.0...@chain-registry/assets@1.32.0) (2024-03-18) + +**Note:** Version bump only for package @chain-registry/assets + + + + + # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.1...@chain-registry/assets@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index 3ae13e399..c8f2add6b 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.31.0", + "version": "1.32.0", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -56,7 +56,7 @@ "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.30.0", + "chain-registry": "^1.31.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 10572ee20..9fa5a7adc 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.30.0...chain-registry@1.31.0) (2024-03-18) + +**Note:** Version bump only for package chain-registry + + + + + # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.1...chain-registry@1.30.0) (2024-03-14) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index c15e712d8..37d66d60c 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.30.0", + "version": "1.31.0", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index edc3bbf2c..e43e5bb54 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.33.0...@chain-registry/cosmostation@1.34.0) (2024-03-18) + +**Note:** Version bump only for package @chain-registry/cosmostation + + + + + # [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.1...@chain-registry/cosmostation@1.33.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 164928cc0..7109bdf8a 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.33.0", + "version": "1.34.0", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.30.0", + "chain-registry": "^1.31.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index 13936ffe1..c1e2f2000 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.31.0...@chain-registry/juno@1.32.0) (2024-03-18) + +**Note:** Version bump only for package @chain-registry/juno + + + + + # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.1...@chain-registry/juno@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index fa964900e..71744dbf9 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.31.0", + "version": "1.32.0", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.30.0", + "chain-registry": "^1.31.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index 13a927368..a7ee71d73 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.36.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.35.0...@chain-registry/keplr@1.36.0) (2024-03-18) + +**Note:** Version bump only for package @chain-registry/keplr + + + + + # [1.35.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.1...@chain-registry/keplr@1.35.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index 5d0daaa58..a1b0ff7fe 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.35.0", + "version": "1.36.0", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.30.0", + "chain-registry": "^1.31.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 76855eb68..7d92aa568 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.31.0...@chain-registry/osmosis@1.32.0) (2024-03-18) + +**Note:** Version bump only for package @chain-registry/osmosis + + + + + # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.1...@chain-registry/osmosis@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 36314908f..7dddf2606 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.31.0", + "version": "1.32.0", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.30.0", + "chain-registry": "^1.31.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", From ee9f6ed777348aa60cf0236e6d1bc1d42239f3e2 Mon Sep 17 00:00:00 2001 From: luca Date: Mon, 18 Mar 2024 23:02:51 +0800 Subject: [PATCH 51/54] feat: update client with new utils --- packages/client/__tests__/client.api.test.ts | 79 +++++++++--- packages/client/__tests__/fetcher.test.ts | 4 - packages/client/src/chain-util.ts | 127 ++++++++++++------- packages/client/types/chain-util.d.ts | 32 +++-- 4 files changed, 160 insertions(+), 82 deletions(-) diff --git a/packages/client/__tests__/client.api.test.ts b/packages/client/__tests__/client.api.test.ts index 98442516f..6ea609b3b 100644 --- a/packages/client/__tests__/client.api.test.ts +++ b/packages/client/__tests__/client.api.test.ts @@ -1,4 +1,5 @@ -import { assets, chains } from 'chain-registry'; +import assets from '../../../__fixtures__/assets.json'; +import chains from '../../../__fixtures__/chains.json'; import { ChainRegistryChainUtil, @@ -34,6 +35,11 @@ describe('tests for asset-list-util', () => { expect(asset.base).toEqual('uosmo'); }); + it('getAssetBySymbol', () => { + const asset = client.getAssetBySymbol('ION'); + expect(asset.base).toEqual('uion'); + }); + it('getDenomByCoinGeckoId', () => { const denom1 = client.getDenomByCoinGeckoId('osmosis'); expect(denom1).toEqual('uosmo'); @@ -41,17 +47,17 @@ describe('tests for asset-list-util', () => { expect(denom2).toEqual('uion'); }); - it('getSymbolByChainDenom', () => { - const denom1 = client.getSymbolByChainDenom('uosmo'); + it('getSymbolByDenom', () => { + const denom1 = client.getSymbolByDenom('uosmo'); expect(denom1).toEqual('OSMO'); - const denom2 = client.getSymbolByChainDenom('uion'); + const denom2 = client.getSymbolByDenom('uion'); expect(denom2).toEqual('ION'); }); - it('getChainDenomBySymbol', () => { - const denom1 = client.getChainDenomBySymbol('OSMO'); + it('getDenomBySymbol', () => { + const denom1 = client.getDenomBySymbol('OSMO'); expect(denom1).toEqual('uosmo'); - const denom2 = client.getChainDenomBySymbol('ION'); + const denom2 = client.getDenomBySymbol('ION'); expect(denom2).toEqual('uion'); }); @@ -60,13 +66,54 @@ describe('tests for asset-list-util', () => { expect(exponent).toEqual(6); }); - it('convertBaseUnitsToDollarValue', () => { - const value = client.convertBaseUnitsToDollarValue({ uosmo: 1 }, 'OSMO', 5); + it('getExponentBySymbol', () => { + const exponent = client.getExponentBySymbol('ION'); + expect(exponent).toEqual(6); + }); + + it('getCoinGeckoIdByDenom', () => { + const id = client.getCoinGeckoIdByDenom('uosmo'); + expect(id).toEqual('osmosis'); + }); + + it('getTokenLogoByDenom', () => { + const logo = client.getTokenLogoByDenom('uosmo'); + expect(logo).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png' + ); + }); + + it('getTokenNameByDenom', () => { + const name = client.getTokenNameByDenom('uion'); + expect(name).toEqual('Ion'); + }); + + it('getChainNameByDenom', () => { + const name = client.getChainNameByDenom( + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ); + expect(name).toEqual('jackal'); + }); + + it('mapCoinGeckoPricesToDenoms', () => { + const prices = { + osmosis: { usd: 0.0001 }, + ion: { usd: 0.0002 } + }; + const priceMap = client.mapCoinGeckoPricesToDenoms(prices); + expect(priceMap).toEqual({ + uosmo: 0.0001, + uion: 0.0002 + }); + }); + + it('convertBaseUnitToDollarValue', () => { + const value = client.convertBaseUnitToDollarValue({ uosmo: 1 }, 'OSMO', 5); expect(value).toEqual('0.000005'); }); - it('convertDollarValueToDenomUnits', () => { - const value = client.convertDollarValueToDenomUnits( + it('convertDollarValueToBaseUnit', () => { + const value = client.convertDollarValueToBaseUnit( { uosmo: 1 }, 'OSMO', 0.00001 @@ -74,13 +121,13 @@ describe('tests for asset-list-util', () => { expect(value).toEqual('10'); }); - it('convertBaseUnitsToDisplayUnits', () => { - const value = client.convertBaseUnitsToDisplayUnits('OSMO', 99); + it('convertBaseUnitToDisplayUnit', () => { + const value = client.convertBaseUnitToDisplayUnit('OSMO', 99); expect(value).toEqual('0.000099'); }); - it('uosmo coingecko id', () => { - const id = client.getCoinGeckoIdByDenom('uosmo'); - expect(id).toEqual('osmosis'); + it('convertDisplayUnitToBaseUnit', () => { + const value = client.convertDisplayUnitToBaseUnit('OSMO', 0.000099); + expect(value).toEqual('99'); }); }); diff --git a/packages/client/__tests__/fetcher.test.ts b/packages/client/__tests__/fetcher.test.ts index fef491938..75ef77467 100644 --- a/packages/client/__tests__/fetcher.test.ts +++ b/packages/client/__tests__/fetcher.test.ts @@ -46,10 +46,6 @@ describe('Test fetcher', () => { const osmosisAssets = fetcher.getChainAssetList('osmosis'); expect(chainInfo.nativeAssetList).toEqual(osmosisAssets); - const num = osmosisAssets.assets.length; - const numGenerated = generated[0].assets.length; - expect(numGenerated > num).toBe(true); - done(); }, timeout diff --git a/packages/client/src/chain-util.ts b/packages/client/src/chain-util.ts index c07c7c394..783feffeb 100644 --- a/packages/client/src/chain-util.ts +++ b/packages/client/src/chain-util.ts @@ -1,22 +1,27 @@ import { Asset, AssetList } from '@chain-registry/types'; import type { - CoinDenom, - CoinGeckoUSD, + Denom, Exponent, - PriceHash + DenomPriceMap, + CoinGeckoUSDPrice } from '@chain-registry/utils'; import { - convertBaseUnitsToDisplayUnits, - convertBaseUnitsToDollarValue, - convertCoinGeckoPricesToDenomPriceMap, - convertDollarValueToDenomUnits, getAssetByDenom, - getChainDenomBySymbol, - getCoinGeckoIdByDenom, + getAssetBySymbol, getDenomByCoinGeckoId, + getCoinGeckoIdByDenom, + getSymbolByDenom, + getDenomBySymbol, getExponentByDenom, - getSymbolByChainDenom, - noDecimals + getExponentBySymbol, + getTokenLogoByDenom, + getTokenNameByDenom, + getChainNameByDenom, + mapCoinGeckoPricesToDenoms, + convertBaseUnitToDollarValue, + convertDollarValueToBaseUnit, + convertBaseUnitToDisplayUnit, + convertDisplayUnitToBaseUnit } from '@chain-registry/utils'; import { ChainInfo } from './chain-info'; @@ -27,98 +32,124 @@ export interface ChainRegistryChainUtilOptions { } export class ChainRegistryChainUtil { - chainName: string; - chainInfo: ChainInfo; - private _assets: AssetList[] = []; + private _chainName: string; constructor(options: ChainRegistryChainUtilOptions) { - this.chainName = options.chainName; - this.chainInfo = options.chainInfo; + const { chainName, chainInfo } = options; + this._chainName = options.chainName; this._assets = [ { assets: [ - ...this.chainInfo.nativeAssetList.assets, - ...this.chainInfo.assetLists.flatMap(({ assets }) => assets) + ...chainInfo.nativeAssetList.assets, + ...chainInfo.assetLists.flatMap(({ assets }) => assets) ], - chain_name: this.chainName + chain_name: chainName } ]; } - getAssetByDenom(denom: CoinDenom): Asset { - return getAssetByDenom(this._assets, denom, this.chainName); + getAssetByDenom(denom: Denom): Asset | undefined { + return getAssetByDenom(this._assets, denom, this._chainName); + } + + getAssetBySymbol(symbol: string): Asset | undefined { + return getAssetBySymbol(this._assets, symbol, this._chainName); } - getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom { - return getDenomByCoinGeckoId(this._assets, coinGeckoId, this.chainName); + getDenomByCoinGeckoId(coinGeckoId: string): Denom | undefined { + return getDenomByCoinGeckoId(this._assets, coinGeckoId, this._chainName); } - getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom { + getCoinGeckoIdByDenom(coinGeckoId: string): Denom | undefined { return getCoinGeckoIdByDenom(this._assets, coinGeckoId, { - chainName: this.chainName + chainName: this._chainName }); } - getSymbolByChainDenom(denom: CoinDenom): string { - return getSymbolByChainDenom(this._assets, denom, this.chainName); + getSymbolByDenom(denom: Denom): string | undefined { + return getSymbolByDenom(this._assets, denom, this._chainName); } - getChainDenomBySymbol(token: string): CoinDenom { - return getChainDenomBySymbol(this._assets, token, this.chainName); + getDenomBySymbol(symbol: string): Denom | undefined { + return getDenomBySymbol(this._assets, symbol, this._chainName); } - getExponentByDenom(denom: CoinDenom): Exponent { - return getExponentByDenom(this._assets, denom, this.chainName); + getExponentByDenom(denom: Denom): Exponent | undefined { + return getExponentByDenom(this._assets, denom, this._chainName); } - convertCoinGeckoPricesToDenomPriceMap( - prices: Record - ): PriceHash { - return convertCoinGeckoPricesToDenomPriceMap(this._assets, prices); + getExponentBySymbol(symbol: string): Exponent | undefined { + return getExponentBySymbol(this._assets, symbol, this._chainName); } - noDecimals(num: number | string): string { - return noDecimals(num); + getTokenLogoByDenom(denom: Denom): string | undefined { + return getTokenLogoByDenom(this._assets, denom, this._chainName); } - convertBaseUnitsToDollarValue( - prices: PriceHash, + getTokenNameByDenom(denom: Denom): string | undefined { + return getTokenNameByDenom(this._assets, denom, this._chainName); + } + + getChainNameByDenom(denom: Denom): string | undefined { + return getChainNameByDenom(this._assets, denom); + } + + mapCoinGeckoPricesToDenoms( + prices: Record + ): DenomPriceMap { + return mapCoinGeckoPricesToDenoms(this._assets, prices); + } + + convertBaseUnitToDollarValue( + prices: DenomPriceMap, symbol: string, amount: string | number ): string { - return convertBaseUnitsToDollarValue( + return convertBaseUnitToDollarValue( this._assets, prices, symbol, amount, - this.chainName + this._chainName ); } - convertDollarValueToDenomUnits( - prices: PriceHash, + convertDollarValueToBaseUnit( + prices: DenomPriceMap, symbol: string, value: string | number ): string { - return convertDollarValueToDenomUnits( + return convertDollarValueToBaseUnit( this._assets, prices, symbol, value, - this.chainName + this._chainName + ); + } + + convertBaseUnitToDisplayUnit( + symbol: string, + amount: string | number + ): string { + return convertBaseUnitToDisplayUnit( + this._assets, + symbol, + amount, + this._chainName ); } - convertBaseUnitsToDisplayUnits( + convertDisplayUnitToBaseUnit( symbol: string, amount: string | number ): string { - return convertBaseUnitsToDisplayUnits( + return convertDisplayUnitToBaseUnit( this._assets, symbol, amount, - this.chainName + this._chainName ); } } diff --git a/packages/client/types/chain-util.d.ts b/packages/client/types/chain-util.d.ts index ac54efa93..6836c783d 100644 --- a/packages/client/types/chain-util.d.ts +++ b/packages/client/types/chain-util.d.ts @@ -1,24 +1,28 @@ import { Asset } from '@chain-registry/types'; -import type { CoinDenom, CoinGeckoUSD, Exponent, PriceHash } from '@chain-registry/utils'; +import type { Denom, Exponent, DenomPriceMap, CoinGeckoUSDPrice } from '@chain-registry/utils'; import { ChainInfo } from './chain-info'; export interface ChainRegistryChainUtilOptions { chainName: string; chainInfo: ChainInfo; } export declare class ChainRegistryChainUtil { - chainName: string; - chainInfo: ChainInfo; private _assets; + private _chainName; constructor(options: ChainRegistryChainUtilOptions); - getAssetByDenom(denom: CoinDenom): Asset; - getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom; - getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom; - getSymbolByChainDenom(denom: CoinDenom): string; - getChainDenomBySymbol(token: string): CoinDenom; - getExponentByDenom(denom: CoinDenom): Exponent; - convertCoinGeckoPricesToDenomPriceMap(prices: Record): PriceHash; - noDecimals(num: number | string): string; - convertBaseUnitsToDollarValue(prices: PriceHash, symbol: string, amount: string | number): string; - convertDollarValueToDenomUnits(prices: PriceHash, symbol: string, value: string | number): string; - convertBaseUnitsToDisplayUnits(symbol: string, amount: string | number): string; + getAssetByDenom(denom: Denom): Asset | undefined; + getAssetBySymbol(symbol: string): Asset | undefined; + getDenomByCoinGeckoId(coinGeckoId: string): Denom | undefined; + getCoinGeckoIdByDenom(coinGeckoId: string): Denom | undefined; + getSymbolByDenom(denom: Denom): string | undefined; + getDenomBySymbol(symbol: string): Denom | undefined; + getExponentByDenom(denom: Denom): Exponent | undefined; + getExponentBySymbol(symbol: string): Exponent | undefined; + getTokenLogoByDenom(denom: Denom): string | undefined; + getTokenNameByDenom(denom: Denom): string | undefined; + getChainNameByDenom(denom: Denom): string | undefined; + mapCoinGeckoPricesToDenoms(prices: Record): DenomPriceMap; + convertBaseUnitToDollarValue(prices: DenomPriceMap, symbol: string, amount: string | number): string; + convertDollarValueToBaseUnit(prices: DenomPriceMap, symbol: string, value: string | number): string; + convertBaseUnitToDisplayUnit(symbol: string, amount: string | number): string; + convertDisplayUnitToBaseUnit(symbol: string, amount: string | number): string; } From 1dc73301bb57ee5d122dff8b5ea4599e4b29f414 Mon Sep 17 00:00:00 2001 From: Zetazzz Date: Tue, 19 Mar 2024 10:39:30 +0800 Subject: [PATCH 52/54] npm publish main wf --- .github/workflows/npm-publish-main.yml | 57 ++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/npm-publish-main.yml diff --git a/.github/workflows/npm-publish-main.yml b/.github/workflows/npm-publish-main.yml new file mode 100644 index 000000000..39d541181 --- /dev/null +++ b/.github/workflows/npm-publish-main.yml @@ -0,0 +1,57 @@ +name: Publish + +on: + # schedule: + # Runs every day at 1:00 AM UTC + # - cron: "0 1 * * *" + + workflow_dispatch: + +jobs: + publish-npm: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: "true" + - uses: actions/setup-node@v3 + with: + node-version: 16.14.0 + registry-url: https://registry.npmjs.org/ + - name: Code Generation + run: | + git submodule update --remote + CHANGES_DESC="build-$(date +%Y%m%d-%H%M%S)" + yarn + yarn bootstrap + yarn build + git config user.name "${{ github.actor }}" + git config user.email "${{ github.actor}}@users.noreply.github.com" + cd packages/chain-registry + yarn codegen + yarn build + cd ../../ + cd packages/assets + yarn codegen + cd ../../ + cd packages/osmosis + yarn codegen + cd ../../ + cd packages/juno + yarn codegen + cd ../../ + git add . + if ! git diff --staged --quiet; then + git commit -am "build 🛠 $CHANGES_DESC" + git push origin main + lerna publish --no-verify-access --yes + echo "GIT_RESULT=Done." >> $GITHUB_ENV + else + echo "GIT_RESULT=No changes to commit." >> $GITHUB_ENV + fi + - name: Git Ops + run: | + echo $GIT_RESULT + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_SECRET}} + GH_TOKEN: ${{ secrets.GH_LERNA_PUBLISH_TOKEN }} From 671260861b20b1236d327ae6a01652531a0eb5d9 Mon Sep 17 00:00:00 2001 From: luca Date: Tue, 19 Mar 2024 13:58:06 +0800 Subject: [PATCH 53/54] fix: update utils to new client --- packages/client/__tests__/client.test.ts | 2 +- packages/client/__tests__/utils.test.ts | 86 ++++++++++--- packages/client/src/chain-utils.ts | 120 ------------------ packages/client/src/client.ts | 4 +- packages/client/src/index.ts | 2 +- packages/client/src/utils.ts | 153 +++++++++++++++++++++++ packages/client/types/chain-utils.d.ts | 23 ---- packages/client/types/client.d.ts | 4 +- packages/client/types/index.d.ts | 2 +- packages/client/types/utils.d.ts | 28 +++++ 10 files changed, 254 insertions(+), 170 deletions(-) delete mode 100644 packages/client/src/chain-utils.ts create mode 100644 packages/client/src/utils.ts delete mode 100644 packages/client/types/chain-utils.d.ts create mode 100644 packages/client/types/utils.d.ts diff --git a/packages/client/__tests__/client.test.ts b/packages/client/__tests__/client.test.ts index 1b047260c..6ecf7110d 100644 --- a/packages/client/__tests__/client.test.ts +++ b/packages/client/__tests__/client.test.ts @@ -39,6 +39,6 @@ describe('Test client', () => { it('Test chain utils', () => { const chainUtils = client.getChainUtils('osmosis'); const asset = chainUtils.getAssetByDenom('uosmo'); - expect(asset.name).toEqual('Osmosis'); + expect(asset?.name).toEqual('Osmosis'); }); }); diff --git a/packages/client/__tests__/utils.test.ts b/packages/client/__tests__/utils.test.ts index 13c15a97d..9488cc07f 100644 --- a/packages/client/__tests__/utils.test.ts +++ b/packages/client/__tests__/utils.test.ts @@ -1,9 +1,9 @@ -import { ChainRegistryClient, ChainUtils } from '../src'; +import { ChainRegistryClient, ChainRegistryUtils } from '../src'; const timeout = 30000; -describe('tests for asset-list-util', () => { - let utils: ChainUtils; +describe('tests for chain registry utils', () => { + let utils: ChainRegistryUtils; beforeAll(async () => { const client = new ChainRegistryClient({ chainNames: ['osmosis'] }); @@ -11,7 +11,7 @@ describe('tests for asset-list-util', () => { const { assetList, ibcAssetList } = client.getChainFullData('osmosis'); - utils = new ChainUtils({ + utils = new ChainRegistryUtils({ chainName: 'osmosis', assetList, ibcAssetList @@ -20,7 +20,12 @@ describe('tests for asset-list-util', () => { it('getAssetByDenom', () => { const asset = utils.getAssetByDenom('uosmo'); - expect(asset.base).toEqual('uosmo'); + expect(asset?.base).toEqual('uosmo'); + }); + + it('getAssetBySymbol', () => { + const asset = utils.getAssetBySymbol('ION'); + expect(asset?.base).toEqual('uion'); }); it('getDenomByCoinGeckoId', () => { @@ -30,17 +35,17 @@ describe('tests for asset-list-util', () => { expect(denom2).toEqual('uion'); }); - it('getSymbolByChainDenom', () => { - const denom1 = utils.getSymbolByChainDenom('uosmo'); + it('getSymbolByDenom', () => { + const denom1 = utils.getSymbolByDenom('uosmo'); expect(denom1).toEqual('OSMO'); - const denom2 = utils.getSymbolByChainDenom('uion'); + const denom2 = utils.getSymbolByDenom('uion'); expect(denom2).toEqual('ION'); }); - it('getChainDenomBySymbol', () => { - const denom1 = utils.getChainDenomBySymbol('OSMO'); + it('getDenomBySymbol', () => { + const denom1 = utils.getDenomBySymbol('OSMO'); expect(denom1).toEqual('uosmo'); - const denom2 = utils.getChainDenomBySymbol('ION'); + const denom2 = utils.getDenomBySymbol('ION'); expect(denom2).toEqual('uion'); }); @@ -49,13 +54,54 @@ describe('tests for asset-list-util', () => { expect(exponent).toEqual(6); }); - it('convertBaseUnitsToDollarValue', () => { - const value = utils.convertBaseUnitsToDollarValue({ uosmo: 1 }, 'OSMO', 5); + it('getExponentBySymbol', () => { + const exponent = utils.getExponentBySymbol('ION'); + expect(exponent).toEqual(6); + }); + + it('getCoinGeckoIdByDenom', () => { + const id = utils.getCoinGeckoIdByDenom('uosmo'); + expect(id).toEqual('osmosis'); + }); + + it('getTokenLogoByDenom', () => { + const logo = utils.getTokenLogoByDenom('uosmo'); + expect(logo).toEqual( + 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png' + ); + }); + + it('getTokenNameByDenom', () => { + const name = utils.getTokenNameByDenom('uosmo'); + expect(name).toEqual('Osmosis'); + }); + + it('getChainNameByDenom', () => { + const name = utils.getChainNameByDenom( + 'ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA' + ); + expect(name).toEqual('jackal'); + }); + + it('mapCoinGeckoPricesToDenoms', () => { + const prices = { + osmosis: { usd: 0.0001 }, + ion: { usd: 0.0002 } + }; + const priceMap = utils.mapCoinGeckoPricesToDenoms(prices); + expect(priceMap).toEqual({ + uosmo: 0.0001, + uion: 0.0002 + }); + }); + + it('convertBaseUnitToDollarValue', () => { + const value = utils.convertBaseUnitToDollarValue({ uosmo: 1 }, 'OSMO', 5); expect(value).toEqual('0.000005'); }); - it('convertDollarValueToDenomUnits', () => { - const value = utils.convertDollarValueToDenomUnits( + it('convertDollarValueToBaseUnit', () => { + const value = utils.convertDollarValueToBaseUnit( { uosmo: 1 }, 'OSMO', 0.00001 @@ -63,13 +109,13 @@ describe('tests for asset-list-util', () => { expect(value).toEqual('10'); }); - it('convertBaseUnitsToDisplayUnits', () => { - const value = utils.convertBaseUnitsToDisplayUnits('OSMO', 99); + it('convertBaseUnitToDisplayUnit', () => { + const value = utils.convertBaseUnitToDisplayUnit('OSMO', 99); expect(value).toEqual('0.000099'); }); - it('uosmo coingecko id', () => { - const id = utils.getCoinGeckoIdByDenom('uosmo'); - expect(id).toEqual('osmosis'); + it('convertDisplayUnitToBaseUnit', () => { + const value = utils.convertDisplayUnitToBaseUnit('OSMO', 0.000099); + expect(value).toEqual('99'); }); }); diff --git a/packages/client/src/chain-utils.ts b/packages/client/src/chain-utils.ts deleted file mode 100644 index 400698b54..000000000 --- a/packages/client/src/chain-utils.ts +++ /dev/null @@ -1,120 +0,0 @@ -import { Asset, AssetList } from '@chain-registry/types'; -import type { - CoinDenom, - CoinGeckoUSD, - Exponent, - PriceHash -} from '@chain-registry/utils'; -import { - convertBaseUnitsToDisplayUnits, - convertBaseUnitsToDollarValue, - convertCoinGeckoPricesToDenomPriceMap, - convertDollarValueToDenomUnits, - getAssetByDenom, - getChainDenomBySymbol, - getCoinGeckoIdByDenom, - getDenomByCoinGeckoId, - getExponentByDenom, - getSymbolByChainDenom, - noDecimals -} from '@chain-registry/utils'; - -export interface ChainUtilsOptions { - chainName: string; - assetList?: AssetList; - ibcAssetList?: AssetList; -} - -export class ChainUtils { - private _chainName: string; - private _assets: AssetList[] = []; - - constructor(options: ChainUtilsOptions) { - this._chainName = options.chainName; - this._assets = [ - { - assets: [ - ...(options.assetList?.assets || []), - ...(options.ibcAssetList?.assets || []) - ], - chain_name: options.chainName - } - ]; - } - - getAssetByDenom(denom: CoinDenom): Asset { - return getAssetByDenom(this._assets, denom, this._chainName); - } - - getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom { - return getDenomByCoinGeckoId(this._assets, coinGeckoId, this._chainName); - } - - getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom { - return getCoinGeckoIdByDenom(this._assets, coinGeckoId, { - chainName: this._chainName - }); - } - - getSymbolByChainDenom(denom: CoinDenom): string { - return getSymbolByChainDenom(this._assets, denom, this._chainName); - } - - getChainDenomBySymbol(token: string): CoinDenom { - return getChainDenomBySymbol(this._assets, token, this._chainName); - } - - getExponentByDenom(denom: CoinDenom): Exponent { - return getExponentByDenom(this._assets, denom, this._chainName); - } - - convertCoinGeckoPricesToDenomPriceMap( - prices: Record - ): PriceHash { - return convertCoinGeckoPricesToDenomPriceMap(this._assets, prices); - } - - noDecimals(num: number | string): string { - return noDecimals(num); - } - - convertBaseUnitsToDollarValue( - prices: PriceHash, - symbol: string, - amount: string | number - ): string { - return convertBaseUnitsToDollarValue( - this._assets, - prices, - symbol, - amount, - this._chainName - ); - } - - convertDollarValueToDenomUnits( - prices: PriceHash, - symbol: string, - value: string | number - ): string { - return convertDollarValueToDenomUnits( - this._assets, - prices, - symbol, - value, - this._chainName - ); - } - - convertBaseUnitsToDisplayUnits( - symbol: string, - amount: string | number - ): string { - return convertBaseUnitsToDisplayUnits( - this._assets, - symbol, - amount, - this._chainName - ); - } -} diff --git a/packages/client/src/client.ts b/packages/client/src/client.ts index bdea8877f..adbf6f551 100644 --- a/packages/client/src/client.ts +++ b/packages/client/src/client.ts @@ -3,7 +3,7 @@ import { basename } from 'bfs-path'; import { getAssetLists } from '@chain-registry/utils'; import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; -import { ChainUtils } from './chain-utils'; +import { ChainRegistryUtils } from './utils'; const DEFAULT_BASE_URL = 'https://raw.githubusercontent.com/cosmos/chain-registry/master'; @@ -80,7 +80,7 @@ export class ChainRegistryClient { } public getChainUtils(chainName: string) { - return new ChainUtils({ + return new ChainRegistryUtils({ chainName, assetList: this.getChainAssetList(chainName), ibcAssetList: this.getChainIbcAssetList(chainName) diff --git a/packages/client/src/index.ts b/packages/client/src/index.ts index e7205b93f..058d299ee 100644 --- a/packages/client/src/index.ts +++ b/packages/client/src/index.ts @@ -1,2 +1,2 @@ +export * from './utils'; export * from './client'; -export * from './chain-utils'; diff --git a/packages/client/src/utils.ts b/packages/client/src/utils.ts new file mode 100644 index 000000000..b9012fd38 --- /dev/null +++ b/packages/client/src/utils.ts @@ -0,0 +1,153 @@ +import { Asset, AssetList } from '@chain-registry/types'; +import type { + Denom, + Exponent, + DenomPriceMap, + CoinGeckoUSDPrice +} from '@chain-registry/utils'; +import { + getAssetByDenom, + getAssetBySymbol, + getDenomByCoinGeckoId, + getCoinGeckoIdByDenom, + getSymbolByDenom, + getDenomBySymbol, + getExponentByDenom, + getExponentBySymbol, + getTokenLogoByDenom, + getTokenNameByDenom, + getChainNameByDenom, + mapCoinGeckoPricesToDenoms, + convertBaseUnitToDollarValue, + convertDollarValueToBaseUnit, + convertBaseUnitToDisplayUnit, + convertDisplayUnitToBaseUnit +} from '@chain-registry/utils'; + +export interface ChainRegistryUtilsOptions { + chainName: string; + assetList?: AssetList; + ibcAssetList?: AssetList; +} + +export class ChainRegistryUtils { + private _chainName: string; + private _assets: AssetList[] = []; + + constructor(options: ChainRegistryUtilsOptions) { + this._chainName = options.chainName; + this._assets = [ + { + assets: [ + ...(options.assetList?.assets || []), + ...(options.ibcAssetList?.assets || []) + ], + chain_name: options.chainName + } + ]; + } + + getAssetByDenom(denom: Denom): Asset | undefined { + return getAssetByDenom(this._assets, denom, this._chainName); + } + + getAssetBySymbol(symbol: string): Asset | undefined { + return getAssetBySymbol(this._assets, symbol, this._chainName); + } + + getDenomByCoinGeckoId(coinGeckoId: string): Denom | undefined { + return getDenomByCoinGeckoId(this._assets, coinGeckoId, this._chainName); + } + + getCoinGeckoIdByDenom(coinGeckoId: string): Denom | undefined { + return getCoinGeckoIdByDenom(this._assets, coinGeckoId, { + chainName: this._chainName + }); + } + + getSymbolByDenom(denom: Denom): string | undefined { + return getSymbolByDenom(this._assets, denom, this._chainName); + } + + getDenomBySymbol(symbol: string): Denom | undefined { + return getDenomBySymbol(this._assets, symbol, this._chainName); + } + + getExponentByDenom(denom: Denom): Exponent | undefined { + return getExponentByDenom(this._assets, denom, this._chainName); + } + + getExponentBySymbol(symbol: string): Exponent | undefined { + return getExponentBySymbol(this._assets, symbol, this._chainName); + } + + getTokenLogoByDenom(denom: Denom): string | undefined { + return getTokenLogoByDenom(this._assets, denom, this._chainName); + } + + getTokenNameByDenom(denom: Denom): string | undefined { + return getTokenNameByDenom(this._assets, denom, this._chainName); + } + + getChainNameByDenom(denom: Denom): string | undefined { + return getChainNameByDenom(this._assets, denom); + } + + mapCoinGeckoPricesToDenoms( + prices: Record + ): DenomPriceMap { + return mapCoinGeckoPricesToDenoms(this._assets, prices); + } + + convertBaseUnitToDollarValue( + prices: DenomPriceMap, + symbol: string, + amount: string | number + ): string { + return convertBaseUnitToDollarValue( + this._assets, + prices, + symbol, + amount, + this._chainName + ); + } + + convertDollarValueToBaseUnit( + prices: DenomPriceMap, + symbol: string, + value: string | number + ): string { + return convertDollarValueToBaseUnit( + this._assets, + prices, + symbol, + value, + this._chainName + ); + } + + convertBaseUnitToDisplayUnit( + symbol: string, + amount: string | number + ): string { + return convertBaseUnitToDisplayUnit( + this._assets, + symbol, + amount, + this._chainName + ); + } + + convertDisplayUnitToBaseUnit( + symbol: string, + amount: string | number + ): string { + return convertDisplayUnitToBaseUnit( + this._assets, + symbol, + amount, + this._chainName + ); + } +} diff --git a/packages/client/types/chain-utils.d.ts b/packages/client/types/chain-utils.d.ts deleted file mode 100644 index 5c713fe8b..000000000 --- a/packages/client/types/chain-utils.d.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { Asset, AssetList } from '@chain-registry/types'; -import type { CoinDenom, CoinGeckoUSD, Exponent, PriceHash } from '@chain-registry/utils'; -export interface ChainUtilsOptions { - chainName: string; - assetList?: AssetList; - ibcAssetList?: AssetList; -} -export declare class ChainUtils { - private _chainName; - private _assets; - constructor(options: ChainUtilsOptions); - getAssetByDenom(denom: CoinDenom): Asset; - getDenomByCoinGeckoId(coinGeckoId: string): CoinDenom; - getCoinGeckoIdByDenom(coinGeckoId: string): CoinDenom; - getSymbolByChainDenom(denom: CoinDenom): string; - getChainDenomBySymbol(token: string): CoinDenom; - getExponentByDenom(denom: CoinDenom): Exponent; - convertCoinGeckoPricesToDenomPriceMap(prices: Record): PriceHash; - noDecimals(num: number | string): string; - convertBaseUnitsToDollarValue(prices: PriceHash, symbol: string, amount: string | number): string; - convertDollarValueToDenomUnits(prices: PriceHash, symbol: string, value: string | number): string; - convertBaseUnitsToDisplayUnits(symbol: string, amount: string | number): string; -} diff --git a/packages/client/types/client.d.ts b/packages/client/types/client.d.ts index cf441a21b..b3a99f836 100644 --- a/packages/client/types/client.d.ts +++ b/packages/client/types/client.d.ts @@ -1,5 +1,5 @@ import { AssetList, Chain, IBCInfo } from '@chain-registry/types'; -import { ChainUtils } from './chain-utils'; +import { ChainRegistryUtils } from './utils'; export interface FetchOptions { urls?: string[]; chainNames?: string[]; @@ -30,7 +30,7 @@ export declare class ChainRegistryClient { ibcInfo: IBCInfo[]; ibcAssetList: AssetList; }; - getChainUtils(chainName: string): ChainUtils; + getChainUtils(chainName: string): ChainRegistryUtils; fetch(options?: FetchOptions): Promise; private formatChainUrl; private formatAssetListUrl; diff --git a/packages/client/types/index.d.ts b/packages/client/types/index.d.ts index e7205b93f..058d299ee 100644 --- a/packages/client/types/index.d.ts +++ b/packages/client/types/index.d.ts @@ -1,2 +1,2 @@ +export * from './utils'; export * from './client'; -export * from './chain-utils'; diff --git a/packages/client/types/utils.d.ts b/packages/client/types/utils.d.ts new file mode 100644 index 000000000..c51391def --- /dev/null +++ b/packages/client/types/utils.d.ts @@ -0,0 +1,28 @@ +import { Asset, AssetList } from '@chain-registry/types'; +import type { Denom, Exponent, DenomPriceMap, CoinGeckoUSDPrice } from '@chain-registry/utils'; +export interface ChainRegistryUtilsOptions { + chainName: string; + assetList?: AssetList; + ibcAssetList?: AssetList; +} +export declare class ChainRegistryUtils { + private _chainName; + private _assets; + constructor(options: ChainRegistryUtilsOptions); + getAssetByDenom(denom: Denom): Asset | undefined; + getAssetBySymbol(symbol: string): Asset | undefined; + getDenomByCoinGeckoId(coinGeckoId: string): Denom | undefined; + getCoinGeckoIdByDenom(coinGeckoId: string): Denom | undefined; + getSymbolByDenom(denom: Denom): string | undefined; + getDenomBySymbol(symbol: string): Denom | undefined; + getExponentByDenom(denom: Denom): Exponent | undefined; + getExponentBySymbol(symbol: string): Exponent | undefined; + getTokenLogoByDenom(denom: Denom): string | undefined; + getTokenNameByDenom(denom: Denom): string | undefined; + getChainNameByDenom(denom: Denom): string | undefined; + mapCoinGeckoPricesToDenoms(prices: Record): DenomPriceMap; + convertBaseUnitToDollarValue(prices: DenomPriceMap, symbol: string, amount: string | number): string; + convertDollarValueToBaseUnit(prices: DenomPriceMap, symbol: string, value: string | number): string; + convertBaseUnitToDisplayUnit(symbol: string, amount: string | number): string; + convertDisplayUnitToBaseUnit(symbol: string, amount: string | number): string; +} From e57916824aad1598342fe9175e9e87b1ba0babcb Mon Sep 17 00:00:00 2001 From: luca Date: Tue, 19 Mar 2024 14:24:02 +0800 Subject: [PATCH 54/54] chore(release): publish - @chain-registry/assets@1.33.0 - chain-registry@1.32.0 - @chain-registry/client@1.20.0 - @chain-registry/cosmostation@1.35.0 - @chain-registry/juno@1.33.0 - @chain-registry/keplr@1.37.0 - @chain-registry/osmosis@1.33.0 - @chain-registry/utils@1.19.0 --- packages/assets/CHANGELOG.md | 314 +------------------ packages/assets/package.json | 6 +- packages/chain-registry/CHANGELOG.md | 430 +-------------------------- packages/chain-registry/package.json | 4 +- packages/client/CHANGELOG.md | 135 +-------- packages/client/package.json | 4 +- packages/cosmostation/CHANGELOG.md | 184 +----------- packages/cosmostation/package.json | 6 +- packages/juno/CHANGELOG.md | 318 +------------------- packages/juno/package.json | 6 +- packages/keplr/CHANGELOG.md | 345 +-------------------- packages/keplr/package.json | 4 +- packages/osmosis/CHANGELOG.md | 318 +------------------- packages/osmosis/package.json | 6 +- packages/utils/CHANGELOG.md | 239 +-------------- packages/utils/package.json | 2 +- 16 files changed, 66 insertions(+), 2255 deletions(-) diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 63fe38298..3a01b6d31 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -3,630 +3,322 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.31.0...@chain-registry/assets@1.32.0) (2024-03-18) +# [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.32.0...@chain-registry/assets@1.33.0) (2024-03-19) **Note:** Version bump only for package @chain-registry/assets +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.31.0...@chain-registry/assets@1.32.0) (2024-03-18) - - +**Note:** Version bump only for package @chain-registry/assets # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.1...@chain-registry/assets@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.30.0...@chain-registry/assets@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.8...@chain-registry/assets@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.7...@chain-registry/assets@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.6...@chain-registry/assets@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.5...@chain-registry/assets@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.4...@chain-registry/assets@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.3...@chain-registry/assets@1.29.4) (2024-02-27) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.2...@chain-registry/assets@1.29.3) (2024-02-26) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.1...@chain-registry/assets@1.29.2) (2024-02-26) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.29.0...@chain-registry/assets@1.29.1) (2024-02-11) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.28.0...@chain-registry/assets@1.29.0) (2024-01-31) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.27.0...@chain-registry/assets@1.28.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.26.4...@chain-registry/assets@1.27.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.26.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.26.3...@chain-registry/assets@1.26.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.26.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.26.2...@chain-registry/assets@1.26.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.26.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.26.1...@chain-registry/assets@1.26.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.26.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.26.0...@chain-registry/assets@1.26.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.25.1...@chain-registry/assets@1.26.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.25.0...@chain-registry/assets@1.25.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.24.0...@chain-registry/assets@1.25.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.23.0...@chain-registry/assets@1.24.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.22.0...@chain-registry/assets@1.23.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.21.0...@chain-registry/assets@1.22.0) (2023-12-12) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.20.0...@chain-registry/assets@1.21.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.19.1...@chain-registry/assets@1.20.0) (2023-08-16) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.19.0...@chain-registry/assets@1.19.1) (2023-07-30) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.18.1...@chain-registry/assets@1.19.0) (2023-07-16) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.18.0...@chain-registry/assets@1.18.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.17.0...@chain-registry/assets@1.18.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.16.0...@chain-registry/assets@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.15.0...@chain-registry/assets@1.16.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.14.0...@chain-registry/assets@1.15.0) (2023-05-24) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.13.1...@chain-registry/assets@1.14.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.13.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.13.0...@chain-registry/assets@1.13.1) (2023-04-20) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.12.1...@chain-registry/assets@1.13.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.12.0...@chain-registry/assets@1.12.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.11.0...@chain-registry/assets@1.12.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.10.0...@chain-registry/assets@1.11.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.9.0...@chain-registry/assets@1.10.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.8.0...@chain-registry/assets@1.9.0) (2023-02-24) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.7.0...@chain-registry/assets@1.8.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.6.1...@chain-registry/assets@1.7.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.6.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.6.0...@chain-registry/assets@1.6.1) (2023-01-17) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.5.0...@chain-registry/assets@1.6.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.4.0...@chain-registry/assets@1.5.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.3.1...@chain-registry/assets@1.4.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.3.0...@chain-registry/assets@1.3.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.2.0...@chain-registry/assets@1.3.0) (2022-10-26) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.1.0...@chain-registry/assets@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.0.1...@chain-registry/assets@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/assets - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@1.0.0...@chain-registry/assets@1.0.1) (2022-10-20) **Note:** Version bump only for package @chain-registry/assets - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.13.0...@chain-registry/assets@1.0.0) (2022-09-29) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.12.2...@chain-registry/assets@0.13.0) (2022-09-20) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.12.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.12.1...@chain-registry/assets@0.12.2) (2022-09-19) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.12.0...@chain-registry/assets@0.12.1) (2022-09-19) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.11.0...@chain-registry/assets@0.12.0) (2022-09-19) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.10.0...@chain-registry/assets@0.11.0) (2022-09-16) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.9.3...@chain-registry/assets@0.10.0) (2022-09-14) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.9.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.9.2...@chain-registry/assets@0.9.3) (2022-09-08) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.9.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.9.1...@chain-registry/assets@0.9.2) (2022-09-08) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.9.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.9.0...@chain-registry/assets@0.9.1) (2022-09-07) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.8.3...@chain-registry/assets@0.9.0) (2022-09-06) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.8.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.8.2...@chain-registry/assets@0.8.3) (2022-08-31) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.8.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.8.1...@chain-registry/assets@0.8.2) (2022-08-31) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.8.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.8.0...@chain-registry/assets@0.8.1) (2022-08-31) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.7.1...@chain-registry/assets@0.8.0) (2022-08-31) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.7.0...@chain-registry/assets@0.7.1) (2022-08-23) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.6.0...@chain-registry/assets@0.7.0) (2022-08-23) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.5.3...@chain-registry/assets@0.6.0) (2022-08-20) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.5.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.5.2...@chain-registry/assets@0.5.3) (2022-08-16) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.5.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.5.1...@chain-registry/assets@0.5.2) (2022-08-14) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.5.0...@chain-registry/assets@0.5.1) (2022-08-14) **Note:** Version bump only for package @chain-registry/assets - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.3...@chain-registry/assets@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.4.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.2...@chain-registry/assets@0.4.3) (2022-08-14) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.4.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.1...@chain-registry/assets@0.4.2) (2022-08-13) **Note:** Version bump only for package @chain-registry/assets - - - - ## [0.4.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.0...@chain-registry/assets@0.4.1) (2022-08-13) **Note:** Version bump only for package @chain-registry/assets - - - - # 0.4.0 (2022-08-13) **Note:** Version bump only for package @chain-registry/assets diff --git a/packages/assets/package.json b/packages/assets/package.json index c8f2add6b..6d1583686 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/assets", - "version": "1.32.0", + "version": "1.33.0", "description": "Chain Registry Asset Lists", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -50,13 +50,13 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "@types/jest": "^29.5.1", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.31.0", + "chain-registry": "^1.32.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/chain-registry/CHANGELOG.md b/packages/chain-registry/CHANGELOG.md index 9fa5a7adc..ab1bf30cb 100644 --- a/packages/chain-registry/CHANGELOG.md +++ b/packages/chain-registry/CHANGELOG.md @@ -3,862 +3,438 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.30.0...chain-registry@1.31.0) (2024-03-18) +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.31.0...chain-registry@1.32.0) (2024-03-19) **Note:** Version bump only for package chain-registry +# [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.30.0...chain-registry@1.31.0) (2024-03-18) - - +**Note:** Version bump only for package chain-registry # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.1...chain-registry@1.30.0) (2024-03-14) **Note:** Version bump only for package chain-registry - - - - ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.29.0...chain-registry@1.29.1) (2024-03-10) **Note:** Version bump only for package chain-registry - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.7...chain-registry@1.29.0) (2024-03-08) **Note:** Version bump only for package chain-registry - - - - ## [1.28.7](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.6...chain-registry@1.28.7) (2024-03-06) **Note:** Version bump only for package chain-registry - - - - ## [1.28.6](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.5...chain-registry@1.28.6) (2024-02-28) **Note:** Version bump only for package chain-registry - - - - ## [1.28.5](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.4...chain-registry@1.28.5) (2024-02-27) **Note:** Version bump only for package chain-registry - - - - ## [1.28.4](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.3...chain-registry@1.28.4) (2024-02-27) **Note:** Version bump only for package chain-registry - - - - ## [1.28.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.2...chain-registry@1.28.3) (2024-02-26) **Note:** Version bump only for package chain-registry - - - - ## [1.28.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.1...chain-registry@1.28.2) (2024-02-26) **Note:** Version bump only for package chain-registry - - - - ## [1.28.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.28.0...chain-registry@1.28.1) (2024-02-11) **Note:** Version bump only for package chain-registry - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.27.0...chain-registry@1.28.0) (2024-01-31) **Note:** Version bump only for package chain-registry - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.26.0...chain-registry@1.27.0) (2024-01-25) **Note:** Version bump only for package chain-registry - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.25.4...chain-registry@1.26.0) (2024-01-25) **Note:** Version bump only for package chain-registry - - - - ## [1.25.4](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.25.3...chain-registry@1.25.4) (2024-01-19) **Note:** Version bump only for package chain-registry - - - - ## [1.25.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.25.2...chain-registry@1.25.3) (2024-01-19) **Note:** Version bump only for package chain-registry - - - - ## [1.25.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.25.1...chain-registry@1.25.2) (2024-01-19) **Note:** Version bump only for package chain-registry - - - - ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.25.0...chain-registry@1.25.1) (2024-01-17) **Note:** Version bump only for package chain-registry - - - - # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.24.1...chain-registry@1.25.0) (2023-12-20) **Note:** Version bump only for package chain-registry - - - - ## [1.24.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.24.0...chain-registry@1.24.1) (2023-12-15) **Note:** Version bump only for package chain-registry - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.23.0...chain-registry@1.24.0) (2023-12-15) **Note:** Version bump only for package chain-registry - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.22.0...chain-registry@1.23.0) (2023-12-15) **Note:** Version bump only for package chain-registry - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.21.0...chain-registry@1.22.0) (2023-12-15) **Note:** Version bump only for package chain-registry - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.20.0...chain-registry@1.21.0) (2023-12-12) **Note:** Version bump only for package chain-registry - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.19.0...chain-registry@1.20.0) (2023-09-15) **Note:** Version bump only for package chain-registry - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.18.1...chain-registry@1.19.0) (2023-08-16) **Note:** Version bump only for package chain-registry - - - - ## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.18.0...chain-registry@1.18.1) (2023-07-30) **Note:** Version bump only for package chain-registry - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.17.1...chain-registry@1.18.0) (2023-07-16) **Note:** Version bump only for package chain-registry - - - - ## [1.17.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.17.0...chain-registry@1.17.1) (2023-07-12) **Note:** Version bump only for package chain-registry - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.16.0...chain-registry@1.17.0) (2023-07-11) **Note:** Version bump only for package chain-registry - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.15.0...chain-registry@1.16.0) (2023-07-08) **Note:** Version bump only for package chain-registry - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.14.0...chain-registry@1.15.0) (2023-06-27) **Note:** Version bump only for package chain-registry - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.13.0...chain-registry@1.14.0) (2023-05-24) **Note:** Version bump only for package chain-registry - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.12.1...chain-registry@1.13.0) (2023-04-20) **Note:** Version bump only for package chain-registry - - - - ## [1.12.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.12.0...chain-registry@1.12.1) (2023-04-20) **Note:** Version bump only for package chain-registry - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.11.1...chain-registry@1.12.0) (2023-04-18) **Note:** Version bump only for package chain-registry - - - - ## [1.11.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.11.0...chain-registry@1.11.1) (2023-04-18) **Note:** Version bump only for package chain-registry - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.10.0...chain-registry@1.11.0) (2023-04-18) **Note:** Version bump only for package chain-registry - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.9.0...chain-registry@1.10.0) (2023-03-29) **Note:** Version bump only for package chain-registry - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.8.0...chain-registry@1.9.0) (2023-03-02) **Note:** Version bump only for package chain-registry - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.7.0...chain-registry@1.8.0) (2023-02-23) **Note:** Version bump only for package chain-registry - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.6.1...chain-registry@1.7.0) (2023-02-08) **Note:** Version bump only for package chain-registry - - - - ## [1.6.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.6.0...chain-registry@1.6.1) (2023-01-17) **Note:** Version bump only for package chain-registry - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.5.0...chain-registry@1.6.0) (2022-12-08) **Note:** Version bump only for package chain-registry - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.4.0...chain-registry@1.5.0) (2022-11-10) **Note:** Version bump only for package chain-registry - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.3.1...chain-registry@1.4.0) (2022-11-10) **Note:** Version bump only for package chain-registry - - - - ## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.3.0...chain-registry@1.3.1) (2022-10-27) **Note:** Version bump only for package chain-registry - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.2.0...chain-registry@1.3.0) (2022-10-26) **Note:** Version bump only for package chain-registry - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.1.0...chain-registry@1.2.0) (2022-10-20) **Note:** Version bump only for package chain-registry - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.0.1...chain-registry@1.1.0) (2022-10-20) **Note:** Version bump only for package chain-registry - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@1.0.0...chain-registry@1.0.1) (2022-10-20) **Note:** Version bump only for package chain-registry - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.14.0...chain-registry@1.0.0) (2022-09-29) **Note:** Version bump only for package chain-registry - - - - # [0.14.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.13.2...chain-registry@0.14.0) (2022-09-20) **Note:** Version bump only for package chain-registry - - - - ## [0.13.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.13.1...chain-registry@0.13.2) (2022-09-19) **Note:** Version bump only for package chain-registry - - - - ## [0.13.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.13.0...chain-registry@0.13.1) (2022-09-19) **Note:** Version bump only for package chain-registry - - - - # [0.13.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.12.0...chain-registry@0.13.0) (2022-09-19) **Note:** Version bump only for package chain-registry - - - - # [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.11.0...chain-registry@0.12.0) (2022-09-16) **Note:** Version bump only for package chain-registry - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.10.3...chain-registry@0.11.0) (2022-09-14) **Note:** Version bump only for package chain-registry - - - - ## [0.10.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.10.2...chain-registry@0.10.3) (2022-09-08) **Note:** Version bump only for package chain-registry - - - - ## [0.10.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.10.1...chain-registry@0.10.2) (2022-09-08) **Note:** Version bump only for package chain-registry - - - - ## [0.10.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.10.0...chain-registry@0.10.1) (2022-09-07) **Note:** Version bump only for package chain-registry - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.9.3...chain-registry@0.10.0) (2022-09-06) **Note:** Version bump only for package chain-registry - - - - ## [0.9.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.9.2...chain-registry@0.9.3) (2022-08-31) **Note:** Version bump only for package chain-registry - - - - ## [0.9.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.9.1...chain-registry@0.9.2) (2022-08-31) **Note:** Version bump only for package chain-registry - - - - ## [0.9.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.9.0...chain-registry@0.9.1) (2022-08-31) **Note:** Version bump only for package chain-registry - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.8.1...chain-registry@0.9.0) (2022-08-31) **Note:** Version bump only for package chain-registry - - - - ## [0.8.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.8.0...chain-registry@0.8.1) (2022-08-23) **Note:** Version bump only for package chain-registry - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.7.0...chain-registry@0.8.0) (2022-08-23) **Note:** Version bump only for package chain-registry - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.3...chain-registry@0.7.0) (2022-08-20) **Note:** Version bump only for package chain-registry - - - - ## [0.6.3](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.2...chain-registry@0.6.3) (2022-08-16) **Note:** Version bump only for package chain-registry - - - - ## [0.6.2](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.1...chain-registry@0.6.2) (2022-08-14) **Note:** Version bump only for package chain-registry - - - - ## [0.6.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.6.0...chain-registry@0.6.1) (2022-08-14) **Note:** Version bump only for package chain-registry - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.5.1...chain-registry@0.6.0) (2022-08-14) **Note:** Version bump only for package chain-registry - - - - ## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.5.0...chain-registry@0.5.1) (2022-08-14) **Note:** Version bump only for package chain-registry - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.4.1...chain-registry@0.5.0) (2022-08-13) **Note:** Version bump only for package chain-registry - - - - ## [0.4.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.4.0...chain-registry@0.4.1) (2022-08-13) **Note:** Version bump only for package chain-registry - - - - # [0.4.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.3.1...chain-registry@0.4.0) (2022-08-13) **Note:** Version bump only for package chain-registry - - - - ## [0.3.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.3.0...chain-registry@0.3.1) (2022-08-13) **Note:** Version bump only for package chain-registry - - - - # [0.3.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.2.1...chain-registry@0.3.0) (2022-08-13) **Note:** Version bump only for package chain-registry - - - - ## [0.2.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.2.0...chain-registry@0.2.1) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - # [0.2.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.1.0...chain-registry@0.2.0) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - # [0.1.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.41...chain-registry@0.1.0) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.41](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.40...chain-registry@0.0.41) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.40](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.39...chain-registry@0.0.40) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.39](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.38...chain-registry@0.0.39) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.38](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.37...chain-registry@0.0.38) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.37](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.36...chain-registry@0.0.37) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.36](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.35...chain-registry@0.0.36) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.35](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.34...chain-registry@0.0.35) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.34](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.33...chain-registry@0.0.34) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.33](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.32...chain-registry@0.0.33) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.32](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.31...chain-registry@0.0.32) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.31](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.30...chain-registry@0.0.31) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.30](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.29...chain-registry@0.0.30) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.29](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.28...chain-registry@0.0.29) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.28](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.27...chain-registry@0.0.28) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## [0.0.27](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.26...chain-registry@0.0.27) (2022-08-12) **Note:** Version bump only for package chain-registry - - - - ## 0.0.26 (2022-07-25) **Note:** Version bump only for package chain-registry - - - - ## [0.0.25](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.24...chain-registry@0.0.25) (2022-07-14) **Note:** Version bump only for package chain-registry - - - - ## [0.0.24](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.23...chain-registry@0.0.24) (2022-07-14) **Note:** Version bump only for package chain-registry - - - - ## 0.0.23 (2022-07-12) **Note:** Version bump only for package chain-registry - - - - ## 0.0.22 (2022-07-12) **Note:** Version bump only for package chain-registry - - - - ## 0.0.21 (2022-07-10) **Note:** Version bump only for package chain-registry - - - - ## 0.0.20 (2022-07-10) **Note:** Version bump only for package chain-registry - - - - ## 0.0.19 (2022-07-10) **Note:** Version bump only for package chain-registry - - - - ## 0.0.18 (2022-07-10) **Note:** Version bump only for package chain-registry - - - - ## [0.0.17](https://github.com/cosmology-tech/cosmology/compare/chain-registry@0.0.16...chain-registry@0.0.17) (2022-07-10) **Note:** Version bump only for package chain-registry - - - - ## 0.0.16 (2022-07-10) **Note:** Version bump only for package chain-registry diff --git a/packages/chain-registry/package.json b/packages/chain-registry/package.json index 37d66d60c..4200cf653 100644 --- a/packages/chain-registry/package.json +++ b/packages/chain-registry/package.json @@ -1,6 +1,6 @@ { "name": "chain-registry", - "version": "1.31.0", + "version": "1.32.0", "description": "Cosmos chain registry ⚛️", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme", @@ -48,7 +48,7 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "cross-env": "^7.0.2", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 274b0b3ca..9747b870d 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -3,254 +3,145 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.19.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.1...@chain-registry/client@1.19.2) (2024-02-27) - -**Note:** Version bump only for package @chain-registry/client +# [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.2...@chain-registry/client@1.20.0) (2024-03-19) +### Bug Fixes +- clear nock after tests ([cecb348](https://github.com/cosmology-tech/chain-registry/commit/cecb3489733e8d46d6ac604c6296694f48634fdf)) +- increase fetch timeout ([4b81273](https://github.com/cosmology-tech/chain-registry/commit/4b8127380cc23e550b6ae7bc4b2961f9d7c9db8f)) +- tests ([6d38a34](https://github.com/cosmology-tech/chain-registry/commit/6d38a342add4d101ca8f770c42c0f5de36eedc99)) +- update utils to new client ([6712608](https://github.com/cosmology-tech/chain-registry/commit/671260861b20b1236d327ae6a01652531a0eb5d9)) +### Features +- update ChainRegistryClient class ([a377f83](https://github.com/cosmology-tech/chain-registry/commit/a377f836eb5e57b0a58d1fb93d359f1befff8d93)) +- update client tests ([0c829f5](https://github.com/cosmology-tech/chain-registry/commit/0c829f52322d30345508245cfab202bce6eeaaa9)) +- update types ([78070ca](https://github.com/cosmology-tech/chain-registry/commit/78070ca382706ca59caf00dafc7a9c7856c8f447)) -## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.0...@chain-registry/client@1.19.1) (2024-02-26) +## [1.19.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.1...@chain-registry/client@1.19.2) (2024-02-27) **Note:** Version bump only for package @chain-registry/client +## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.0...@chain-registry/client@1.19.1) (2024-02-26) - - +**Note:** Version bump only for package @chain-registry/client # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.4...@chain-registry/client@1.19.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.18.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.3...@chain-registry/client@1.18.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.18.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.2...@chain-registry/client@1.18.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.18.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.1...@chain-registry/client@1.18.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.0...@chain-registry/client@1.18.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/client - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.17.1...@chain-registry/client@1.18.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.17.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.17.0...@chain-registry/client@1.17.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/client - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.16.0...@chain-registry/client@1.17.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/client - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.15.0...@chain-registry/client@1.16.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/client - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.2...@chain-registry/client@1.15.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.14.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.1...@chain-registry/client@1.14.2) (2023-07-30) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.14.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.0...@chain-registry/client@1.14.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/client - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.13.0...@chain-registry/client@1.14.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/client - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.12.0...@chain-registry/client@1.13.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/client - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.11.0...@chain-registry/client@1.12.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/client - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.10.1...@chain-registry/client@1.11.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.10.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.10.0...@chain-registry/client@1.10.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/client - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.9.0...@chain-registry/client@1.10.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/client - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.8.0...@chain-registry/client@1.9.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/client - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.7.0...@chain-registry/client@1.8.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/client - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.6.0...@chain-registry/client@1.7.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/client - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.5.0...@chain-registry/client@1.6.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/client - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.4.1...@chain-registry/client@1.5.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.4.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.4.0...@chain-registry/client@1.4.1) (2022-11-16) **Note:** Version bump only for package @chain-registry/client - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.3.0...@chain-registry/client@1.4.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/client - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.2.1...@chain-registry/client@1.3.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/client - - - - ## [1.2.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.2.0...@chain-registry/client@1.2.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/client - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.1.0...@chain-registry/client@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/client - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.0.1...@chain-registry/client@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/client - - - - ## 1.0.1 (2022-10-20) **Note:** Version bump only for package @chain-registry/client diff --git a/packages/client/package.json b/packages/client/package.json index 954c81dc1..19be87828 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/client", - "version": "1.19.2", + "version": "1.20.0", "description": "Chain Registry Client", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -76,7 +76,7 @@ "dependencies": { "@babel/runtime": "^7.21.0", "@chain-registry/types": "^0.18.1", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "bfs-path": "^1.0.2", "cross-fetch": "^3.1.5" }, diff --git a/packages/cosmostation/CHANGELOG.md b/packages/cosmostation/CHANGELOG.md index e43e5bb54..32fa2ea7b 100644 --- a/packages/cosmostation/CHANGELOG.md +++ b/packages/cosmostation/CHANGELOG.md @@ -3,366 +3,192 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.33.0...@chain-registry/cosmostation@1.34.0) (2024-03-18) - -**Note:** Version bump only for package @chain-registry/cosmostation +# [1.35.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.34.0...@chain-registry/cosmostation@1.35.0) (2024-03-19) +### Bug Fixes +- update utils in cosmostation ([facf128](https://github.com/cosmology-tech/chain-registry/commit/facf128001020e1221f1f1f3e8b31999c2a2408c)) +# [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.33.0...@chain-registry/cosmostation@1.34.0) (2024-03-18) +**Note:** Version bump only for package @chain-registry/cosmostation # [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.1...@chain-registry/cosmostation@1.33.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.32.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.32.0...@chain-registry/cosmostation@1.32.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.7...@chain-registry/cosmostation@1.32.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.6...@chain-registry/cosmostation@1.31.7) (2024-03-06) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.5...@chain-registry/cosmostation@1.31.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.4...@chain-registry/cosmostation@1.31.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.3...@chain-registry/cosmostation@1.31.4) (2024-02-27) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.2...@chain-registry/cosmostation@1.31.3) (2024-02-26) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.1...@chain-registry/cosmostation@1.31.2) (2024-02-26) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.31.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.31.0...@chain-registry/cosmostation@1.31.1) (2024-02-11) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.30.0...@chain-registry/cosmostation@1.31.0) (2024-01-31) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.29.0...@chain-registry/cosmostation@1.30.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.28.4...@chain-registry/cosmostation@1.29.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.28.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.28.3...@chain-registry/cosmostation@1.28.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.28.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.28.2...@chain-registry/cosmostation@1.28.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.28.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.28.1...@chain-registry/cosmostation@1.28.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.28.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.28.0...@chain-registry/cosmostation@1.28.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.27.1...@chain-registry/cosmostation@1.28.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.27.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.27.0...@chain-registry/cosmostation@1.27.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.26.0...@chain-registry/cosmostation@1.27.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.25.0...@chain-registry/cosmostation@1.26.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.24.0...@chain-registry/cosmostation@1.25.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.23.0...@chain-registry/cosmostation@1.24.0) (2023-12-12) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.22.0...@chain-registry/cosmostation@1.23.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.21.1...@chain-registry/cosmostation@1.22.0) (2023-08-16) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.21.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.21.0...@chain-registry/cosmostation@1.21.1) (2023-07-30) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.20.1...@chain-registry/cosmostation@1.21.0) (2023-07-16) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.20.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.20.0...@chain-registry/cosmostation@1.20.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.19.0...@chain-registry/cosmostation@1.20.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.18.0...@chain-registry/cosmostation@1.19.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.17.0...@chain-registry/cosmostation@1.18.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.16.0...@chain-registry/cosmostation@1.17.0) (2023-05-24) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.15.1...@chain-registry/cosmostation@1.16.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.15.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.15.0...@chain-registry/cosmostation@1.15.1) (2023-04-20) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.14.1...@chain-registry/cosmostation@1.15.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.14.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.14.0...@chain-registry/cosmostation@1.14.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.13.0...@chain-registry/cosmostation@1.14.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.12.0...@chain-registry/cosmostation@1.13.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.11.0...@chain-registry/cosmostation@1.12.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.10.0...@chain-registry/cosmostation@1.11.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.9.1...@chain-registry/cosmostation@1.10.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/cosmostation - - - - ## [1.9.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.9.0...@chain-registry/cosmostation@1.9.1) (2023-01-17) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.8.0...@chain-registry/cosmostation@1.9.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/cosmostation@1.7.0...@chain-registry/cosmostation@1.8.0) (2022-11-15) **Note:** Version bump only for package @chain-registry/cosmostation - - - - # 1.7.0 (2022-11-10) **Note:** Version bump only for package @chain-registry/cosmostation diff --git a/packages/cosmostation/package.json b/packages/cosmostation/package.json index 7109bdf8a..fbf301532 100644 --- a/packages/cosmostation/package.json +++ b/packages/cosmostation/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/cosmostation", - "version": "1.34.0", + "version": "1.35.0", "description": "Chain Registry to Cosmostation", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.31.0", + "chain-registry": "^1.32.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", @@ -73,7 +73,7 @@ "dependencies": { "@babel/runtime": "^7.21.0", "@chain-registry/types": "^0.18.1", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "@cosmostation/extension-client": "0.1.15" }, "gitHead": "6ccbde77598b9c69ca443853bd995c2422dba9b7" diff --git a/packages/juno/CHANGELOG.md b/packages/juno/CHANGELOG.md index c1e2f2000..41d5da69c 100644 --- a/packages/juno/CHANGELOG.md +++ b/packages/juno/CHANGELOG.md @@ -3,638 +3,326 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.31.0...@chain-registry/juno@1.32.0) (2024-03-18) +# [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.32.0...@chain-registry/juno@1.33.0) (2024-03-19) **Note:** Version bump only for package @chain-registry/juno +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.31.0...@chain-registry/juno@1.32.0) (2024-03-18) - - +**Note:** Version bump only for package @chain-registry/juno # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.1...@chain-registry/juno@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.30.0...@chain-registry/juno@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.8...@chain-registry/juno@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.7...@chain-registry/juno@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.6...@chain-registry/juno@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.5...@chain-registry/juno@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.4...@chain-registry/juno@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.3...@chain-registry/juno@1.29.4) (2024-02-27) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.2...@chain-registry/juno@1.29.3) (2024-02-26) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.1...@chain-registry/juno@1.29.2) (2024-02-26) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.29.0...@chain-registry/juno@1.29.1) (2024-02-11) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.28.0...@chain-registry/juno@1.29.0) (2024-01-31) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.27.0...@chain-registry/juno@1.28.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.26.4...@chain-registry/juno@1.27.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.26.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.26.3...@chain-registry/juno@1.26.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.26.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.26.2...@chain-registry/juno@1.26.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.26.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.26.1...@chain-registry/juno@1.26.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.26.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.26.0...@chain-registry/juno@1.26.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.25.1...@chain-registry/juno@1.26.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.25.0...@chain-registry/juno@1.25.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.24.0...@chain-registry/juno@1.25.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.23.0...@chain-registry/juno@1.24.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.22.0...@chain-registry/juno@1.23.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.21.0...@chain-registry/juno@1.22.0) (2023-12-12) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.20.0...@chain-registry/juno@1.21.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.19.1...@chain-registry/juno@1.20.0) (2023-08-16) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.19.0...@chain-registry/juno@1.19.1) (2023-07-30) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.18.1...@chain-registry/juno@1.19.0) (2023-07-16) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.18.0...@chain-registry/juno@1.18.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.17.0...@chain-registry/juno@1.18.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.16.0...@chain-registry/juno@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.15.0...@chain-registry/juno@1.16.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.14.0...@chain-registry/juno@1.15.0) (2023-05-24) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.13.1...@chain-registry/juno@1.14.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.13.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.13.0...@chain-registry/juno@1.13.1) (2023-04-20) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.12.1...@chain-registry/juno@1.13.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.12.0...@chain-registry/juno@1.12.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.11.0...@chain-registry/juno@1.12.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.10.0...@chain-registry/juno@1.11.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.9.0...@chain-registry/juno@1.10.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.8.0...@chain-registry/juno@1.9.0) (2023-02-24) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.7.0...@chain-registry/juno@1.8.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.6.1...@chain-registry/juno@1.7.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.6.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.6.0...@chain-registry/juno@1.6.1) (2023-01-17) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.5.0...@chain-registry/juno@1.6.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.4.0...@chain-registry/juno@1.5.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.3.1...@chain-registry/juno@1.4.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.3.0...@chain-registry/juno@1.3.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.2.0...@chain-registry/juno@1.3.0) (2022-10-26) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.1.0...@chain-registry/juno@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.0.1...@chain-registry/juno@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/juno - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.0.0...@chain-registry/juno@1.0.1) (2022-10-20) **Note:** Version bump only for package @chain-registry/juno - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.13.0...@chain-registry/juno@1.0.0) (2022-09-29) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.12.2...@chain-registry/juno@0.13.0) (2022-09-20) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.12.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.12.1...@chain-registry/juno@0.12.2) (2022-09-19) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.12.0...@chain-registry/juno@0.12.1) (2022-09-19) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.11.0...@chain-registry/juno@0.12.0) (2022-09-19) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.10.0...@chain-registry/juno@0.11.0) (2022-09-16) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.9.3...@chain-registry/juno@0.10.0) (2022-09-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.9.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.9.2...@chain-registry/juno@0.9.3) (2022-09-08) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.9.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.9.1...@chain-registry/juno@0.9.2) (2022-09-08) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.9.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.9.0...@chain-registry/juno@0.9.1) (2022-09-07) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.8.3...@chain-registry/juno@0.9.0) (2022-09-06) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.8.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.8.2...@chain-registry/juno@0.8.3) (2022-08-31) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.8.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.8.1...@chain-registry/juno@0.8.2) (2022-08-31) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.8.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.8.0...@chain-registry/juno@0.8.1) (2022-08-31) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.7.2...@chain-registry/juno@0.8.0) (2022-08-31) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.7.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.7.1...@chain-registry/juno@0.7.2) (2022-08-23) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.7.0...@chain-registry/juno@0.7.1) (2022-08-23) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.6.0...@chain-registry/juno@0.7.0) (2022-08-23) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.5.3...@chain-registry/juno@0.6.0) (2022-08-20) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.5.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.5.2...@chain-registry/juno@0.5.3) (2022-08-16) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.5.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.5.1...@chain-registry/juno@0.5.2) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.5.0...@chain-registry/juno@0.5.1) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.4.6...@chain-registry/juno@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.4.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.4.5...@chain-registry/juno@0.4.6) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.4.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.4.4...@chain-registry/juno@0.4.5) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## [0.4.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.4.3...@chain-registry/juno@0.4.4) (2022-08-14) **Note:** Version bump only for package @chain-registry/juno - - - - ## 0.4.3 (2022-08-14) **Note:** Version bump only for package @chain-registry/juno diff --git a/packages/juno/package.json b/packages/juno/package.json index 71744dbf9..356565b45 100644 --- a/packages/juno/package.json +++ b/packages/juno/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/juno", - "version": "1.32.0", + "version": "1.33.0", "description": "Chain Registry info for Juno", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -50,14 +50,14 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "@types/jest": "^29.5.1", "@typescript-eslint/eslint-plugin": "5.59.0", "@typescript-eslint/parser": "5.59.0", "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.31.0", + "chain-registry": "^1.32.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/keplr/CHANGELOG.md b/packages/keplr/CHANGELOG.md index a7ee71d73..2eadf1162 100644 --- a/packages/keplr/CHANGELOG.md +++ b/packages/keplr/CHANGELOG.md @@ -3,689 +3,352 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.36.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.35.0...@chain-registry/keplr@1.36.0) (2024-03-18) +# [1.37.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.36.0...@chain-registry/keplr@1.37.0) (2024-03-19) **Note:** Version bump only for package @chain-registry/keplr +# [1.36.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.35.0...@chain-registry/keplr@1.36.0) (2024-03-18) - - +**Note:** Version bump only for package @chain-registry/keplr # [1.35.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.1...@chain-registry/keplr@1.35.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.34.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.34.0...@chain-registry/keplr@1.34.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.34.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.7...@chain-registry/keplr@1.34.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.6...@chain-registry/keplr@1.33.7) (2024-03-06) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.5...@chain-registry/keplr@1.33.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.4...@chain-registry/keplr@1.33.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.3...@chain-registry/keplr@1.33.4) (2024-02-27) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.2...@chain-registry/keplr@1.33.3) (2024-02-26) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.1...@chain-registry/keplr@1.33.2) (2024-02-26) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.33.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.33.0...@chain-registry/keplr@1.33.1) (2024-02-11) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.32.0...@chain-registry/keplr@1.33.0) (2024-01-31) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.31.0...@chain-registry/keplr@1.32.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.30.4...@chain-registry/keplr@1.31.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.30.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.30.3...@chain-registry/keplr@1.30.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.30.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.30.2...@chain-registry/keplr@1.30.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.30.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.30.1...@chain-registry/keplr@1.30.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.30.0...@chain-registry/keplr@1.30.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.29.1...@chain-registry/keplr@1.30.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.29.0...@chain-registry/keplr@1.29.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.28.0...@chain-registry/keplr@1.29.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.27.0...@chain-registry/keplr@1.28.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.26.0...@chain-registry/keplr@1.27.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.25.1...@chain-registry/keplr@1.26.0) (2023-12-12) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.25.0...@chain-registry/keplr@1.25.1) (2023-09-27) - ### Bug Fixes -* keplr cleanVer containing repo ([356eabc](https://github.com/cosmology-tech/chain-registry/commit/356eabc3d4bf832e9336a40c457f4f0be0915b6e)) - - - - +- keplr cleanVer containing repo ([356eabc](https://github.com/cosmology-tech/chain-registry/commit/356eabc3d4bf832e9336a40c457f4f0be0915b6e)) # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.24.0...@chain-registry/keplr@1.25.0) (2023-09-27) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.23.0...@chain-registry/keplr@1.24.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.22.1...@chain-registry/keplr@1.23.0) (2023-08-16) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.22.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.22.0...@chain-registry/keplr@1.22.1) (2023-07-30) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.21.1...@chain-registry/keplr@1.22.0) (2023-07-16) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.21.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.21.0...@chain-registry/keplr@1.21.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.20.0...@chain-registry/keplr@1.21.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.19.0...@chain-registry/keplr@1.20.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.18.0...@chain-registry/keplr@1.19.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.17.0...@chain-registry/keplr@1.18.0) (2023-05-24) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.16.1...@chain-registry/keplr@1.17.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.16.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.16.0...@chain-registry/keplr@1.16.1) (2023-04-20) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.15.1...@chain-registry/keplr@1.16.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.15.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.15.0...@chain-registry/keplr@1.15.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.14.0...@chain-registry/keplr@1.15.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.13.0...@chain-registry/keplr@1.14.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.12.0...@chain-registry/keplr@1.13.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.11.0...@chain-registry/keplr@1.12.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.10.1...@chain-registry/keplr@1.11.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.10.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.10.0...@chain-registry/keplr@1.10.1) (2023-01-17) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.9.0...@chain-registry/keplr@1.10.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.8.0...@chain-registry/keplr@1.9.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.7.0...@chain-registry/keplr@1.8.0) (2022-11-16) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.6.0...@chain-registry/keplr@1.7.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.5.0...@chain-registry/keplr@1.6.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.4.0...@chain-registry/keplr@1.5.0) (2022-11-05) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.3.1...@chain-registry/keplr@1.4.0) (2022-11-03) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.3.0...@chain-registry/keplr@1.3.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.2.0...@chain-registry/keplr@1.3.0) (2022-10-26) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.1.0...@chain-registry/keplr@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.0.1...@chain-registry/keplr@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@1.0.0...@chain-registry/keplr@1.0.1) (2022-10-20) **Note:** Version bump only for package @chain-registry/keplr - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.12.0...@chain-registry/keplr@1.0.0) (2022-09-29) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.11.2...@chain-registry/keplr@0.12.0) (2022-09-20) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.11.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.11.1...@chain-registry/keplr@0.11.2) (2022-09-19) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.11.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.11.0...@chain-registry/keplr@0.11.1) (2022-09-19) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.10.0...@chain-registry/keplr@0.11.0) (2022-09-19) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.9.0...@chain-registry/keplr@0.10.0) (2022-09-16) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.8.3...@chain-registry/keplr@0.9.0) (2022-09-14) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.8.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.8.2...@chain-registry/keplr@0.8.3) (2022-09-08) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.8.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.8.1...@chain-registry/keplr@0.8.2) (2022-09-08) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.8.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.8.0...@chain-registry/keplr@0.8.1) (2022-09-07) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.7.3...@chain-registry/keplr@0.8.0) (2022-09-06) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.7.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.7.2...@chain-registry/keplr@0.7.3) (2022-08-31) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.7.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.7.1...@chain-registry/keplr@0.7.2) (2022-08-31) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.7.0...@chain-registry/keplr@0.7.1) (2022-08-31) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.6.1...@chain-registry/keplr@0.7.0) (2022-08-31) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.6.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.6.0...@chain-registry/keplr@0.6.1) (2022-08-23) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.5.0...@chain-registry/keplr@0.6.0) (2022-08-23) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.7...@chain-registry/keplr@0.5.0) (2022-08-20) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.6...@chain-registry/keplr@0.4.7) (2022-08-18) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.5...@chain-registry/keplr@0.4.6) (2022-08-18) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.4...@chain-registry/keplr@0.4.5) (2022-08-18) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.3...@chain-registry/keplr@0.4.4) (2022-08-17) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.2...@chain-registry/keplr@0.4.3) (2022-08-17) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.1...@chain-registry/keplr@0.4.2) (2022-08-17) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.4.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.4.0...@chain-registry/keplr@0.4.1) (2022-08-17) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.3.1...@chain-registry/keplr@0.4.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/keplr - - - - ## [0.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.3.0...@chain-registry/keplr@0.3.1) (2022-08-13) **Note:** Version bump only for package @chain-registry/keplr - - - - # [0.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/keplr@0.2.1...@chain-registry/keplr@0.3.0) (2022-08-13) **Note:** Version bump only for package @chain-registry/keplr - - - - ## 0.2.1 (2022-08-13) **Note:** Version bump only for package @chain-registry/keplr diff --git a/packages/keplr/package.json b/packages/keplr/package.json index a1b0ff7fe..c4ba784e7 100644 --- a/packages/keplr/package.json +++ b/packages/keplr/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/keplr", - "version": "1.36.0", + "version": "1.37.0", "description": "Chain Registry to Keplr", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -57,7 +57,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.31.0", + "chain-registry": "^1.32.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/osmosis/CHANGELOG.md b/packages/osmosis/CHANGELOG.md index 7d92aa568..815e44ff0 100644 --- a/packages/osmosis/CHANGELOG.md +++ b/packages/osmosis/CHANGELOG.md @@ -3,638 +3,326 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.31.0...@chain-registry/osmosis@1.32.0) (2024-03-18) +# [1.33.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.32.0...@chain-registry/osmosis@1.33.0) (2024-03-19) **Note:** Version bump only for package @chain-registry/osmosis +# [1.32.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.31.0...@chain-registry/osmosis@1.32.0) (2024-03-18) - - +**Note:** Version bump only for package @chain-registry/osmosis # [1.31.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.1...@chain-registry/osmosis@1.31.0) (2024-03-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.30.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.30.0...@chain-registry/osmosis@1.30.1) (2024-03-10) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.30.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.8...@chain-registry/osmosis@1.30.0) (2024-03-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.8](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.7...@chain-registry/osmosis@1.29.8) (2024-03-06) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.7](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.6...@chain-registry/osmosis@1.29.7) (2024-02-28) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.5...@chain-registry/osmosis@1.29.6) (2024-02-28) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.4...@chain-registry/osmosis@1.29.5) (2024-02-27) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.3...@chain-registry/osmosis@1.29.4) (2024-02-27) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.2...@chain-registry/osmosis@1.29.3) (2024-02-26) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.1...@chain-registry/osmosis@1.29.2) (2024-02-26) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.29.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.29.0...@chain-registry/osmosis@1.29.1) (2024-02-11) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.29.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.28.0...@chain-registry/osmosis@1.29.0) (2024-01-31) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.28.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.27.0...@chain-registry/osmosis@1.28.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.27.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.26.4...@chain-registry/osmosis@1.27.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.26.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.26.3...@chain-registry/osmosis@1.26.4) (2024-01-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.26.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.26.2...@chain-registry/osmosis@1.26.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.26.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.26.1...@chain-registry/osmosis@1.26.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.26.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.26.0...@chain-registry/osmosis@1.26.1) (2024-01-17) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.26.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.25.1...@chain-registry/osmosis@1.26.0) (2023-12-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.25.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.25.0...@chain-registry/osmosis@1.25.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.25.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.24.0...@chain-registry/osmosis@1.25.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.24.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.23.0...@chain-registry/osmosis@1.24.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.23.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.22.0...@chain-registry/osmosis@1.23.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.22.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.21.0...@chain-registry/osmosis@1.22.0) (2023-12-12) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.21.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.20.0...@chain-registry/osmosis@1.21.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.20.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.19.1...@chain-registry/osmosis@1.20.0) (2023-08-16) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.19.0...@chain-registry/osmosis@1.19.1) (2023-07-30) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.18.1...@chain-registry/osmosis@1.19.0) (2023-07-16) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.18.0...@chain-registry/osmosis@1.18.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.17.0...@chain-registry/osmosis@1.18.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.16.0...@chain-registry/osmosis@1.17.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.15.0...@chain-registry/osmosis@1.16.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.14.0...@chain-registry/osmosis@1.15.0) (2023-05-24) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.13.1...@chain-registry/osmosis@1.14.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.13.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.13.0...@chain-registry/osmosis@1.13.1) (2023-04-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.12.1...@chain-registry/osmosis@1.13.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.12.0...@chain-registry/osmosis@1.12.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.11.0...@chain-registry/osmosis@1.12.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.10.0...@chain-registry/osmosis@1.11.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.9.0...@chain-registry/osmosis@1.10.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.8.0...@chain-registry/osmosis@1.9.0) (2023-02-24) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.7.0...@chain-registry/osmosis@1.8.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.6.1...@chain-registry/osmosis@1.7.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.6.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.6.0...@chain-registry/osmosis@1.6.1) (2023-01-17) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.5.0...@chain-registry/osmosis@1.6.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.4.0...@chain-registry/osmosis@1.5.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.3.1...@chain-registry/osmosis@1.4.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.3.0...@chain-registry/osmosis@1.3.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.2.0...@chain-registry/osmosis@1.3.0) (2022-10-26) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.1.0...@chain-registry/osmosis@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.0.1...@chain-registry/osmosis@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@1.0.0...@chain-registry/osmosis@1.0.1) (2022-10-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.13.0...@chain-registry/osmosis@1.0.0) (2022-09-29) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.12.2...@chain-registry/osmosis@0.13.0) (2022-09-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.12.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.12.1...@chain-registry/osmosis@0.12.2) (2022-09-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.12.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.12.0...@chain-registry/osmosis@0.12.1) (2022-09-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.11.0...@chain-registry/osmosis@0.12.0) (2022-09-19) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.10.0...@chain-registry/osmosis@0.11.0) (2022-09-16) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.9.3...@chain-registry/osmosis@0.10.0) (2022-09-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.9.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.9.2...@chain-registry/osmosis@0.9.3) (2022-09-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.9.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.9.1...@chain-registry/osmosis@0.9.2) (2022-09-08) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.9.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.9.0...@chain-registry/osmosis@0.9.1) (2022-09-07) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.8.3...@chain-registry/osmosis@0.9.0) (2022-09-06) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.8.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.8.2...@chain-registry/osmosis@0.8.3) (2022-08-31) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.8.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.8.1...@chain-registry/osmosis@0.8.2) (2022-08-31) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.8.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.8.0...@chain-registry/osmosis@0.8.1) (2022-08-31) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.7.2...@chain-registry/osmosis@0.8.0) (2022-08-31) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.7.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.7.1...@chain-registry/osmosis@0.7.2) (2022-08-23) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.7.0...@chain-registry/osmosis@0.7.1) (2022-08-23) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.6.0...@chain-registry/osmosis@0.7.0) (2022-08-23) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.5.3...@chain-registry/osmosis@0.6.0) (2022-08-20) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.5.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.5.2...@chain-registry/osmosis@0.5.3) (2022-08-16) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.5.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.5.1...@chain-registry/osmosis@0.5.2) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.5.0...@chain-registry/osmosis@0.5.1) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.6...@chain-registry/osmosis@0.5.0) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.4.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.5...@chain-registry/osmosis@0.4.6) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.4.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.4...@chain-registry/osmosis@0.4.5) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## [0.4.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.3...@chain-registry/osmosis@0.4.4) (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis - - - - ## 0.4.3 (2022-08-14) **Note:** Version bump only for package @chain-registry/osmosis diff --git a/packages/osmosis/package.json b/packages/osmosis/package.json index 7dddf2606..dc9b3d1a8 100644 --- a/packages/osmosis/package.json +++ b/packages/osmosis/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/osmosis", - "version": "1.32.0", + "version": "1.33.0", "description": "Chain Registry info for Osmosis", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry", @@ -50,14 +50,14 @@ "@babel/plugin-transform-runtime": "7.21.4", "@babel/preset-env": "7.21.4", "@babel/preset-typescript": "^7.21.4", - "@chain-registry/utils": "^1.18.2", + "@chain-registry/utils": "^1.19.0", "@types/jest": "^29.5.1", "@typescript-eslint/eslint-plugin": "5.59.0", "@typescript-eslint/parser": "5.59.0", "babel-core": "7.0.0-bridge.0", "babel-jest": "29.5.0", "babel-watch": "^7.7.2", - "chain-registry": "^1.31.0", + "chain-registry": "^1.32.0", "cross-env": "^7.0.2", "eslint": "8.38.0", "eslint-config-prettier": "^8.8.0", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 79c7eb7cb..a8109b348 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,460 +3,247 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. -## [1.18.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.18.1...@chain-registry/utils@1.18.2) (2024-02-27) - -**Note:** Version bump only for package @chain-registry/utils +# [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.18.2...@chain-registry/utils@1.19.0) (2024-03-19) +### Bug Fixes +- add explicit return types ([095175a](https://github.com/cosmology-tech/chain-registry/commit/095175aaa08cbde99052b0bd87e2173c871632f0)) +- rename files ([62aa8d0](https://github.com/cosmology-tech/chain-registry/commit/62aa8d06a99425ba059e3a2b6e1d96ea7a9a2e23)) +- update types ([0537055](https://github.com/cosmology-tech/chain-registry/commit/05370552b73b1e84da952544a34239c7bdefc766)) +### Features +- add new utils ([b922c9d](https://github.com/cosmology-tech/chain-registry/commit/b922c9d5141655b92bdae8d22e1eabb92edfd8ec)) +- add tests for new utils ([c4895a4](https://github.com/cosmology-tech/chain-registry/commit/c4895a469bed3cbe12305de2a99a1004f66efc25)) -## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.18.0...@chain-registry/utils@1.18.1) (2024-02-26) +## [1.18.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.18.1...@chain-registry/utils@1.18.2) (2024-02-27) **Note:** Version bump only for package @chain-registry/utils +## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.18.0...@chain-registry/utils@1.18.1) (2024-02-26) - - +**Note:** Version bump only for package @chain-registry/utils # [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.17.3...@chain-registry/utils@1.18.0) (2024-01-25) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.17.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.17.2...@chain-registry/utils@1.17.3) (2024-01-19) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.17.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.17.1...@chain-registry/utils@1.17.2) (2024-01-19) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.17.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.17.0...@chain-registry/utils@1.17.1) (2024-01-19) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.16.1...@chain-registry/utils@1.17.0) (2023-12-20) - ### Features -* add chainName as optional param ([d415f33](https://github.com/cosmology-tech/chain-registry/commit/d415f33dc96651e5bb4ede689220d89ad11fe9d9)) - - - - +- add chainName as optional param ([d415f33](https://github.com/cosmology-tech/chain-registry/commit/d415f33dc96651e5bb4ede689220d89ad11fe9d9)) ## [1.16.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.16.0...@chain-registry/utils@1.16.1) (2023-12-15) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.15.0...@chain-registry/utils@1.16.0) (2023-12-15) - ### Features -* add getCoinGeckoIdByDenom method ([b05e67b](https://github.com/cosmology-tech/chain-registry/commit/b05e67b4b54258412d359745b1cd095987c67eb6)) - - - - +- add getCoinGeckoIdByDenom method ([b05e67b](https://github.com/cosmology-tech/chain-registry/commit/b05e67b4b54258412d359745b1cd095987c67eb6)) # [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.14.0...@chain-registry/utils@1.15.0) (2023-12-15) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.13.2...@chain-registry/utils@1.14.0) (2023-09-15) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.13.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.13.1...@chain-registry/utils@1.13.2) (2023-07-30) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.13.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.13.0...@chain-registry/utils@1.13.1) (2023-07-12) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.12.0...@chain-registry/utils@1.13.0) (2023-07-11) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.11.0...@chain-registry/utils@1.12.0) (2023-07-08) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.10.0...@chain-registry/utils@1.11.0) (2023-06-27) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.9.1...@chain-registry/utils@1.10.0) (2023-04-20) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.9.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.9.0...@chain-registry/utils@1.9.1) (2023-04-18) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.8.0...@chain-registry/utils@1.9.0) (2023-04-18) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.7.0...@chain-registry/utils@1.8.0) (2023-03-29) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.6.0...@chain-registry/utils@1.7.0) (2023-03-02) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.5.0...@chain-registry/utils@1.6.0) (2023-02-23) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.4.0...@chain-registry/utils@1.5.0) (2023-02-08) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.3.0...@chain-registry/utils@1.4.0) (2022-12-08) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.2.1...@chain-registry/utils@1.3.0) (2022-11-10) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.2.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.2.0...@chain-registry/utils@1.2.1) (2022-10-27) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.1.0...@chain-registry/utils@1.2.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.0.1...@chain-registry/utils@1.1.0) (2022-10-20) **Note:** Version bump only for package @chain-registry/utils - - - - ## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@1.0.0...@chain-registry/utils@1.0.1) (2022-10-20) **Note:** Version bump only for package @chain-registry/utils - - - - # [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.11.0...@chain-registry/utils@1.0.0) (2022-09-29) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.10.2...@chain-registry/utils@0.11.0) (2022-09-20) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.10.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.10.1...@chain-registry/utils@0.10.2) (2022-09-19) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.10.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.10.0...@chain-registry/utils@0.10.1) (2022-09-19) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.9.0...@chain-registry/utils@0.10.0) (2022-09-19) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.8.0...@chain-registry/utils@0.9.0) (2022-09-16) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.7.3...@chain-registry/utils@0.8.0) (2022-09-14) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.7.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.7.2...@chain-registry/utils@0.7.3) (2022-09-08) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.7.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.7.1...@chain-registry/utils@0.7.2) (2022-09-08) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.7.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.7.0...@chain-registry/utils@0.7.1) (2022-09-07) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.6.3...@chain-registry/utils@0.7.0) (2022-09-06) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.6.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.6.2...@chain-registry/utils@0.6.3) (2022-08-31) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.6.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.6.1...@chain-registry/utils@0.6.2) (2022-08-31) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.6.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.6.0...@chain-registry/utils@0.6.1) (2022-08-31) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.5.1...@chain-registry/utils@0.6.0) (2022-08-31) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.5.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.5.0...@chain-registry/utils@0.5.1) (2022-08-23) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.4.0...@chain-registry/utils@0.5.0) (2022-08-23) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.3.1...@chain-registry/utils@0.4.0) (2022-08-20) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.3.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.3.0...@chain-registry/utils@0.3.1) (2022-08-13) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.2.1...@chain-registry/utils@0.3.0) (2022-08-13) **Note:** Version bump only for package @chain-registry/utils - - - - ## [0.2.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/utils@0.2.0...@chain-registry/utils@0.2.1) (2022-08-13) **Note:** Version bump only for package @chain-registry/utils - - - - # 0.2.0 (2022-08-13) **Note:** Version bump only for package @chain-registry/utils - - - - # [0.1.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry-utils@0.0.6...chain-registry-utils@0.1.0) (2022-08-12) **Note:** Version bump only for package chain-registry-utils - - - - ## 0.0.6 (2022-07-25) **Note:** Version bump only for package chain-registry-utils - - - - ## [0.0.5](https://github.com/cosmology-tech/chain-registry/compare/chain-registry-utils@0.0.4...chain-registry-utils@0.0.5) (2022-07-14) **Note:** Version bump only for package chain-registry-utils - - - - ## [0.0.4](https://github.com/cosmology-tech/chain-registry/compare/chain-registry-utils@0.0.3...chain-registry-utils@0.0.4) (2022-07-14) **Note:** Version bump only for package chain-registry-utils - - - - ## 0.0.3 (2022-07-12) **Note:** Version bump only for package chain-registry-utils - - - - ## 0.0.2 (2022-07-12) **Note:** Version bump only for package chain-registry-utils diff --git a/packages/utils/package.json b/packages/utils/package.json index 8d6d6257a..382c72fa2 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@chain-registry/utils", - "version": "1.18.2", + "version": "1.19.0", "description": "Chain Registry Utils", "author": "Dan Lynch ", "homepage": "https://github.com/cosmology-tech/chain-registry",